‎2006 Sep 06 11:55 AM
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
‎2006 Sep 06 11:59 AM
tables: caufvd, afpod, rc27i, rc27s, tcn41, mtcom, msfcv, mtcor, afvgd,
tcx00, t399x, resbd, afko,
resb,
rsadd,
affld,proj, prps.
Regards
Prabhu
‎2006 Sep 06 12:24 PM
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