DBA Data[Home] [Help]

APPS.PFT_PROFCAL_PROSP_IDENT_PUB dependencies on FND_API

Line 170: x_return_status := FND_API.G_RET_STS_SUCCESS;

166: e_register_rule_error EXCEPTION;
167:
168: BEGIN
169: -- Initialize the return status to SUCCESS
170: x_return_status := FND_API.G_RET_STS_SUCCESS;
171:
172: l_effective_date := FND_DATE.Canonical_To_Date(p_effective_date);
173:
174: FEM_ENGINES_PKG.Tech_Message ( p_severity => g_log_level_2

Line 360: x_return_status := FND_API.G_RET_STS_ERROR;

356:
357: FEM_ENGINES_PKG.User_Message (p_app_name => G_PFT
358: ,p_msg_name => G_ENG_SINGLE_RULE_ERR);
359:
360: x_return_status := FND_API.G_RET_STS_ERROR;
361:
362: WHEN OTHERS THEN
363:
364: FEM_ENGINES_PKG.Tech_Message (

Line 373: x_return_status := FND_API.G_RET_STS_ERROR;

369:
370: FEM_ENGINES_PKG.User_Message (p_app_name => G_PFT
371: ,p_msg_name => G_ENG_SINGLE_RULE_ERR);
372:
373: x_return_status := FND_API.G_RET_STS_ERROR;
374:
375: END Process_Single_Rule;
376:
377: /*============================================================================+

Line 414: ,p_commit => FND_API.G_TRUE

410:
411: -- Set the number of output rows for the output table.
412: FEM_PL_PKG.Update_Num_Of_Output_Rows(
413: p_api_version => 1.0
414: ,p_commit => FND_API.G_TRUE
415: ,p_request_id => p_request_id
416: ,p_object_id => p_rule_obj_id
417: ,p_table_name => p_tbl_name
418: ,p_statement_type => p_stmt_type

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

422: ,x_msg_count => l_msg_count
423: ,x_msg_data => l_msg_data
424: ,x_return_status => l_return_status);
425:
426: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
427:
428: Get_Put_Messages( p_msg_count => l_msg_count
429: ,p_msg_data => l_msg_data);
430: RAISE e_upd_num_output_rows_error;

Line 496: ,p_commit => FND_API.G_TRUE

492: --Call the FEM_PL_PKG.Update_obj_exec_step_status API procedure
493: --to update step staus in fem_pl_obj_steps.
494: FEM_PL_PKG.Update_Obj_Exec_Step_Status(
495: p_api_version => 1.0
496: ,p_commit => FND_API.G_TRUE
497: ,p_request_id => p_request_id
498: ,p_object_id => p_rule_obj_id
499: ,p_exec_step => p_exe_step
500: ,p_exec_status_code => p_exe_status_code

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

503: ,x_msg_count => l_msg_count
504: ,x_msg_data => l_msg_data
505: ,x_return_status => l_return_status);
506:
507: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
508: Get_Put_Messages ( p_msg_count => l_msg_count
509: ,p_msg_data => l_msg_data);
510: RAISE e_upd_obj_exec_step_stat_error;
511:

Line 850: ,p_encoded => FND_API.G_FALSE

846: ELSIF (p_msg_count > 1) THEN
847:
848: FOR i IN 1..p_msg_count LOOP
849: FND_MSG_PUB.Get ( p_msg_index => i
850: ,p_encoded => FND_API.G_FALSE
851: ,p_data => l_message
852: ,p_msg_index_out => l_msg_out);
853:
854: FEM_ENGINES_PKG.User_Message ( p_msg_text => l_message );

Line 904: ,p_commit => FND_API.G_TRUE

900:
901: -- Set the number of output rows for the output table.
902: FEM_PL_PKG.Update_Num_Of_Input_Rows(
903: p_api_version => 1.0
904: ,p_commit => FND_API.G_TRUE
905: ,p_request_id => p_request_id
906: ,p_object_id => p_rule_obj_id
907: ,p_num_of_input_rows => p_num_of_input_rows
908: ,p_user_id => p_user_id

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

910: ,x_msg_count => l_msg_count
911: ,x_msg_data => l_msg_data
912: ,x_return_status => l_return_status);
913:
914: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
915:
916: Get_Put_Messages( p_msg_count => l_msg_count
917: ,p_msg_data => l_msg_data);
918: RAISE e_upd_num_input_rows_error;