DBA Data[Home] [Help]

APPS.IBY_INSTRHOLDER_PKG dependencies on IBY_ECAPP

Line 13: procedure createHolderInstr( i_ecappid in iby_ecapp.ecappid%type,

9: ** i_ecappid, ec application id through which the holder is
10: ** created. instr_type and instr_id are type of instrument
11: ** BANKACCT or CREDITCARD, and it's id respectively.
12: */
13: procedure createHolderInstr( i_ecappid in iby_ecapp.ecappid%type,
14: i_hld_type in iby_instrholder.ownertype%type,
15: i_hld_id in iby_instrholder.ownerid%type,
16: i_hld_address_id in iby_instrholder.owneraddressid%type,
17: i_instr_type in iby_instrholder.instrtype%type,

Line 24: procedure deleteHolderInstr( i_ecappid in iby_ecapp.ecappid%type,

20: ** Procedure: deleteHolderInstr.
21: ** Purpose: marks the record identified by the ownerid, ownertype and
22: ** instrid and instrtype as in inactivated.
23: */
24: procedure deleteHolderInstr( i_ecappid in iby_ecapp.ecappid%type,
25: i_ownertype in iby_instrholder.ownertype%type,
26: i_ownerid in iby_instrholder.ownerid%type,
27: i_instrtype in iby_instrholder.instrtype%type,
28: i_instrid in iby_instrholder.instrid%type);

Line 34: function instrholderExists(i_ecappid in iby_ecapp.ecappid%type,

30: ** Procedure: holderInstrExists
31: ** Purpose: checks whether the corresponding id of the holder holds the
32: ** isntrument or not.
33: */
34: function instrholderExists(i_ecappid in iby_ecapp.ecappid%type,
35: i_hld_type in iby_instrholder.ownertype%type,
36: i_hld_id in iby_instrholder.ownerid%type,
37: i_instr_type in iby_instrholder.instrtype%type,
38: i_instr_id in iby_instrholder.instrid%type)

Line 40: procedure getHolderinstr( i_ecappid in iby_ecapp.ecappid%type,

36: i_hld_id in iby_instrholder.ownerid%type,
37: i_instr_type in iby_instrholder.instrtype%type,
38: i_instr_id in iby_instrholder.instrid%type)
39: return boolean;
40: procedure getHolderinstr( i_ecappid in iby_ecapp.ecappid%type,
41: i_hld_type in iby_instrholder.ownertype%type,
42: i_hld_id in iby_instrholder.ownerid%type,
43: o_instr_type out nocopy iby_instrholder.instrtype%type,
44: o_instr_id out nocopy iby_instrholder.instrid%type);

Line 50: function payeeAcctExists(i_ecappid in iby_ecapp.ecappid%type,

46: ** Function: payeeAcctExists
47: ** Purpose: checks whether the corresponding id of the holder holds the
48: ** isntrument or not.
49: */
50: function payeeAcctExists(i_ecappid in iby_ecapp.ecappid%type,
51: i_hld_id in iby_instrholder.ownerId%type)
52: return boolean;
53: /*
54: ** Procedure: deleteInstr.

Line 58: procedure deleteInstr( i_ecappid in iby_ecapp.ecappid%type,

54: ** Procedure: deleteInstr.
55: ** Purpose: marks the record identified by the ownerid, ownertype and
56: ** instrid as inactivated.
57: */
58: procedure deleteInstr( i_ecappid in iby_ecapp.ecappid%type,
59: i_ownertype in iby_instrholder.ownertype%type,
60: i_ownerid in iby_instrholder.ownerid%type,
61: i_instrid in iby_instrholder.instrid%type);
62: end iby_instrholder_pkg;