‎2006 Aug 29 11:33 AM
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
‎2006 Aug 29 11:38 AM
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
‎2006 Aug 29 11:59 AM
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