DBA Data[Home] [Help]

APPS.FV_UTILITY dependencies on FND_FLEX_EXT

Line 821: l_charge_ccid_segs fnd_flex_ext.segmentarray;

817: l_result BOOLEAN;
818: l_chart_of_accounts_id NUMBER;
819: l_account_segment_num NUMBER;
820: l_no_of_segments NUMBER;
821: l_charge_ccid_segs fnd_flex_ext.segmentarray;
822: l_def_accrual_ccid_segs fnd_flex_ext.segmentarray;
823: l_org_id NUMBER;
824: l_ledger_id NUMBER;
825: l_ledger_name gl_ledgers.name%TYPE;

Line 822: l_def_accrual_ccid_segs fnd_flex_ext.segmentarray;

818: l_chart_of_accounts_id NUMBER;
819: l_account_segment_num NUMBER;
820: l_no_of_segments NUMBER;
821: l_charge_ccid_segs fnd_flex_ext.segmentarray;
822: l_def_accrual_ccid_segs fnd_flex_ext.segmentarray;
823: l_org_id NUMBER;
824: l_ledger_id NUMBER;
825: l_ledger_name gl_ledgers.name%TYPE;
826: l_charge_account_ccid NUMBER;

Line 901: l_result := fnd_flex_ext.get_segments

897: RETURN;
898: END IF;
899:
900: --Get the segments from the po charge ccid
901: l_result := fnd_flex_ext.get_segments
902: (
903: application_short_name => 'SQLGL',
904: key_flex_code => 'GL#',
905: structure_number => l_chart_of_accounts_id,

Line 917: l_result := fnd_flex_ext.get_segments

913: RETURN;
914: END IF;
915:
916: --Get the segments from the default accrual ccid
917: l_result := fnd_flex_ext.get_segments
918: (
919: application_short_name => 'SQLGL',
920: key_flex_code => 'GL#',
921: structure_number => l_chart_of_accounts_id,

Line 938: l_result := fnd_flex_ext.get_combination_id

934: l_charge_ccid_segs(l_account_segment_num) := l_def_accrual_ccid_segs(l_account_segment_num);
935:
936: -- validate this segment combination and get ccid
937: -- flex API will create combination if it does not exist
938: l_result := fnd_flex_ext.get_combination_id
939: (
940: application_short_name => 'SQLGL',
941: key_flex_code => 'GL#',
942: structure_number => l_chart_of_accounts_id,