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

BAPI_PROJECT_MAINTAIN

former_member569532
Participant
0 Likes
2,254

Hi Experts,

I have a requirement to update the custom screen in CJ01/CJ02/CJ03.We have a custom program to create WBS element using BAPI_PROJECT_MAINTAIN.I need to update these custom fields along with the existing fields.But there is no extensionin structure in BAPI_PROJECT_MAINTAIN.Kindly anyone suggest how to update custom fields using BAPI.

Thanks & Regards,

Anusha

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,606

Hi,

Can you please check BAPI_BUS2001_CHANGE.

Regards,

Naveen Kumar.

4 REPLIES 4
Read only

sabirshah1
Participant
0 Likes
1,606

Hi,



you can go for BAPI extension but thing is that BAPI_PROJECT_MAINTAIN doesn't contain any extension so you can go for BAPI_BUS2054_CREATE_MULTI. I think this will help in solving your problem.

Read only

0 Likes
1,606

CALL FUNCTION 'BAPI_PROJECT_MAINTAIN'

         EXPORTING

           i_project_definition       = gwa_proj_def

           i_project_definition_upd   = gwa_proj_def_upd

         IMPORTING

           return                     = gwa_return

         TABLES

           i_method_project           = gt_methods

           i_wbs_element_table_update = gt_wbs_ele_upd

           i_wbs_element_table        = gt_wbs_ele

           i_wbs_hierarchie_table     = gt_wbs_hier

           e_message_table            = gt_messages.

But BAPI_BUS2054_CREATE_MULTI does  not have all the above tables


Read only

Former Member
0 Likes
1,607

Hi,

Can you please check BAPI_BUS2001_CHANGE.

Regards,

Naveen Kumar.

Read only

0 Likes
1,606

Hi,

AI have found the answer BAPI_BUS2054_CHANGE_MULTI

Rgds,

Anusha