DBA Data[Home] [Help]

APPS.CSTPACDP dependencies on CST_ITEM_COSTS_FOR_GL_VIEW

Line 7589: FROM cst_item_costs_for_gl_view

7585: | Get act_cost and item_cost. It is used only in AX code
7586: +----------------------------------------------------------------------*/
7587: SELECT decode(act_cost, 0, nvl(item_cost,0), act_cost), nvl(item_cost, 0)
7588: INTO act_cost, item_cost
7589: FROM cst_item_costs_for_gl_view
7590: WHERE inventory_item_id = item_id
7591: AND organization_id = org_id;
7592:
7593: fnd_file.put_line(fnd_file.log, 'act_cost: ' || act_cost || ' item_cost: ' || item_cost);