Hello,
I would need to pass OUT attribute from procedure as input for Insert to view.
Situation:
First method in Method list - C_COPY_SOURCE_ORDER_UTIL_API.Execute_Copy_Source_Order - there is one OUT attribute - in procedure statement it is like:
...
C_COPY_SOURCE_ORDER_UTIL_API.EXECUTE_COPY_SOURCE_ORDER(
ifs_order_id_,
new_ifs_order_id_);
--
Client_SYS.Add_To_Attr('NEW_IFS_ORDER_ID_',new_ifs_order_id_,attr_);
…
I need to pass NEW_IFS_ORDER_ID_ attribute (ID of record created by procedure) as input attribute for “New” (Insert) to view in second row of Method list (this is not related view with procedure in first step - I need only store that ID there).
I tried to find some help in documentation, but I was not successful.
Could anyone help?
Thanks.