DBA Data[Home] [Help]

APPS.WIP_BIS_YDSP_ALERT dependencies on FND_API

Line 35: p_commit => FND_API.G_TRUE,

31: actual_rec.Dim2_Level_Value_ID := dimension2_level_value;
32: actual_rec.Actual := actual;
33:
34: BIS_ACTUAL_PUB.Post_Actual( p_api_version => 1.0,
35: p_commit => FND_API.G_TRUE,
36: p_Actual_Rec => actual_rec,
37: x_return_status => x_return_status,
38: x_msg_count => x_msg_count,
39: x_msg_data => x_msg_data,

Line 838: x_return_status := FND_API.G_RET_STS_SUCCESS;

834: select name from wf_roles
835: where name = p_role;
836:
837: BEGIN
838: x_return_status := FND_API.G_RET_STS_SUCCESS;
839: if p_wf_process is null
840: or p_role is null then
841: x_return_status := FND_API.G_RET_STS_ERROR;
842: return;

Line 841: x_return_status := FND_API.G_RET_STS_ERROR;

837: BEGIN
838: x_return_status := FND_API.G_RET_STS_SUCCESS;
839: if p_wf_process is null
840: or p_role is null then
841: x_return_status := FND_API.G_RET_STS_ERROR;
842: return;
843: end if;
844:
845: open c_role_name;

Line 848: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

844:
845: open c_role_name;
846: fetch c_role_name into l_role_name;
847: if c_role_name%NOTFOUND then
848: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
849: return;
850: end if;
851:
852: select bis_excpt_wf_s.nextval

Line 937: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

933: ,itemkey => l_wf_item_key);
934:
935: exception
936: when others then
937: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
938:
939: END WIP_Strt_Wf_Process;
940:
941: /*