DBA Data[Home] [Help]

APPS.JL_CO_FA_ACCOUNTING_PKG dependencies on FND_FLEX_EXT

Line 922: x_delimiter := fnd_flex_ext.get_delimiter (x_apps_short_name,

918: -----------------------------------------------------------------------------
919: -- Get character used as delimiter to show accounting flexfield --
920: -----------------------------------------------------------------------------
921:
922: x_delimiter := fnd_flex_ext.get_delimiter (x_apps_short_name,
923: x_key_flex_code,
924: x_chart_of_accounts_id
925: );
926:

Line 4868: x_segs FND_FLEX_EXT.SegmentArray ;

4864: p_account_segment OUT NOCOPY VARCHAR2
4865: )
4866: IS
4867: x_num_segs NUMBER ;
4868: x_segs FND_FLEX_EXT.SegmentArray ;
4869: x_dummy BOOLEAN ;
4870:
4871: BEGIN
4872:

Line 4877: x_dummy := fnd_flex_ext.get_segments (p_apps_short_name,

4873: ------------------------------------------------------------------------
4874: -- Get required segments from distribution line CCID --
4875: ------------------------------------------------------------------------
4876:
4877: x_dummy := fnd_flex_ext.get_segments (p_apps_short_name,
4878: p_key_flex_code,
4879: p_chart_of_accounts_id,
4880: p_account_ccid,
4881: x_num_segs,

Line 4921: x_segs FND_FLEX_EXT.SegmentArray ;

4917: p_error_ccid IN OUT NOCOPY BOOLEAN
4918: )
4919: IS
4920: x_num_segs NUMBER ;
4921: x_segs FND_FLEX_EXT.SegmentArray ;
4922: x_flexfield VARCHAR2 (2000);
4923: x_dummy BOOLEAN ;
4924:
4925:

Line 4932: x_dummy := fnd_flex_ext.get_segments (p_apps_short_name,

4928: ------------------------------------------------------------------------
4929: -- Get required segments from distribution line CCID --
4930: ------------------------------------------------------------------------
4931:
4932: x_dummy := fnd_flex_ext.get_segments (p_apps_short_name,
4933: p_key_flex_code,
4934: p_chart_of_accounts_id,
4935: p_account_ccid,
4936: x_num_segs,

Line 4950: x_dummy := fnd_flex_ext.get_combination_id (p_apps_short_name,

4946: ------------------------------------------------------------------------
4947: -- Find or generate the CCID for the new accounting flexfield --
4948: ------------------------------------------------------------------------
4949:
4950: x_dummy := fnd_flex_ext.get_combination_id (p_apps_short_name,
4951: p_key_flex_code,
4952: p_chart_of_accounts_id,
4953: sysdate,
4954: x_num_segs,

Line 4959: x_flexfield := fnd_flex_ext.concatenate_segments (x_num_segs,

4955: x_segs,
4956: p_returned_ccid
4957: );
4958: IF (x_dummy = FALSE) then
4959: x_flexfield := fnd_flex_ext.concatenate_segments (x_num_segs,
4960: x_segs,
4961: p_delimiter
4962: );
4963: fnd_message.set_name ('JL', 'JL_CO_FA_CCID_NOT_CREATED');