DBA Data[Home] [Help]

APPS.PA_CONTROL_ITEMS_WF_CLIENT dependencies on FND_API

Line 95: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

Line 137: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

133: WHEN OTHERS THEN
134:
135: x_msg_count := 1;
136: x_msg_data := substr(SQLERRM,1,2000);
137: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
138:
139: end start_workflow;
140:
141:

Line 357: x_return_status := FND_API.G_RET_STS_SUCCESS;

353: l_org pa_project_lists_v.carrying_out_organization_name%TYPE; -- Bug 4358517.
354:
355: BEGIN
356:
357: x_return_status := FND_API.G_RET_STS_SUCCESS;
358:
359: wf_engine.SetItemAttrText( p_item_type
360: , p_item_key
361: , 'ITEM_TYPE'

Line 575: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

571: WHEN OTHERS THEN
572:
573: x_msg_count := 1;
574: x_msg_data := substr(SQLERRM,1,2000);
575: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
576:
577:
578: END start_workflow;
579:

Line 763: ,p_init_msg_list => FND_API.G_TRUE

759: CLOSE get_prev_status;
760:
761: pa_control_items_pvt.UPDATE_CONTROL_ITEM_STATUS (
762: p_api_version => 1.0
763: ,p_init_msg_list => FND_API.G_TRUE
764: ,p_validate_only => FND_API.G_FALSE
765: ,p_ci_id => l_ci_id
766: ,p_status_code => l_prev_status
767: ,p_record_version_number => NULL

Line 764: ,p_validate_only => FND_API.G_FALSE

760:
761: pa_control_items_pvt.UPDATE_CONTROL_ITEM_STATUS (
762: p_api_version => 1.0
763: ,p_init_msg_list => FND_API.G_TRUE
764: ,p_validate_only => FND_API.G_FALSE
765: ,p_ci_id => l_ci_id
766: ,p_status_code => l_prev_status
767: ,p_record_version_number => NULL
768: ,x_return_status => x_return_status

Line 772: If x_return_status = FND_API.G_RET_STS_SUCCESS then

768: ,x_return_status => x_return_status
769: ,x_msg_count => x_msg_count
770: ,x_msg_data => x_msg_data);
771:
772: If x_return_status = FND_API.G_RET_STS_SUCCESS then
773:
774: fnd_message.set_name('PA', 'PA_CI_ERR_PM_WF_COMMENT');
775: l_comment := fnd_message.get;
776: DBMS_LOCK.SLEEP(1);