Subledger Accounting / Financials Accounting Hub uses dynamic package to generate the journal entries.
Depending on the rules (AMB Setup and Event Model) the dynamic package will be created, when the Validate Application Accounting Definition program has been run.
The package will be generated with the naming convension XLA_{5DIGIT_APPL_ID}_AAD_{SEED_CUSTOM}_{6DIGIT_AAD_HASH}_PKG.
AAD_HASH value will be found in xla_product_rules_b.product_rule_hash_id.
SELECT 'XLA_' || lpad(application_id,5,'0') || '_AAD_' ||
product_rule_type_code || '_' || lpad(product_rule_hash_id,6,'0') || '_PKG'
FROM xla_product_rules_b
WHERE application_id = &p_appl_id
AND amb_context_code = NVL('&amb_context_code','DEFAULT')
AND product_rule_code = '&aad_code';
Examples for dynamic pakcages:
XLA_00555_AAD_C_011117_PKG
XLA_00200_AAD_S_000012_PKG