DBA Data[Home] [Help]

APPS.WIP_BIS_UTZ_ALERT dependencies on FND_API

Line 34: p_commit => FND_API.G_TRUE,

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

Line 935: x_return_status := FND_API.G_RET_STS_SUCCESS;

931: select name from wf_roles
932: where name = p_role;
933:
934: BEGIN
935: x_return_status := FND_API.G_RET_STS_SUCCESS;
936: if p_wf_process is null
937: or p_role is null then
938: x_return_status := FND_API.G_RET_STS_ERROR;
939: return;

Line 938: x_return_status := FND_API.G_RET_STS_ERROR;

934: BEGIN
935: x_return_status := FND_API.G_RET_STS_SUCCESS;
936: if p_wf_process is null
937: or p_role is null then
938: x_return_status := FND_API.G_RET_STS_ERROR;
939: return;
940: end if;
941:
942: open c_role_name;

Line 945: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

941:
942: open c_role_name;
943: fetch c_role_name into l_role_name;
944: if c_role_name%NOTFOUND then
945: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
946: close c_role_name;
947: return;
948: end if;
949: close c_role_name;