DBA Data[Home] [Help]

APPS.PAY_LOAD_PARAMETERS dependencies on FND_GLOBAL

Line 74: , LAST_UPDATE_LOGIN = fnd_global.login_id

70: UPDATE PAY_PARAMETER_QUALIFIERS SET
71: description = p_description
72: , LAST_UPDATED_BY = decode(p_owner,'SEED',1,0)
73: , LAST_UPDATE_DATE = SYSDATE
74: , LAST_UPDATE_LOGIN = fnd_global.login_id
75: WHERE qualifier = l_qualifier ;
76:
77: else
78:

Line 93: , fnd_global.login_id

89: VALUES ( p_qualifier
90: , p_description
91: , decode(p_owner,'SEED',1,0)
92: , SYSDATE
93: , fnd_global.login_id
94: , SYSDATE
95: , decode(p_owner,'SEED',1,0) );
96:
97: end if;

Line 168: ,LAST_UPDATE_LOGIN = fnd_global.login_id

164: qualifier = p_qualifier
165: , override_allowed = p_override_allowed
166: ,LAST_UPDATED_BY = decode(p_owner,'SEED',1,0)
167: ,LAST_UPDATE_DATE = SYSDATE
168: ,LAST_UPDATE_LOGIN = fnd_global.login_id
169: WHERE parameter_id = l_parameter_id ;
170:
171: else
172:

Line 200: , fnd_global.login_id

196: , l_business_group_id
197: , p_leg_code
198: , decode(p_owner,'SEED',1,0)
199: , SYSDATE
200: , fnd_global.login_id
201: , SYSDATE
202: , decode(p_owner,'SEED',1,0) );
203:
204: end if;

Line 252: ,LAST_UPDATE_LOGIN = fnd_global.login_id

248: UPDATE PAY_PARAMETER_DEFINITIONS SET
249: description = p_description
250: ,LAST_UPDATED_BY = decode(p_owner,'SEED',1,0)
251: ,LAST_UPDATE_DATE = SYSDATE
252: ,LAST_UPDATE_LOGIN = fnd_global.login_id
253: WHERE parameter_def_id = l_parameter_def_id ;
254:
255: ----
256:

Line 263: ,LAST_UPDATE_LOGIN = fnd_global.login_id

259: , source_language = userenv('LANG')
260: , description = p_description
261: ,LAST_UPDATED_BY = decode(p_owner,'SEED',1,0)
262: ,LAST_UPDATE_DATE = SYSDATE
263: ,LAST_UPDATE_LOGIN = fnd_global.login_id
264: WHERE parameter_def_id = l_parameter_def_id ;
265:
266: else
267: hr_utility.trace('Inserting into pay_parameter_definitions... :'|| p_parameter_name);

Line 284: , fnd_global.login_id

280: ,p_parameter_name
281: , p_description
282: , decode(p_owner,'SEED',1,0)
283: , SYSDATE
284: , fnd_global.login_id
285: , SYSDATE
286: , decode(p_owner,'SEED',1,0));
287:
288: ---

Line 308: , fnd_global.login_id

304: , userenv('LANG')
305: , p_description
306: , decode(p_owner,'SEED',1,0)
307: , SYSDATE
308: , fnd_global.login_id
309: , SYSDATE
310: , decode(p_owner,'SEED',1,0)
311: from FND_LANGUAGES L,
312: PAY_PARAMETER_DEFINITIONS PPD