DBA Data[Home] [Help]

APPS.IBY_INSTRREG_PUB dependencies on IBY_CREDITCARD_PKG

Line 65: -- in calls to the iby_creditcard_pkg which will take

61:
62: lx_result_code VARCHAR(30);
63:
64: -- only query wanted instrument id's; then use these
65: -- in calls to the iby_creditcard_pkg which will take
66: -- care of decryption, etc.
67: --
68: CURSOR load_creditcard_csr( l_instr_id NUMBER ) IS
69: SELECT instrid

Line 109: iby_creditcard_pkg.Query_Card

105:
106: -- fetch all the credit card instruments for the payer
107: FOR t_creditcard IN load_creditcard_csr(instr_id) LOOP
108:
109: iby_creditcard_pkg.Query_Card
110: (
111: t_creditcard.instrid,
112: NULL,
113: creditcard_tbl(l_count).Owner_Id,

Line 150: iby_creditcard_pkg.Query_Card

146:
147: -- fetch all the purchase card instruments for the payer
148: FOR t_purchasecard IN load_purchasecard_csr(instr_id) LOOP
149:
150: iby_creditcard_pkg.Query_Card
151: (
152: t_purchasecard.instrid,
153: NULL,
154: purchasecard_tbl(l_count).Owner_Id,

Line 851: IBY_CREDITCARD_PKG.Update_Card

847: );
848:
849: */
850: ELSIF( l_instrument_type = C_INSTRTYPE_PURCHASECARD ) THEN
851: IBY_CREDITCARD_PKG.Update_Card
852: (FND_API.G_FALSE,
853: p_pmtInstrRec.PurchaseCardInstr.Instr_Id,
854: p_pmtInstrRec.PurchaseCardInstr.Owner_Id,
855: p_pmtInstrRec.PurchaseCardInstr.PC_HolderName,

Line 906: IBY_CREDITCARD_PKG.Update_Card

902: x_result.Result_Code,
903: null,null
904: );
905: ELSIF( l_instrument_type = C_INSTRTYPE_CREDITCARD ) THEN
906: IBY_CREDITCARD_PKG.Update_Card
907: (FND_API.G_FALSE,
908: p_pmtInstrRec.CreditCardInstr.Instr_Id,
909: p_pmtInstrRec.CreditCardInstr.Owner_Id,
910: p_pmtInstrRec.CreditCardInstr.CC_HolderName,