R12 Credit Management: Case folder: user-defined data points
I need an Additional data Point (ADP), this ADP will show the Last Credit Application Date.
When I create the function, how can I use the customer for me new application and to be able to relate it with my function
--
--Code Example
--
cursor C_lstdate is
select CREATION_DATE_TIME
from AR_CMGT_CASE_FOLDERS
where CUST_ACCOUNT_ID = ".....";
--(in "....." I don't know how to make reference to the customer_id of the application in process, Use Oracle internal variables to use in the PL/SQL block? about the application in process.)
--
I know in forms we need : to refer a variable in specific block, :dateblk.day, but in this case in my function I don't know how to make reference to internal variable for the party_id.