DBA Data[Home] [Help]

APPS.OKL_CS_LC_CONTRACT_PVT dependencies on FND_GLOBAL

Line 959: (g_user_id <> Fnd_Global.user_id) THEN

955: END get_warning_message;
956: PROCEDURE Set_Connection_Context IS
957: BEGIN
958: IF (g_user_id = Okl_Api.G_MISS_NUM) OR
959: (g_user_id <> Fnd_Global.user_id) THEN
960: g_user_id := Fnd_Global.user_id;
961: g_reset_access_flag := TRUE;
962: g_reset_lang_flag := TRUE;
963: END IF;

Line 960: g_user_id := Fnd_Global.user_id;

956: PROCEDURE Set_Connection_Context IS
957: BEGIN
958: IF (g_user_id = Okl_Api.G_MISS_NUM) OR
959: (g_user_id <> Fnd_Global.user_id) THEN
960: g_user_id := Fnd_Global.user_id;
961: g_reset_access_flag := TRUE;
962: g_reset_lang_flag := TRUE;
963: END IF;
964: IF (g_resp_id = Okl_Api.G_MISS_NUM) OR

Line 965: (g_resp_id <> Fnd_Global.resp_id) THEN

961: g_reset_access_flag := TRUE;
962: g_reset_lang_flag := TRUE;
963: END IF;
964: IF (g_resp_id = Okl_Api.G_MISS_NUM) OR
965: (g_resp_id <> Fnd_Global.resp_id) THEN
966: g_resp_id := Fnd_Global.resp_id;
967: g_reset_resp_flag := TRUE;
968: END IF;
969: END;

Line 966: g_resp_id := Fnd_Global.resp_id;

962: g_reset_lang_flag := TRUE;
963: END IF;
964: IF (g_resp_id = Okl_Api.G_MISS_NUM) OR
965: (g_resp_id <> Fnd_Global.resp_id) THEN
966: g_resp_id := Fnd_Global.resp_id;
967: g_reset_resp_flag := TRUE;
968: END IF;
969: END;
970: FUNCTION Get_K_Access_Level(p_chr_id IN NUMBER,

Line 999: AND ras.resp_id = Fnd_Global.resp_id

995: CURSOR resp_csr IS
996: SELECT ras.access_level
997: FROM okc_subclass_resps ras
998: WHERE ras.scs_code = l_scs_code
999: AND ras.resp_id = Fnd_Global.resp_id
1000: AND l_date BETWEEN ras.start_date AND NVL(ras.end_date, l_date);
1001: -- This cursor retrieves the resource id corresponding to the logged
1002: -- in user. The resource has to have a role of CONTRACT for this to be
1003: -- considered

Line 1009: WHERE res.user_id = Fnd_Global.user_id

1005: SELECT res.resource_id
1006: FROM jtf_rs_resource_extns res,
1007: jtf_rs_role_relations rrr,
1008: jtf_rs_roles_b rr
1009: WHERE res.user_id = Fnd_Global.user_id
1010: AND l_date BETWEEN res.start_date_active
1011: AND NVL(res.end_date_active, l_date)
1012: AND res.resource_id = rrr.role_resource_id
1013: AND rrr.role_resource_type = 'RS_INDIVIDUAL'