DBA Data[Home] [Help]

APPS.PA_CONTROL_ITEMS_WF_CLIENT dependencies on FND_API

Line 99: x_return_status := FND_API.G_RET_STS_SUCCESS;

95:
96: -- define local variables you will need
97: begin
98:
99: x_return_status := FND_API.G_RET_STS_SUCCESS;
100:
101: -- set item attributes for the workflow process.
102: -- an example of setting of various item attributes are shown below
103: -- please note that certain item attributes must be set in order for the

Line 141: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

137: WHEN OTHERS THEN
138:
139: x_msg_count := 1;
140: x_msg_data := substr(SQLERRM,1,2000);
141: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
142:
143: end start_workflow;
144:
145:

Line 362: x_return_status := FND_API.G_RET_STS_SUCCESS;

358: l_org pa_project_lists_v.carrying_out_organization_name%TYPE; -- Bug 4358517.
359:
360: BEGIN
361:
362: x_return_status := FND_API.G_RET_STS_SUCCESS;
363:
364: wf_engine.SetItemAttrText( p_item_type
365: , p_item_key
366: , 'ITEM_TYPE'

Line 580: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

576: WHEN OTHERS THEN
577:
578: x_msg_count := 1;
579: x_msg_data := substr(SQLERRM,1,2000);
580: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
581:
582:
583: END start_workflow;
584:

Line 769: ,p_init_msg_list => FND_API.G_TRUE

765: CLOSE get_prev_status;
766:
767: pa_control_items_pvt.UPDATE_CONTROL_ITEM_STATUS (
768: p_api_version => 1.0
769: ,p_init_msg_list => FND_API.G_TRUE
770: ,p_validate_only => FND_API.G_FALSE
771: ,p_ci_id => l_ci_id
772: ,p_status_code => l_prev_status
773: ,p_record_version_number => NULL

Line 770: ,p_validate_only => FND_API.G_FALSE

766:
767: pa_control_items_pvt.UPDATE_CONTROL_ITEM_STATUS (
768: p_api_version => 1.0
769: ,p_init_msg_list => FND_API.G_TRUE
770: ,p_validate_only => FND_API.G_FALSE
771: ,p_ci_id => l_ci_id
772: ,p_status_code => l_prev_status
773: ,p_record_version_number => NULL
774: ,x_return_status => x_return_status

Line 778: If x_return_status = FND_API.G_RET_STS_SUCCESS then

774: ,x_return_status => x_return_status
775: ,x_msg_count => x_msg_count
776: ,x_msg_data => x_msg_data);
777:
778: If x_return_status = FND_API.G_RET_STS_SUCCESS then
779:
780: fnd_message.set_name('PA', 'PA_CI_ERR_PM_WF_COMMENT');
781: l_comment := fnd_message.get;
782: DBMS_LOCK.SLEEP(1);