Query to identify the Product Rule for Receivables in XLA tables
Im trying to figure out the SLAM for Receivable application is configured as MF or not ?
Will the product_rule_code column in below query help me identity if the system is configured as MF or NOT ?
Thanks,
SELECT DISTINCT gl.ledger_id, slam.accounting_method_code, slam.product_rule_code, slam.start_date_active, slam.end_date_active
FROM gl_ledgers gl,
xla_acctg_method_rules slam
WHERE gl.sla_accounting_method_code = slam.accounting_method_code AND slam.application_id = 222;