DBA Data[Home] [Help]

APPS.PFT_AR_ENGINE_PVT dependencies on FEM_PL_PKG

Line 1455: -- Call the FEM_PL_PKG.Register_Request API procedure to register

1451: );
1452:
1453: savepoint register_request_pub;
1454:
1455: -- Call the FEM_PL_PKG.Register_Request API procedure to register
1456: -- the concurrent request in FEM_PL_REQUESTS.
1457: FEM_PL_PKG.Register_Request (
1458: p_api_version => 1.0
1459: ,p_commit => FND_API.G_FALSE

Line 1457: FEM_PL_PKG.Register_Request (

1453: savepoint register_request_pub;
1454:
1455: -- Call the FEM_PL_PKG.Register_Request API procedure to register
1456: -- the concurrent request in FEM_PL_REQUESTS.
1457: FEM_PL_PKG.Register_Request (
1458: p_api_version => 1.0
1459: ,p_commit => FND_API.G_FALSE
1460: ,p_cal_period_id => p_request_rec.output_cal_period_id
1461: ,p_ledger_id => p_request_rec.ledger_id

Line 2817: -- Call the FEM_PL_PKG.Register_Object_Execution API procedure to register

2813: );
2814:
2815: savepoint register_rule_pub;
2816:
2817: -- Call the FEM_PL_PKG.Register_Object_Execution API procedure to register
2818: -- the activity rate object execution in FEM_PL_OBJECT_EXECUTIONS, thus obtaining
2819: -- an execution lock.
2820: FEM_PL_PKG.Register_Object_Execution (
2821: p_api_version => 1.0

Line 2820: FEM_PL_PKG.Register_Object_Execution (

2816:
2817: -- Call the FEM_PL_PKG.Register_Object_Execution API procedure to register
2818: -- the activity rate object execution in FEM_PL_OBJECT_EXECUTIONS, thus obtaining
2819: -- an execution lock.
2820: FEM_PL_PKG.Register_Object_Execution (
2821: p_api_version => 1.0
2822: ,p_commit => FND_API.G_FALSE
2823: ,p_request_id => p_request_rec.request_id
2824: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 2852: FEM_PL_PKG.Register_Dependent_ObjDefs (

2848: ,p_obj_def_id => p_request_rec.dataset_grp_obj_def_id
2849: );
2850:
2851: -- Register all the Dependent Objects for the activity rate Object Definition
2852: FEM_PL_PKG.Register_Dependent_ObjDefs (
2853: p_api_version => 1.0
2854: ,p_commit => FND_API.G_FALSE
2855: ,p_request_id => p_request_rec.request_id
2856: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 2985: -- Call the FEM_PL_PKG.Register_Object_Def API procedure to register

2981: ,p_module => G_BLOCK||'.'||L_API_NAME
2982: ,p_msg_text => 'BEGIN'
2983: );
2984:
2985: -- Call the FEM_PL_PKG.Register_Object_Def API procedure to register
2986: -- the specified object definition in FEM_PL_OBJECT_DEFS, thus obtaining
2987: -- an object definition lock.
2988: FEM_PL_PKG.Register_Object_Def (
2989: p_api_version => 1.0

Line 2988: FEM_PL_PKG.Register_Object_Def (

2984:
2985: -- Call the FEM_PL_PKG.Register_Object_Def API procedure to register
2986: -- the specified object definition in FEM_PL_OBJECT_DEFS, thus obtaining
2987: -- an object definition lock.
2988: FEM_PL_PKG.Register_Object_Def (
2989: p_api_version => 1.0
2990: ,p_commit => FND_API.G_FALSE
2991: ,p_request_id => p_request_rec.request_id
2992: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 3067: -- Call the FEM_PL_PKG.Register_Table API procedure to register

3063: ,p_module => G_BLOCK||'.'||L_API_NAME
3064: ,p_msg_text => 'BEGIN'
3065: );
3066:
3067: -- Call the FEM_PL_PKG.Register_Table API procedure to register
3068: -- the specified output table and the statement type that will be used.
3069: FEM_PL_PKG.Register_Table (
3070: p_api_version => 1.0
3071: ,p_commit => FND_API.G_FALSE

Line 3069: FEM_PL_PKG.Register_Table (

3065: );
3066:
3067: -- Call the FEM_PL_PKG.Register_Table API procedure to register
3068: -- the specified output table and the statement type that will be used.
3069: FEM_PL_PKG.Register_Table (
3070: p_api_version => 1.0
3071: ,p_commit => FND_API.G_FALSE
3072: ,p_request_id => p_request_rec.request_id
3073: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 3149: FEM_PL_PKG.Register_Obj_Exec_Step (

3145: ,p_module => G_BLOCK||'.'||L_API_NAME
3146: ,p_msg_text => 'BEGIN'
3147: );
3148:
3149: FEM_PL_PKG.Register_Obj_Exec_Step (
3150: p_api_version => 1.0
3151: ,p_commit => FND_API.G_FALSE
3152: ,p_request_id => p_request_rec.request_id
3153: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 3230: FEM_PL_PKG.Update_Obj_Exec_Step_Status (

3226: ,p_module => G_BLOCK||'.'||L_API_NAME
3227: ,p_msg_text => 'BEGIN'
3228: );
3229:
3230: FEM_PL_PKG.Update_Obj_Exec_Step_Status (
3231: p_api_version => 1.0
3232: ,p_commit => FND_API.G_FALSE
3233: ,p_request_id => p_request_rec.request_id
3234: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 3329: FEM_PL_PKG.Register_Temp_Object (

3325: raise l_create_temp_objects_error;
3326: end;
3327:
3328: -- Register Temp Sequence in PL Framework
3329: FEM_PL_PKG.Register_Temp_Object (
3330: p_api_version => 1.0
3331: ,p_commit => FND_API.G_FALSE
3332: ,p_request_id => p_request_rec.request_id
3333: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 3374: FEM_PL_PKG.Register_Temp_Object (

3370: raise l_create_temp_objects_error;
3371: end;
3372:
3373: -- Register Temp Sequence in PL Framework
3374: FEM_PL_PKG.Register_Temp_Object (
3375: p_api_version => 1.0
3376: ,p_commit => FND_API.G_FALSE
3377: ,p_request_id => p_request_rec.request_id
3378: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 4694: -- Call the FEM_PL_PKG.Register_Chain API procedure to register

4690: end if;
4691:
4692: for i in 1..l_find_driver_chains_last_row loop
4693:
4694: -- Call the FEM_PL_PKG.Register_Chain API procedure to register
4695: -- the specified chain.
4696: FEM_PL_PKG.Register_Chain (
4697: p_api_version => 1.0
4698: ,p_commit => FND_API.G_FALSE

Line 4696: FEM_PL_PKG.Register_Chain (

4692: for i in 1..l_find_driver_chains_last_row loop
4693:
4694: -- Call the FEM_PL_PKG.Register_Chain API procedure to register
4695: -- the specified chain.
4696: FEM_PL_PKG.Register_Chain (
4697: p_api_version => 1.0
4698: ,p_commit => FND_API.G_FALSE
4699: ,p_request_id => p_request_id
4700: ,p_object_id => p_act_rate_obj_id

Line 4891: -- Call the FEM_PL_PKG.Register_Chain API procedure to register

4887: end if;
4888:
4889: for i in 1..l_find_source_chains_last_row loop
4890:
4891: -- Call the FEM_PL_PKG.Register_Chain API procedure to register
4892: -- the specified chain.
4893: FEM_PL_PKG.Register_Chain (
4894: p_api_version => 1.0
4895: ,p_commit => FND_API.G_FALSE

Line 4893: FEM_PL_PKG.Register_Chain (

4889: for i in 1..l_find_source_chains_last_row loop
4890:
4891: -- Call the FEM_PL_PKG.Register_Chain API procedure to register
4892: -- the specified chain.
4893: FEM_PL_PKG.Register_Chain (
4894: p_api_version => 1.0
4895: ,p_commit => FND_API.G_FALSE
4896: ,p_request_id => p_request_id
4897: ,p_object_id => p_act_rate_obj_id

Line 5085: FEM_PL_PKG.Update_Num_Of_Input_Rows (

5081: ,p_rule_rec.act_rate_obj_id
5082: ,p_request_rec.request_id
5083: ,p_rule_rec.act_rate_obj_id;
5084:
5085: FEM_PL_PKG.Update_Num_Of_Input_Rows (
5086: p_api_version => 1.0
5087: ,p_commit => FND_API.G_FALSE
5088: ,p_request_id => p_request_rec.request_id
5089: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 5174: FEM_PL_PKG.Update_Num_Of_Output_Rows (

5170:
5171: end if;
5172:
5173: -- Set the number of output rows for the FEM_BALANCES output table.
5174: FEM_PL_PKG.Update_Num_Of_Output_Rows (
5175: p_api_version => 1.0
5176: ,p_commit => FND_API.G_FALSE
5177: ,p_request_id => p_request_rec.request_id
5178: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 5206: FEM_PL_PKG.Update_Obj_Exec_Status (

5202: ,p_module => G_BLOCK||'.'||L_API_NAME
5203: ,p_msg_text => 'Step 4: Update Object Execution Status'
5204: );
5205:
5206: FEM_PL_PKG.Update_Obj_Exec_Status (
5207: p_api_version => 1.0
5208: ,p_commit => FND_API.G_FALSE
5209: ,p_request_id => p_request_rec.request_id
5210: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 5239: FEM_PL_PKG.Update_Obj_Exec_Errors (

5235: ,p_msg_text => 'Step 5: Update Object Execution Errors'
5236: );
5237:
5238: -- An Activity Rate Rule is an all or nothing deal, so only 1 error can be reported
5239: FEM_PL_PKG.Update_Obj_Exec_Errors (
5240: p_api_version => 1.0
5241: ,p_commit => FND_API.G_FALSE
5242: ,p_request_id => p_request_rec.request_id
5243: ,p_object_id => p_rule_rec.act_rate_obj_id

Line 5366: FEM_PL_PKG.Update_Request_Status (

5362: ,p_module => G_BLOCK||'.'||L_API_NAME
5363: ,p_msg_text => 'Step 2: Update Request Status'
5364: );
5365:
5366: FEM_PL_PKG.Update_Request_Status (
5367: p_api_version => 1.0
5368: ,p_commit => FND_API.G_FALSE
5369: ,p_request_id => p_request_rec.request_id
5370: ,p_exec_status_code => p_exec_status_code