Form personalization - calling the procedure
846262Oct 27 2011 — edited Oct 27 2011we are calling the procedure in the form personalization and used the below :
='declare
begin
IF '''||${item.ORDER.ORDER_NUMBER.value}||''' is not null then
msiont_sls('''||${item.ORDER.ORDER_NUMBER.value}||''',
'''||${item.ORDER.ORDER_TYPE.value}||''',
'''||${item.ORDER.SALESREP_ID.value}||''',
'''||${item.ORDER.SALESREP_MIR.value}||''',
'''||${item.$PROFILES$.ORG_ID.value}||''');
end if;
end'
getting the syntax error,could you please tell me how to pass the profile values in a procedure for form personalization.