DBA Data[Home] [Help]

APPS.PFT_PROFCAL_RGNCNT_PUB dependencies on FND_API

Line 196: x_return_status := FND_API.G_RET_STS_SUCCESS;

192: e_register_rule_error EXCEPTION;
193:
194: BEGIN
195: -- Initialize the return status to SUCCESS
196: x_return_status := FND_API.G_RET_STS_SUCCESS;
197:
198: l_effective_date := FND_DATE.Canonical_To_Date(p_effective_date);
199:
200: FEM_ENGINES_PKG.Tech_Message ( p_severity => g_log_level_2

Line 292: ,p_init_msg_list => FND_API.G_TRUE

288: ,p_msg_text => 'Generating the dataset where clause');
289:
290: FEM_DS_WHERE_CLAUSE_GENERATOR.Fem_Gen_DS_WClause_Pvt(
291: p_api_version => G_CALLING_API_VERSION
292: ,p_init_msg_list => FND_API.G_TRUE
293: ,p_encoded => FND_API.G_TRUE
294: ,p_ds_io_def_id => p_dataset_io_obj_def_id
295: ,p_output_period_id => p_cal_period_id
296: ,p_table_alias => l_process_table

Line 293: ,p_encoded => FND_API.G_TRUE

289:
290: FEM_DS_WHERE_CLAUSE_GENERATOR.Fem_Gen_DS_WClause_Pvt(
291: p_api_version => G_CALLING_API_VERSION
292: ,p_init_msg_list => FND_API.G_TRUE
293: ,p_encoded => FND_API.G_TRUE
294: ,p_ds_io_def_id => p_dataset_io_obj_def_id
295: ,p_output_period_id => p_cal_period_id
296: ,p_table_alias => l_process_table
297: ,p_table_name => l_table_alias

Line 304: IF(l_return_status <> FND_API.G_RET_STS_SUCCESS)THEN

300: ,x_return_status => l_return_status
301: ,x_msg_count => l_msg_count
302: ,x_msg_data => l_msg_data);
303:
304: IF(l_return_status <> FND_API.G_RET_STS_SUCCESS)THEN
305: Get_Put_Messages ( p_msg_count => l_msg_count
306: ,p_msg_data => l_msg_data);
307:
308: FEM_ENGINES_PKG.User_Message (

Line 517: x_return_status := FND_API.G_RET_STS_ERROR;

513:
514: FEM_ENGINES_PKG.User_Message (p_app_name => G_PFT
515: ,p_msg_name => G_ENG_SINGLE_RULE_ERR);
516:
517: x_return_status := FND_API.G_RET_STS_ERROR;
518:
519: WHEN OTHERS THEN
520:
521: FEM_ENGINES_PKG.Tech_Message (

Line 530: x_return_status := FND_API.G_RET_STS_ERROR;

526:
527: FEM_ENGINES_PKG.User_Message (p_app_name => G_PFT
528: ,p_msg_name => G_ENG_SINGLE_RULE_ERR);
529:
530: x_return_status := FND_API.G_RET_STS_ERROR;
531:
532: END Process_Single_Rule;
533:
534: /*============================================================================+

Line 571: ,p_commit => FND_API.G_TRUE

567:
568: -- Set the number of output rows for the output table.
569: FEM_PL_PKG.Update_Num_Of_Output_Rows(
570: p_api_version => 1.0
571: ,p_commit => FND_API.G_TRUE
572: ,p_request_id => p_request_id
573: ,p_object_id => p_rule_obj_id
574: ,p_table_name => p_tbl_name
575: ,p_statement_type => p_stmt_type

Line 583: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

579: ,x_msg_count => l_msg_count
580: ,x_msg_data => l_msg_data
581: ,x_return_status => l_return_status);
582:
583: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
584:
585: Get_Put_Messages( p_msg_count => l_msg_count
586: ,p_msg_data => l_msg_data);
587:

Line 654: ,p_commit => FND_API.G_TRUE

650: --Call the FEM_PL_PKG.Update_obj_exec_step_status API procedure
651: --to update step staus in fem_pl_obj_steps.
652: FEM_PL_PKG.Update_Obj_Exec_Step_Status(
653: p_api_version => 1.0
654: ,p_commit => FND_API.G_TRUE
655: ,p_request_id => p_request_id
656: ,p_object_id => p_rule_obj_id
657: ,p_exec_step => p_exe_step
658: ,p_exec_status_code => p_exe_status_code

Line 665: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

661: ,x_msg_count => l_msg_count
662: ,x_msg_data => l_msg_data
663: ,x_return_status => l_return_status);
664:
665: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
666: Get_Put_Messages ( p_msg_count => l_msg_count
667: ,p_msg_data => l_msg_data);
668: RAISE e_upd_obj_exec_step_stat_error;
669:

Line 1021: ,p_encoded => FND_API.G_FALSE

1017: ELSIF (p_msg_count > 1) THEN
1018:
1019: FOR i IN 1..p_msg_count LOOP
1020: FND_MSG_PUB.Get ( p_msg_index => i
1021: ,p_encoded => FND_API.G_FALSE
1022: ,p_data => l_message
1023: ,p_msg_index_out => l_msg_out);
1024:
1025: FEM_ENGINES_PKG.User_Message ( p_msg_text => l_message );

Line 1075: ,p_commit => FND_API.G_TRUE

1071:
1072: -- Set the number of output rows for the output table.
1073: FEM_PL_PKG.Update_Num_Of_Input_Rows(
1074: p_api_version => 1.0
1075: ,p_commit => FND_API.G_TRUE
1076: ,p_request_id => p_request_id
1077: ,p_object_id => p_rule_obj_id
1078: ,p_num_of_input_rows => p_num_of_input_rows
1079: ,p_user_id => p_user_id

Line 1085: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

1081: ,x_msg_count => l_msg_count
1082: ,x_msg_data => l_msg_data
1083: ,x_return_status => l_return_status);
1084:
1085: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
1086: Get_Put_Messages( p_msg_count => l_msg_count
1087: ,p_msg_data => l_msg_data);
1088: RAISE e_upd_num_input_rows_error;
1089: END IF;