DBA Data[Home] [Help]

APPS.PO_DATATEMPLATE_PKG dependencies on XLE_UTILITIES_GRP

Line 25: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;

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

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

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

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

25: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
26: l_location_id NUMBER;
27: Begin
28: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
29: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);
30: l_location_id := x_legalentity_info.location_id;
31:
32: RETURN (l_location_id);
33: END get_location_id;

Line 40: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;

36: l_legal_entity_id NUMBER;
37: x_return_status VARCHAR2(500);
38: x_msg_count NUMBER;
39: x_msg_data VARCHAR2(500);
40: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
41: l_location_name VARCHAR2(500);
42: Begin
43: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
44: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);

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

39: x_msg_data VARCHAR2(500);
40: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
41: l_location_name VARCHAR2(500);
42: Begin
43: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
44: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);
45: l_location_name := x_legalentity_info.name;
46:
47: RETURN (l_location_name);

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

40: x_legalentity_info xle_utilities_grp.LegalEntity_Rec;
41: l_location_name VARCHAR2(500);
42: Begin
43: l_legal_entity_id := XLE_UTILITIES_GRP.GET_DefaultLegalContext_OU(t_orgid);
44: XLE_UTILITIES_GRP.Get_LegalEntity_Info(x_return_status, x_msg_count, x_msg_data, null, l_legal_entity_id, x_legalentity_info);
45: l_location_name := x_legalentity_info.name;
46:
47: RETURN (l_location_name);
48: END get_location_name;