Application Development and Automation 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: 
Read only

Urgent help.

Former Member
0 Likes
453

Hi Folks,

Please let me know the Database table in which the Cost related data of Maintenance order is stored.

Or plese give me some procedure or function module used to retrive this information from the work order.

The exact information i need is the Actual cost.

In transaction iw33 you can see it under cost tab.

Useful answers are rewarded.

Thanks

Kiran

Hi Folks,

Please let me know the Database table in which the Cost related data of Maintenance order is stored.

Or plese give me some procedure or function module used to retrive this information from the work order.

The exact information i need is the Actual cost.

In transaction iw33 you can see it under cost tab.

Useful answers are rewarded.

Thanks

Kiran

3 REPLIES 3
Read only

Former Member
0 Likes
431

Hi,

Use BAPI_PROJECT_GETINFO with E_ACTIVITY_TABLE table Actual/Planned cost field is there.

Regards,

Satish

Read only

0 Likes
431

Thanks for your quick reply....

please let me know the required input parameters to be passed to this FM inorder to get the desired output?

Read only

0 Likes
431

hi,

reuired input will be for example :

1 ) project_definition-project_definition, Key that identifies a project definition.

2) return , Return code witrh error messages.

3) WBS_HIERARCHIE_TABLE ,You transfer information about the WBS hierarchy in this table

CALL FUNCTION 'BAPI_PROJECT_GETINFO'
EXPORTING
PROJECT_DEFINITION = PROJECT_DEFINITION-PROJECT_DEFINITION
IMPORTING
RETURN = RETURN
TABLES
E_WBS_HIERARCHIE_TABLE = WBS_HIERARCHIE_TABLE.

in order to obtain hierarchy from already existing project. Then you can look at WBS_HIERARCHIE_TABLE to see how to create your own hierarchy...

regards

Anup.