DBA Data[Home] [Help]

APPS.PA_REV_CA dependencies on FND_CURRENCY

Line 714: to_char(X_revenue_amount,fnd_currency.get_format_mask(l_currency_code,30))

710: -- Event description will show the calculation
711: --
712: /* 2958833 changed get_format_mask call to create mask for 30 char instead of 15 */
713: Event_Description := 'Cost Accrual '|| ' = ' ||
714: to_char(X_revenue_amount,fnd_currency.get_format_mask(l_currency_code,30))
715: || '/ ' ||
716: to_char(X_budget_revenue,fnd_currency.get_format_mask(l_currency_code,30))
717: || ' * '||
718: to_char(X_budget_cost,fnd_currency.get_format_mask(l_currency_code,30))

Line 716: to_char(X_budget_revenue,fnd_currency.get_format_mask(l_currency_code,30))

712: /* 2958833 changed get_format_mask call to create mask for 30 char instead of 15 */
713: Event_Description := 'Cost Accrual '|| ' = ' ||
714: to_char(X_revenue_amount,fnd_currency.get_format_mask(l_currency_code,30))
715: || '/ ' ||
716: to_char(X_budget_revenue,fnd_currency.get_format_mask(l_currency_code,30))
717: || ' * '||
718: to_char(X_budget_cost,fnd_currency.get_format_mask(l_currency_code,30))
719: || ' - ' ||
720: to_char(nvl(X_cost_accrued,0),fnd_currency.get_format_mask(l_currency_code,30));

Line 718: to_char(X_budget_cost,fnd_currency.get_format_mask(l_currency_code,30))

714: to_char(X_revenue_amount,fnd_currency.get_format_mask(l_currency_code,30))
715: || '/ ' ||
716: to_char(X_budget_revenue,fnd_currency.get_format_mask(l_currency_code,30))
717: || ' * '||
718: to_char(X_budget_cost,fnd_currency.get_format_mask(l_currency_code,30))
719: || ' - ' ||
720: to_char(nvl(X_cost_accrued,0),fnd_currency.get_format_mask(l_currency_code,30));
721:
722: --

Line 720: to_char(nvl(X_cost_accrued,0),fnd_currency.get_format_mask(l_currency_code,30));

716: to_char(X_budget_revenue,fnd_currency.get_format_mask(l_currency_code,30))
717: || ' * '||
718: to_char(X_budget_cost,fnd_currency.get_format_mask(l_currency_code,30))
719: || ' - ' ||
720: to_char(nvl(X_cost_accrued,0),fnd_currency.get_format_mask(l_currency_code,30));
721:
722: --
723: -- If the cost accrual is not zero then create the events
724: --

Line 922: to_char(cost_WIP,fnd_currency.get_format_mask(l_currency_code,30));

918: --
919: cost_accrual := -1 * (cost_WIP + cost_accrual_contra);
920: /* 2958833 changed get_format_mask call to create mask for 30 char instead of 15 */
921: Event_Description := 'Closing Balance in Cost WIP = ' ||
922: to_char(cost_WIP,fnd_currency.get_format_mask(l_currency_code,30));
923:
924:
925: l_event_set_id := 'CLOSE-' ||x_project_id||'-'||nvl(x_top_task_id,0)||'-'
926: ||nvl(x_request_id,0);

Line 959: to_char(cost_accrual_contra,fnd_currency.get_format_mask(l_currency_code,30));

955: ||nvl(x_request_id,0);
956:
957: /* 2958833 changed get_format_mask call to create mask for 30 char instead of 15 */
958: Event_Description := 'Closing Balance in CA contra ' ||
959: to_char(cost_accrual_contra,fnd_currency.get_format_mask(l_currency_code,30));
960:
961: --
962: -- Create event to close the cost accrual contra account
963: --

Line 993: to_char(cost_WIP,fnd_currency.get_format_mask(l_currency_code,30))

989: ||nvl(x_request_id,0);
990:
991: /* 2958833 changed get_format_mask call to create mask for 30 char instead of 15 */
992: Event_Description := 'Closing Balance in CA = (-1) * ' ||
993: to_char(cost_WIP,fnd_currency.get_format_mask(l_currency_code,30))
994: || ' + ' ||
995: to_char(cost_accrual_contra,fnd_currency.get_format_mask(l_currency_code,30));
996:
997: pa_billing_pub.insert_event (

Line 995: to_char(cost_accrual_contra,fnd_currency.get_format_mask(l_currency_code,30));

991: /* 2958833 changed get_format_mask call to create mask for 30 char instead of 15 */
992: Event_Description := 'Closing Balance in CA = (-1) * ' ||
993: to_char(cost_WIP,fnd_currency.get_format_mask(l_currency_code,30))
994: || ' + ' ||
995: to_char(cost_accrual_contra,fnd_currency.get_format_mask(l_currency_code,30));
996:
997: pa_billing_pub.insert_event (
998: X_rev_amt => cost_accrual,
999: X_bill_amt => 0,