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
573

hi all,

i am doing an conversion using bapi BAPI_NETWORK_COMP_ADD

can anybody give me table pertaining to network num,ACTIVITY,TYPE_OF_PUR_RESV,ENTRY_QUANTITY,BASE_UOM,

REQ_DATE,MANUAL_REQUIREMENTS_DATE,DELIVERY_DAYS

PUR_GROUP,PURCH_ORG.

Regards,

phani.sista

2 REPLIES 2
Read only

Former Member
0 Likes
511

tables: caufvd, afpod, rc27i, rc27s, tcn41, mtcom, msfcv, mtcor, afvgd,

tcx00, t399x, resbd, afko,

  • resb,

  • rsadd,

affld,proj, prps.

Regards

Prabhu

Read only

Former Member
0 Likes
511

Hi

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

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

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.

Reward points if helpful!

best regards,

Thangesh