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

Project Systems

Former Member
0 Likes
512

hi.....,

i need help regarding project systems basics and transactions pertaining to basics.i need to work on 2 bapis BAPI_PROJECT_MAINTAIN AND BAPI_NETWORK_COMP_ADD.

THIS is for conversion programs.can u please give me help regarding tables and transactions and major part of

project systems.

Regards,

Phani.sista

2 REPLIES 2
Read only

Former Member
0 Likes
429

Hi Phani,

Tables are,

PROJ, PRPS, AFVV, MLTX, AFKO, AFVC, AUFK, AFAB, AFRU, MLST and also JEST.

Transactions,

CJ20N, CN21, CN22, CN23, CN25, CN29 are some of the main transactions and ME2jn will also be used.

Hope this would have helped you.

Cheers,

Prashanth

Read only

Former Member
0 Likes
429

Hi

Please check this link for PS tables perhaps it may help.

http://www.erpgenie.com/sap/abap/tables_ps.htm

For more information on how to use the 2 bapis BAPI_PROJECT_MAINTAIN AND BAPI_NETWORK_COMP_ADD.

kindly check the <b>Function Module Documentation</b> in the SE37.

Kindly check the following BAPIs:

This may help to convert external number to internal SAP number

For example: if the Project number is T/000120, you can give the input as T120.

The below FM will convert the external number to SAP recognised number

* convert external number to internal SAP number
  CALL FUNCTION 'CONVERSION_EXIT_PROJN_INPUT'
       EXPORTING
            input  = projectnumber
       IMPORTING
            output = projectnr.

The below FM is used to get the full info about the project

* get more info of project
  CALL FUNCTION 'BAPI_PROJECT_GETINFO'
       EXPORTING
            project_definition = projectnr
            with_activities    = 'X'
       IMPORTING
            return             = return
       TABLES
            e_wbs_element_table   = wbs_element_table.
            e_activity_table      = activity_table.

Hope this helps!

best regards,

Thangesh