DBA Data[Home] [Help]

APPS.EDR_EVENT_RELATIONSHIP_PVT dependencies on FND_TABLE_OF_VARCHAR2_255

Line 544: PROCEDURE VALIDATE_CHILDREN(P_CHILD_ERECORD_IDS IN FND_TABLE_OF_VARCHAR2_255,

540:
541: --This API is defined to verify if the specified child e-records
542: --exist in the evidence store and represent transactions
543: --other than that of the parent transaction.
544: PROCEDURE VALIDATE_CHILDREN(P_CHILD_ERECORD_IDS IN FND_TABLE_OF_VARCHAR2_255,
545: P_PARENT_EVENT_NAME IN VARCHAR2
546: )
547: IS
548:

Line 695: l_child_erecord_ids FND_TABLE_OF_VARCHAR2_255;

691: P_PARENT_EVENT_NAME IN VARCHAR2)
692: IS
693:
694: --This variable would hold the array of child e-record ids in varchar2 format.
695: l_child_erecord_ids FND_TABLE_OF_VARCHAR2_255;
696: i pls_integer;
697: l_counter pls_integer;
698:
699:

Line 705: l_child_erecord_ids := FND_TABLE_OF_VARCHAR2_255();

701:
702: l_counter := 1;
703:
704: --Create a new object instance of child e-record IDs.
705: l_child_erecord_ids := FND_TABLE_OF_VARCHAR2_255();
706:
707: --Copy the contents of e-record ID table type into the object type variable.
708: i := p_child_erecord_ids.FIRST;
709: while i is not null loop