DBA Data[Home] [Help]

APPS.IBY_PSON_CUSTOMIZER_PKG dependencies on IBY_FNDCPT_TX_EXTENSIONS

Line 10: p_trxn_extn_id IN iby_fndcpt_tx_extensions.trxn_extension_id%TYPE,

6: --
7: PROCEDURE Get_Custom_Tangible_Id
8: (
9: p_app_short_name IN fnd_application.application_short_name%TYPE,
10: p_trxn_extn_id IN iby_fndcpt_tx_extensions.trxn_extension_id%TYPE,
11: x_cust_pson OUT NOCOPY VARCHAR2,
12: x_msg OUT NOCOPY VARCHAR2
13: )
14: IS

Line 26: -- queried from the table IBY_FNDCPT_TX_EXTENSIONS using TRXN_EXTENSION_ID

22: --
23: -- Implent custom code here to retun customized PSON
24: -- and set x_msg as CUST_PSON_YES
25: -- ORDER_ID,TRXN_REF_NUMBER1 and TRXN_REF_NUMBER2 can be
26: -- queried from the table IBY_FNDCPT_TX_EXTENSIONS using TRXN_EXTENSION_ID
27: /*
28: Example# 1
29: x_cust_pson:= p_app_short_name || p_trxn_extn_id;
30: x_msg := G_CUST_PSON_YES;