DBA Data[Home] [Help]

APPS.XDP_PLSQL_FE_LOC_U dependencies on XDP_MACROS

Line 21: xdp_macros.initdefault(p_order_id, p_line_item_id, p_wi_instance_id, p_fa_instance_id);

17: p_fe_name OUT VARCHAR2,
18: p_return_code OUT NUMBER,
19: p_error_description OUT VARCHAR2
20: *****************************************************************************/
21: xdp_macros.initdefault(p_order_id, p_line_item_id, p_wi_instance_id, p_fa_instance_id);
22: declare
23: /*****************************************************************************
24: This procedure returns the Fulfillment Element (FE) name of the FE
25: that is to be provisioned by this Fulfillment Action (FA).

Line 39: xdp_macros.EndProc(p_return_code, p_error_description);

35: p_fe_name := 'PLSQL_FE';
36: p_return_code := 0;
37: END;
38:
39: xdp_macros.EndProc(p_return_code, p_error_description);
40: exception
41: when others then
42: xdp_macros.HandleProcErrors(p_return_code,p_error_description);
43: end PLSQL_FE_LOC ;

Line 42: xdp_macros.HandleProcErrors(p_return_code,p_error_description);

38:
39: xdp_macros.EndProc(p_return_code, p_error_description);
40: exception
41: when others then
42: xdp_macros.HandleProcErrors(p_return_code,p_error_description);
43: end PLSQL_FE_LOC ;
44: END XDP_PLSQL_FE_LOC_U;