Query to find open Inventory Periods for Month End Closure
SELECT organization_code
FROM org_acct_periods oap, org_organization_definitions ood
WHERE oap.organization_id = ood.organization_id
AND oap.period_name = 'Dec-20'
AND oap.open_flag = 'Y'
AND organization_code IN ('XXX');
Comments
Post a Comment