DBA Data[Home] [Help]

APPS.QA_PARENT_CHILD_COPY_PKG dependencies on FND_GLOBAL

Line 66: X_Last_Updated_By => fnd_global.user_id,

62: X_Layout_mode => c1_rec.layout_mode,
63: X_Auto_Row_Count => c1_rec.auto_row_count,
64: X_Default_Parent_Spec => c1_rec.default_parent_spec,
65: X_Last_Update_Date => SYSDATE,
66: X_Last_Updated_By => fnd_global.user_id,
67: X_Creation_Date => SYSDATE,
68: X_Created_By => fnd_global.user_id,
69: X_Last_Update_Login => fnd_global.user_id);
70:

Line 68: X_Created_By => fnd_global.user_id,

64: X_Default_Parent_Spec => c1_rec.default_parent_spec,
65: X_Last_Update_Date => SYSDATE,
66: X_Last_Updated_By => fnd_global.user_id,
67: X_Creation_Date => SYSDATE,
68: X_Created_By => fnd_global.user_id,
69: X_Last_Update_Login => fnd_global.user_id);
70:
71: --return a value of success
72: x_old_plan_relationship_id := c1_rec.plan_relationship_id;

Line 69: X_Last_Update_Login => fnd_global.user_id);

65: X_Last_Update_Date => SYSDATE,
66: X_Last_Updated_By => fnd_global.user_id,
67: X_Creation_Date => SYSDATE,
68: X_Created_By => fnd_global.user_id,
69: X_Last_Update_Login => fnd_global.user_id);
70:
71: --return a value of success
72: x_old_plan_relationship_id := c1_rec.plan_relationship_id;
73: x_return_status := fnd_api.g_true;

Line 141: --this function assumes that fnd_global.apps_initialize has already been called

137: END;
138:
139: --this is a helper procedure that calls the UI mapping code for a given plan_id, x_return_status is
140: --fnd_api.g_true on success, fnd_api.g_false on failure
141: --this function assumes that fnd_global.apps_initialize has already been called
142:
143: -- anagarwa Tue Dec 24 11:44:52 PST 2002
144: -- Bug 2725466
145: -- The parameter plan_id is being replaced by p_plan_id to comply

Line 220: fnd_global.apps_initialize(user_id => fnd_global.user_id,

216:
217: --see if we need to call the mapping functions
218: IF p_call_mapping = fnd_api.g_true THEN
219: --initialize the app for creating the UI mappings for these plans
220: fnd_global.apps_initialize(user_id => fnd_global.user_id,
221: resp_id => 20561,
222: resp_appl_id => 250);
223:
224:

Line 814: user_name fnd_user.user_name%TYPE := get_user_name(fnd_global.user_id);

810: dest_id NUMBER;
811: child_id NUMBER;
812: l_request_id NUMBER;
813:
814: user_name fnd_user.user_name%TYPE := get_user_name(fnd_global.user_id);
815: --user_name fnd_user.user_name%TYPE := 'MFG';
816: CURSOR C1(parent_id NUMBER) IS
817: SELECT child_plan_id
818: FROM qa_pc_plan_relationship

Line 1010: fnd_global.apps_initialize(user_id => fnd_global.user_id,

1006: RETURN -1;
1007: END IF;
1008: ELSE
1009: --initialize the app for creating dynamic views
1010: fnd_global.apps_initialize(user_id => fnd_global.user_id,
1011: resp_id => 20561,
1012: resp_appl_id => 250);
1013:
1014: src_id := phtable.FIRST;