DBA Data[Home] [Help]

APPS.JAI_CMN_MTAX_PKG dependencies on MO_GLOBAL

Line 877: 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

873: This would enable the SRS Operating Unit field. User would then be able to select operating unit values related to the
874: security profile.
875: 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
876: to the called procedures/ reports.
877: 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
878: This change has been made many procedures and reports.
879: 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
880: and replaced at all places where p_org_id was being used.
881:

Line 932: ln_org_id := mo_global.get_current_org_id;

928: || Start of bug 5490479
929: || Added by aiyer for the bug 5490479
930: || Get the operating unit (org_id)
931: */
932: ln_org_id := mo_global.get_current_org_id;
933: fnd_file.put_line(fnd_file.log, 'Operating unit ln_org_id is -> '||ln_org_id ||','|| p_from_date||','||p_to_date );
934: /*End of bug 5490479 */
935:
936: /* Ramananda for File.Sql.35 */