DBA Data[Home] [Help]

APPS.IBE_QUOTE_MISC_PVT dependencies on DUAL

Line 4944: select fnd_global.resp_appl_id appId from dual;

4940: ) IS
4941:
4942: cursor c_getAppId
4943: is
4944: select fnd_global.resp_appl_id appId from dual;
4945: rec_AppId c_getAppId%rowtype;
4946:
4947: cursor c_getRespId
4948: is

Line 4949: select fnd_global.resp_id respId from dual;

4945: rec_AppId c_getAppId%rowtype;
4946:
4947: cursor c_getRespId
4948: is
4949: select fnd_global.resp_id respId from dual;
4950: rec_RespId c_getRespId%rowtype;
4951:
4952: cursor c_getUserId
4953: is

Line 4954: select fnd_global.user_id userId from dual;

4950: rec_RespId c_getRespId%rowtype;
4951:
4952: cursor c_getUserId
4953: is
4954: select fnd_global.user_id userId from dual;
4955: rec_UserId c_getUserId%rowtype;
4956:
4957: cursor c_getOrgId
4958: is

Line 4959: SELECT (MO_GLOBAL.get_current_org_id()) orgId from dual;

4955: rec_UserId c_getUserId%rowtype;
4956:
4957: cursor c_getOrgId
4958: is
4959: SELECT (MO_GLOBAL.get_current_org_id()) orgId from dual;
4960: rec_OrgId c_getOrgId%rowtype;
4961:
4962: cursor c_getEnvInfo
4963: is

Line 4969: FROM dual;

4965: ,FND_GLOBAL.USER_NAME user_name
4966: ,FND_GLOBAL.LOGIN_ID login_id
4967: ,userenv('CLIENT_INFO') client_info
4968: ,userenv('LANG') lang
4969: FROM dual;
4970: rec_EnvInfo c_getEnvInfo%rowtype;
4971:
4972: cursor c_getICXSessionDetails(p_session_id VARCHAR2)
4973: is

Line 4999: SELECT sys_context('multi_org2','current_org_id') sys_context from dual;

4995: rec_MOTempTableInfo c_getMOTempTableInfo%rowtype;
4996:
4997: cursor c_getSysContext
4998: is
4999: SELECT sys_context('multi_org2','current_org_id') sys_context from dual;
5000: rec_SysContext c_getSysContext%rowtype;
5001:
5002: Begin
5003: IF (IBE_UTIL.G_DEBUGON = l_true) THEN