Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Planned costs calculation in IW33 tcode

Former Member
0 Kudos

Hi,

I want to know how does the planned cost is calculated in IW33 tcode.Is there any FM or BAPI?

Thanks.

1 ACCEPTED SOLUTION

jogeswararao_kavala
Active Contributor
0 Kudos
  • You can get from table PMCO.

          Input

          The  OBJNR  value of Order number (You'd get it from AUFK table) and  in field  WRTTP  value '1'.

          Output:

          The Plan cost will be available in field WRT03 if your Order date is in June.

          (Similarly WRT01 for April , WRT02 for May  and so on upto WRT12 is for March costs).

  • Function modules:
    • IBAPI_ALM_ORDERCOSTS_READ   (This is good)
    • PM_WORKORDER_COSTS_MAINTENANCE
    • PM_WORKORDER_COSTS_LIST
2 REPLIES 2

jogeswararao_kavala
Active Contributor
0 Kudos
  • You can get from table PMCO.

          Input

          The  OBJNR  value of Order number (You'd get it from AUFK table) and  in field  WRTTP  value '1'.

          Output:

          The Plan cost will be available in field WRT03 if your Order date is in June.

          (Similarly WRT01 for April , WRT02 for May  and so on upto WRT12 is for March costs).

  • Function modules:
    • IBAPI_ALM_ORDERCOSTS_READ   (This is good)
    • PM_WORKORDER_COSTS_MAINTENANCE
    • PM_WORKORDER_COSTS_LIST

0 Kudos

Thanks a lot Jogeswara.

I used IBAPI_ALM_ORDERCOSTS_READ.