DBA Data[Home] [Help]

APPS.HZ_EBI_CUST_LOAD dependencies on HZ_ORG_CUST_BO_TBL

Line 168: ,x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL

164:
165: END Raise_CUST_LOAD_Event;
166:
167: PROCEDURE Get_Org_Custs_BO( p_event_id IN NUMBER
168: ,x_org_cust_objs OUT NOCOPY HZ_ORG_CUST_BO_TBL
169: ,x_return_status OUT NOCOPY VARCHAR2
170: ,x_messages OUT NOCOPY HZ_MESSAGE_OBJ_TBL
171: )
172: Is

Line 183: x_org_cust_objs := HZ_ORG_CUST_BO_TBL();

179: CURSOR cust_cur IS
180: SELECT party_id from HZ_EBI_CUST_LOAD_LOG where event_id = p_event_id;
181:
182: BEGIN
183: x_org_cust_objs := HZ_ORG_CUST_BO_TBL();
184: x_messages := HZ_MESSAGE_OBJ_TBL();
185: l_count :=0;
186: OPEN cust_cur;
187: LOOP