DBA Data[Home] [Help]

APPS.CSTPLENG dependencies on GL_CODE_COMBINATIONS_KFV

Line 474: from gl_code_combinations_kfv

470: elsif (i_txn_src_type = 3) then
471: /* Account, use Account # */
472: select concatenated_segments
473: into l_src_number
474: from gl_code_combinations_kfv
475: where code_combination_id = i_src_id;
476: elsif (i_txn_src_type = 5) then
477: /* job or Schedule, use Job name */
478: select wip_entity_name

Line 486: from gl_code_combinations_kfv

482: elsif (i_txn_src_type = 6) then
483: /* Account alias, use account number */
484: select concatenated_segments
485: into l_src_number
486: from gl_code_combinations_kfv
487: where code_combination_id = (select distribution_account
488: from mtl_generic_dispositions
489: where disposition_id = i_src_id);
490: elsif (i_txn_src_type = 7) then

Line 524: from gl_code_combinations_kfv

520: elsif (i_txn_src_type = 13) then
521: /* Inventory, use distribution account ID */
522: select concatenated_segments
523: into l_src_number
524: from gl_code_combinations_kfv
525: where code_combination_id = (select
526: nvl(mmt.distribution_account_id,mmt.transaction_source_id)
527: from mtl_material_transactions mmt
528: where transaction_id = i_txn_id);