DBA Data[Home] [Help]

APPS.INL_TAX_PVT dependencies on FND_GLOBAL

Line 832: fnd_global.user_id , /* 17 */

828: l_tax_ln_tbl(i).currency_conversion_type, /* 13 */
829: l_tax_ln_tbl(i).currency_conversion_date, /* 14 */
830: l_tax_ln_tbl(i).currency_conversion_rate, /* 15 */
831: l_tax_ln_tbl(i).tax_amt_included_flag , /* 16 */
832: fnd_global.user_id , /* 17 */
833: SYSDATE , /* 18 */
834: fnd_global.user_id , /* 19 */
835: SYSDATE , /* 20 */
836: fnd_global.login_id /* 21 */

Line 834: fnd_global.user_id , /* 19 */

830: l_tax_ln_tbl(i).currency_conversion_rate, /* 15 */
831: l_tax_ln_tbl(i).tax_amt_included_flag , /* 16 */
832: fnd_global.user_id , /* 17 */
833: SYSDATE , /* 18 */
834: fnd_global.user_id , /* 19 */
835: SYSDATE , /* 20 */
836: fnd_global.login_id /* 21 */
837: );
838: --Inserting record in INL_ASSOCIATIONS

Line 836: fnd_global.login_id /* 21 */

832: fnd_global.user_id , /* 17 */
833: SYSDATE , /* 18 */
834: fnd_global.user_id , /* 19 */
835: SYSDATE , /* 20 */
836: fnd_global.login_id /* 21 */
837: );
838: --Inserting record in INL_ASSOCIATIONS
839: l_debug_info := 'Inserting record in INL_ASSOCIATIONS';
840: INL_LOGGING_PVT.Log_Statement (

Line 871: fnd_global.user_id , /* 09 */

867: l_tax_ln_tbl(i).to_parent_table_name , /* 05 */
868: l_tax_ln_tbl(i).to_parent_table_id , /* 06 */
869: 'VALUE' , /* 07 */
870: null , /* 08 */
871: fnd_global.user_id , /* 09 */
872: SYSDATE , /* 10 */
873: fnd_global.user_id , /* 11 */
874: SYSDATE , /* 12 */
875: fnd_global.login_id /* 13 */

Line 873: fnd_global.user_id , /* 11 */

869: 'VALUE' , /* 07 */
870: null , /* 08 */
871: fnd_global.user_id , /* 09 */
872: SYSDATE , /* 10 */
873: fnd_global.user_id , /* 11 */
874: SYSDATE , /* 12 */
875: fnd_global.login_id /* 13 */
876: );
877: END LOOP;

Line 875: fnd_global.login_id /* 13 */

871: fnd_global.user_id , /* 09 */
872: SYSDATE , /* 10 */
873: fnd_global.user_id , /* 11 */
874: SYSDATE , /* 12 */
875: fnd_global.login_id /* 13 */
876: );
877: END LOOP;
878: END IF;
879:

Line 1877: ,fnd_global.user_id

1873: ,curTax.tax_currency_conversion_type
1874: ,curTax.tax_currency_conversion_date
1875: ,curTax.tax_currency_conversion_rate
1876: ,curTax.tax_amt_included_flag
1877: ,fnd_global.user_id
1878: ,SYSDATE
1879: ,fnd_global.user_id
1880: ,SYSDATE
1881: ,fnd_global.login_id

Line 1879: ,fnd_global.user_id

1875: ,curTax.tax_currency_conversion_rate
1876: ,curTax.tax_amt_included_flag
1877: ,fnd_global.user_id
1878: ,SYSDATE
1879: ,fnd_global.user_id
1880: ,SYSDATE
1881: ,fnd_global.login_id
1882: );
1883: -----------------------------------------------------------------

Line 1881: ,fnd_global.login_id

1877: ,fnd_global.user_id
1878: ,SYSDATE
1879: ,fnd_global.user_id
1880: ,SYSDATE
1881: ,fnd_global.login_id
1882: );
1883: -----------------------------------------------------------------
1884: l_debug_info := 'Step 6b: Persisting zl.tax_code(Associations): '||curTax.tax_code||' zl.tax_line_id:'||curTax.tax_line_id;
1885: -- logging message

Line 1916: ,fnd_global.user_id /* 09 */

1912: ,curTax.source /* 05 */
1913: ,curTax.trx_line_id /* 06 */
1914: ,l_allocation_basis /* 07 */
1915: ,l_allocation_uom_code /* 08 */
1916: ,fnd_global.user_id /* 09 */
1917: ,SYSDATE /* 10 */
1918: ,fnd_global.user_id /* 11 */
1919: ,SYSDATE /* 12 */
1920: ,fnd_global.login_id); /* 13 */

Line 1918: ,fnd_global.user_id /* 11 */

1914: ,l_allocation_basis /* 07 */
1915: ,l_allocation_uom_code /* 08 */
1916: ,fnd_global.user_id /* 09 */
1917: ,SYSDATE /* 10 */
1918: ,fnd_global.user_id /* 11 */
1919: ,SYSDATE /* 12 */
1920: ,fnd_global.login_id); /* 13 */
1921: END LOOP;
1922: UPDATE inl_ship_lines

Line 1920: ,fnd_global.login_id); /* 13 */

1916: ,fnd_global.user_id /* 09 */
1917: ,SYSDATE /* 10 */
1918: ,fnd_global.user_id /* 11 */
1919: ,SYSDATE /* 12 */
1920: ,fnd_global.login_id); /* 13 */
1921: END LOOP;
1922: UPDATE inl_ship_lines
1923: SET tax_already_calculated_flag = 'Y',
1924: last_updated_by = fnd_global.user_id,

Line 1924: last_updated_by = fnd_global.user_id,

1920: ,fnd_global.login_id); /* 13 */
1921: END LOOP;
1922: UPDATE inl_ship_lines
1923: SET tax_already_calculated_flag = 'Y',
1924: last_updated_by = fnd_global.user_id,
1925: last_update_date = SYSDATE
1926: WHERE ship_header_id = p_ship_header_Id;
1927:
1928: UPDATE inl_charge_lines

Line 1930: last_updated_by = fnd_global.user_id,

1926: WHERE ship_header_id = p_ship_header_Id;
1927:
1928: UPDATE inl_charge_lines
1929: SET tax_already_calculated_flag = 'Y',
1930: last_updated_by = fnd_global.user_id,
1931: last_update_date = SYSDATE
1932: WHERE NVL(parent_charge_line_id,charge_line_id) IN (SELECT assoc.from_parent_table_id
1933: FROM inl_associations assoc
1934: WHERE assoc.from_parent_table_name = 'INL_CHARGE_LINES'