DBA Data[Home] [Help]

APPS.CSTPACDP dependencies on CST_ITEM_COSTS_FOR_GL_VIEW

Line 7788: FROM cst_item_costs_for_gl_view

7784: | Get act_cost and item_cost. It is used only in AX code
7785: +----------------------------------------------------------------------*/
7786: SELECT decode(act_cost, 0, nvl(item_cost,0), act_cost), nvl(item_cost, 0)
7787: INTO act_cost, item_cost
7788: FROM cst_item_costs_for_gl_view
7789: WHERE inventory_item_id = item_id
7790: AND organization_id = org_id;
7791:
7792: fnd_file.put_line(fnd_file.log, 'act_cost: ' || act_cost || ' item_cost: ' || item_cost);