DBA Data[Home] [Help]

APPS.JAI_CMN_MTAX_PKG dependencies on MO_GLOBAL

Line 1207: 3. Change the called procedures/reports. Remove the use of p_org_id and instead derive the org_id using the function mo_global.get_current_org_id

1203: This would enable the SRS Operating Unit field. User would then be able to select operating unit values related to the
1204: security profile.
1205: 2. Remove the default value for the parameter p_org_id and make it Required false, Display false. This would ensure that null value gets passed
1206: to the called procedures/ reports.
1207: 3. Change the called procedures/reports. Remove the use of p_org_id and instead derive the org_id using the function mo_global.get_current_org_id
1208: This change has been made many procedures and reports.
1209: In the current procedure use of p_org_id is removed and instead ln_org_id a new local variable is defined . Value for it is derived as mentioend above
1210: and replaced at all places where p_org_id was being used.
1211:

Line 1282: ln_org_id := mo_global.get_current_org_id;

1278: || Start of bug 5490479
1279: || Added by aiyer for the bug 5490479
1280: || Get the operating unit (org_id)
1281: */
1282: ln_org_id := mo_global.get_current_org_id;
1283: fnd_file.put_line(fnd_file.log, 'Operating unit ln_org_id is -> '||ln_org_id ||','|| p_from_date||','||p_to_date );
1284: /*End of bug 5490479 */
1285:
1286: /* Ramananda for File.Sql.35 */