DBA Data[Home] [Help]

APPS.ZPB_EXTERNAL_BP_PUBLISH dependencies on FND_GLOBAL

Line 114: l_user := fnd_global.user_id;

110: begin
111:
112:
113: -- b4594118 23Sep05 credentials of intial caller will set back to these at end of API
114: l_user := fnd_global.user_id;
115: l_respID := fnd_global.RESP_ID;
116: l_respAppID := fnd_global.RESP_APPL_ID;
117:
118: l_time_fixed := 'FIXED_TIME';

Line 115: l_respID := fnd_global.RESP_ID;

111:
112:
113: -- b4594118 23Sep05 credentials of intial caller will set back to these at end of API
114: l_user := fnd_global.user_id;
115: l_respID := fnd_global.RESP_ID;
116: l_respAppID := fnd_global.RESP_APPL_ID;
117:
118: l_time_fixed := 'FIXED_TIME';
119: l_time_relative := 'NUMBER_OF_PERIODS';

Line 116: l_respAppID := fnd_global.RESP_APPL_ID;

112:
113: -- b4594118 23Sep05 credentials of intial caller will set back to these at end of API
114: l_user := fnd_global.user_id;
115: l_respID := fnd_global.RESP_ID;
116: l_respAppID := fnd_global.RESP_APPL_ID;
117:
118: l_time_fixed := 'FIXED_TIME';
119: l_time_relative := 'NUMBER_OF_PERIODS';
120:

Line 228: -- b4594118 23Sep05 flip fnd_global.user_id to BP owner for horizion validation.

224:
225: -- IF (P_horizon_start IS NOT NULL) OR (P_horizon_end IS NOT NULL) THEN
226: -- 3. are the start and end horizon params valid
227:
228: -- b4594118 23Sep05 flip fnd_global.user_id to BP owner for horizion validation.
229: fnd_global.apps_initialize(l_owner, 0, 0);
230:
231:
232:

Line 229: fnd_global.apps_initialize(l_owner, 0, 0);

225: -- IF (P_horizon_start IS NOT NULL) OR (P_horizon_end IS NOT NULL) THEN
226: -- 3. are the start and end horizon params valid
227:
228: -- b4594118 23Sep05 flip fnd_global.user_id to BP owner for horizion validation.
229: fnd_global.apps_initialize(l_owner, 0, 0);
230:
231:
232:
233: -- attach the required AW in approp mode

Line 407: -- b4594118 23Sep05 flip fnd_global.user_id back to calling user ID for last update by audits

403: ZPB_AW.DETACH_ALL;
404: is_attached := 'N';
405:
406: -- POST VALIDATION SUCCESS
407: -- b4594118 23Sep05 flip fnd_global.user_id back to calling user ID for last update by audits
408: -- will set back to l_owner when starting WF so BP will be run under owner ID.
409:
410: fnd_global.apps_initialize(l_user, 0, 0);
411:

Line 410: fnd_global.apps_initialize(l_user, 0, 0);

406: -- POST VALIDATION SUCCESS
407: -- b4594118 23Sep05 flip fnd_global.user_id back to calling user ID for last update by audits
408: -- will set back to l_owner when starting WF so BP will be run under owner ID.
409:
410: fnd_global.apps_initialize(l_user, 0, 0);
411:
412: zpb_ac_ops.create_editable_copy(l_published_id, p_bp_name , l_user, l_edit_ac_id );
413:
414: zpb_ac_ops.PUBLISH_CYCLE(

Line 428: fnd_global.apps_initialize(l_user, l_respID, l_respAppID);

424: ,X_item_key_out => X_item_key
425: );
426:
427: -- b4594118 23Sep05 reset caller credentials
428: fnd_global.apps_initialize(l_user, l_respID, l_respAppID);
429:
430: x_return_status := FND_API.G_RET_STS_SUCCESS;
431: commit;
432: exception