Hi all,
I'm trying desperately to delete a project system by executing a specific program.
I found out BAPI on an another post :
BAPI_PS_INITIALIZATION
BAPI_BUS2001_DELETE "delete project definition
BAPI_PS_PRECOMMIT
BAPI_TRANSACTION_COMMIT
This sequence of BAPI is working only for project definition but not for a project with wbs element (level 1, 2, 3 and 4) and networks
then, i did find out two another BAPI :
BAPI_BUS2054_DELETE_MULTI "delete WBS element
BAPI_BUS2002_DELETE "delete networks
I'm wondering if I need to sort the BAPI ? I mean, do I need to delete first the project definition, and the WBS element and the networks ? like the sequence as follow :
BAPI_PS_INITIALIZATION
BAPI_BUS2001_DELETE "delete project definition
BAPI_BUS2054_DELETE_MULTI "delete WBS element
BAPI_BUS2002_DELETE "delete networks
BAPI_PS_PRECOMMIT
BAPI_TRANSACTION_COMMIT
thx for your help