DBA Data[Home] [Help]

APPS.PO_XML_FPDSNG_PKG dependencies on XLE_UTILITIES_GRP

Line 9: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;

5: l_legal_entity_id NUMBER;
6: x_return_status VARCHAR2(500);
7: x_msg_count NUMBER;
8: x_msg_data VARCHAR2(500);
9: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
10: l_location_id NUMBER;
11: Begin
12: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
13: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);

Line 12: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);

8: x_msg_data VARCHAR2(500);
9: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
10: l_location_id NUMBER;
11: Begin
12: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
13: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);
14: l_location_id := x_legalentity_info.location_id;
15:
16: RETURN (l_location_id);

Line 13: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);

9: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
10: l_location_id NUMBER;
11: Begin
12: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
13: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);
14: l_location_id := x_legalentity_info.location_id;
15:
16: RETURN (l_location_id);
17: END get_location_id;

Line 24: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;

20: l_legal_entity_id NUMBER;
21: x_return_status VARCHAR2(500);
22: x_msg_count NUMBER;
23: x_msg_data VARCHAR2(500);
24: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
25: l_location_name VARCHAR2(500);
26: Begin
27: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
28: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);

Line 27: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);

23: x_msg_data VARCHAR2(500);
24: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
25: l_location_name VARCHAR2(500);
26: Begin
27: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
28: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);
29: l_location_name := x_legalentity_info.name;
30:
31: RETURN (l_location_name);

Line 28: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);

24: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
25: l_location_name VARCHAR2(500);
26: Begin
27: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
28: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);
29: l_location_name := x_legalentity_info.name;
30:
31: RETURN (l_location_name);
32: END get_location_name;