Extract in a file all deleted PROJECTS and WBS element

hello everyone,
i need  to create a file wich contain all projects and wbs element  deleted by the transaction CJ20 , but i dont know how to pick those data once someone is trying to delete.
please help.
thank you.

hello everyone,
i need  to create a file wich contain all projects and wbs element  deleted by the transaction CJ20 , but i dont know how to pick those data once someone is trying to delete.
please help.
thank you.

Similar Messages

  • How to find the Project and wbs Element System Status

    Hi all,
      How to find the Project and wbs Element System Status.
      We can find the system status in the CJ20n transaction but I want the table and field name where it is stored.
    Regards
    Raghavendra

    Hi,
    try table <b>jest</b> with key = prps-objnr
    Andreas

  • CJ20N: handle Z table's related to project and wbs element

    Hi there,
    The requirement is to handle Z table for project and wbs element.
    Example:
    ZTAB1 has fields: pspnr | field1 | field2 (for projects)
    ZTAB2 has fields: pspnr | field3 | field4 (for wbs element)
    I found an enhancement that can read z table into internal table, i read it into screen and no problem.
    I use it for wbs element too.
    The problem is when the project has several wbs element's in tree, and the user navigate and change them.
    I can't control the data in internal tables, since the user is swithcing.
    How does the standard sap control the memory from each wbs element and project?
    How can i read and save it separatelly?
    Thanks in advance,
    Edited by: orgasmics on Nov 22, 2010 9:37 PM

    Hi,
    try table <b>jest</b> with key = prps-objnr
    Andreas

  • Locking of  the Project and WBS Elements at a single step.

    Hi Experts,
                    My client requirement is to lock the complete project and wbs elements so as not to allow any further postings to the project, I knew that we can lock the project or WBS individually by setting the lock status, but i want to lock the complete project  at one step, Is there any possible standard setting to sort out my Issue if not give me the solution.
    Thanks & Regards,
    RAM.

    V RAM PRADEEP REDDY wrote:
    it is possible to set a lock for Project Definition & WBS Elements at a single shot or not.
    >
    >
    may be the below explanation will be helpful.
    You can open the project in CJ20N for example and can set the lock for project definition and also you can set the lock for WBS element without saving and exiting from CJ20N, after setting the lock for both project definition and WBS Element you can save and exit.
    It is not possible to select more than one object and set lock with one click.

  • Creating projects and wbs elements

    I am running a conversion and for the upload portion I need to create projects and the relevant wbs elements in the system.  I have been looking over the forums etc and have seen many notes regarding BAPI_BUS2001_SET_STATUS, BAPI_PROJECTDEF_CREATE, and BAPI_PROJECT_MAINTAIN.
    My problem is this.
    I need to update the APPR and PREP system statuses of the projects I create and I can find no way to do this with a BAPI.  I also need to update the location of the project (stort) and the only BAPI I can find that will allow me to do this is BAPI_PROJECT_SAVEREPLICA which seems incorrect to use in this manner.
    in short:
    How do I update project system status of PREP and APPR?
    How do I update project location (stort)?
    Having no luck finding solutions so any help is appreciated.

    Hi,
    I've used these BAPIs but not for your fields. But maybe I can help you. There is no field LOCATION in the project definition but there is field LOCATION on WBS level. So have you tried to change this field on all WBS elements for your project?
    Unfortunately your system statuses are not supported by this BAPI. All supported statuses are mentioned in BAPI documentation. There is a FM STATUS_UPDATE_PROJECT which might help you but you need to be careful what you do. There are some additional FM STATUS_* for generic object status modification but again, you have to be sure that you can set up that system status without any additional checks.
    Good luck

  • BAPI's for creating of Project and WBS elements in SAP system.

    Hi Guys,
                 I was able to use a Wrapper FM for creating the
    We have a FM which combines 5 different BAPIs
    FM/Wrapper: "Z_LEED_PROJ_WBSELEMT_CREATE"
    1)      BAPI_PS_INITIALIZATION
    2)      BAPI_BUS2001_CREATE
    3)      BAPI_BUS2054_CREATE_MULTI
    4)      BAPI_PS_PRECOMMIT
    5)      BAPI_TRANSACTION_COMMIT
    Requirement: To automate the process of creation of Project and WBSE(Tasks) and create an entries in the PS tables based on the user inputs from the user interface in Visual Composer.
    Basically user should be able to create the Projects and WBSE.
    Issue: We were able to create the Project with the FM (BAPI_BUS2001_CREATE) but having the issue with the creation of WBSE(Tasks), the user will be entering the inputs for Project Definition, Project Profile and WBSE which are to be created in the UI.
    The problem is we are not able to create the WBS elements using  BAPI     BAPI_BUS2054_CREATE_MULTI .i will send u the code below .Can anybody correct
       CLEAR it_return.
      CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
        EXPORTING
          I_PROJECT_DEFINITION = i_project_definition-project_definition
        TABLES
          IT_WBS_ELEMENT = it_wbs_element
          ET_RETURN = it_return.
      APPEND LINES OF it_return[] TO et_return[].
    Thanks,
    Gopi.

    Hi Ramiro,
                   This is the entire FM code which is below.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_PROJECT_DEFINITION) LIKE  BAPI_BUS2001_NEW STRUCTURE
    *"        BAPI_BUS2001_NEW
    *"  TABLES
    *"      IT_WBS_ELEMENT STRUCTURE  BAPI_BUS2054_NEW
    *"      ET_RETURN STRUCTURE  BAPIRET2 OPTIONAL
    *"      EXTENSIONIN STRUCTURE  BAPIPAREX OPTIONAL
    *"      EXTENSIONOUT STRUCTURE  BAPIPAREX OPTIONAL
      DATA: it_return LIKE STANDARD TABLE OF BAPIRET2 WITH HEADER LINE,
            v_error TYPE boolean VALUE IS INITIAL.
      CLEAR: et_return, it_return.
      CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
    Do checks for creating project definition
      CALL FUNCTION 'BAPI_BUS2001_CREATE'
        EXPORTING
          I_PROJECT_DEFINITION = i_project_definition
        TABLES
          ET_RETURN = it_return.
      APPEND LINES OF it_return[] TO et_return[].
      LOOP AT it_return.
        IF it_return-type CA 'EAX'.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          v_error = 'X'.
          EXIT.
        ENDIF.
      ENDLOOP.
      IF v_error = 'X'.
        EXIT.
      ENDIF.
    Do checks for creating WBS elements
      CLEAR it_return.
      CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
        EXPORTING
          I_PROJECT_DEFINITION = i_project_definition-project_definition
        TABLES
          IT_WBS_ELEMENT = it_wbs_element
          ET_RETURN = it_return.
       APPEND LINES OF it_return[] TO et_return[].
      LOOP AT it_return.
        IF it_return-type CA 'EAX'.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          v_error = 'X'.
          EXIT.
        ENDIF.
      ENDLOOP.
      IF v_error = 'X'.
        EXIT.
      ENDIF.
      CALL FUNCTION 'BAPI_PS_PRECOMMIT'
        TABLES
          ET_RETURN = it_return.
       APPEND LINES OF it_return[] TO et_return[].
      LOOP AT it_return.
        IF it_return-type CA 'EAX'.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          v_error = 'X'.
          EXIT.
        ENDIF.
      ENDLOOP.
      IF v_error = 'X'.
        EXIT.
      ENDIF.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          WAIT = 'X'.
    ENDFUNCTION.
      can u please look at the code and let me know the changes?
    Thanks,
    Gopi.

  • Grey field for project definition and WBS element

    Dear all,
    I have created a project and WBS element in CJ01. Now I go via CJ02 to the change mode and the project ID and WBS element ID is not greyed out. But I would like that the system shows these key fields as not changeable anymore, only fields like description should be changable. Can you please tell me, which customizing step I missed to get the grey field for project ID/WBS element ID?
    FYI  I do not use a project mask to create the project.
    Thanks for your answer.
    Heidi

    Hi Heidi ,
    I don't think you can grey out the Project Definition and the WBS Element fields after the creation .
    If you want to restrict the users to change the Proj definition and WBS , a better way is through
    Authorization objects and restricting only specified users to change the WBS
    Kish

  • Standard network not creating project and WBS automatically

    Hi,
    I have a standard network with a standard WBS assignment at BOTH header and activity levels.
    I created a link to a material in CN08 with this standard network.
    Assembly processing has been configured.
    When creating a sales order, entering the material... the network create screen appears and the system requests a WBS element.
    At this point the system should have created the WBS element.
    When I insert an existing active WBS element as a test..., the system message indicates that the network is already assigned to a Std WBS element.
    Why is the system not using this assignment to create a project and WBS element form the standard structure?
    Thanks

    Hi,
    As a test...
    I've removed the linking of the material and standard network in CN08 - and the system now displayed a screen asking for standard network details.
    I create the material and standard network link again in CN08 - and I'm back to the original issue of the network create screen appearing, but the WBS field is blank. The system is not generating the WBS.
    So - the system is recognizing the link of the material entered in the sales order and the standard network via CN08. But its not using the Standard WBS used in the standard network AND CN08 setup....
    Note: The Std WBS has the planning and  billing indicator ticked.
    Once again, when creating the sales order, I get the network create screen asking for a WBS element. If I insert an existing WBS element I get the message below. The issue is - I know the standard WBS assignment exists, why isn't the system generating a new operative WBS at this point?
    An assignment to a standard WBS element already exists
    Message no. CN044
    Diagnosis
    You have created a network by copying from a standard network. The standard network is assigned to a standard WBS.
    However, at the same time, you have made your own assignments to WBS elements.
    System Response
    When you manually make assignments to WBS elements, the system does not necessarily take the asignments in the standard stuctures into account.
    Procedure
    When you call up the function replace standard WBS or when you save the network you decide whether the manually created WBS assignments or those fronm the standard structures are copied.

  • In my computer some of the iTunes files got deleted accidently and I couldn't reinstall it . Evrytime I try torun setup file  I am getting this error message "C:\Users\Rif\AppData\Local\Apple\Apple Software Update\" ,appreciate if anyone can help me on th

    In my computer some of the iTunes files got deleted accidently and I couldn't reinstall it . Evrytime I try torun setup file  I am getting this error message"C:\Users\Rif\AppData\Local\Apple\Apple Software Update\" ,appreciate if anyone can help me on this pls?

    Even after deleting all files and folders from hard drive i am still getting this error!!

  • Decompiling Class Files, re-building project and redeploying

    Hi
    I need to make changes to an existing customized iview.
    I have downloaded the par file, but src.core is empty.
    I have then downloaded the jar file which I proceeded to decompile with DJ Java Decompiler.
    Pls can somebody explain to me how I now include these files into a project and rebuild the par file so that I can make changes and test.
    thanks in advance
    Anton Kruse

    hi,
    Check the par file structure here:
    http://help.sap.com/saphelp_nw70/helpdata/en/bb/1bb8428e05c86ae10000000a155106/frameset.htm
    You have jar file in folders:
    lib -- Contains all application library files (JAR) that can be referenced by other portal applications
    private/lib -- Contains all application library files (JAR) that are used exclusively by the application.
    So all <b>src.api</b> classes are put in <b>lib</b> folder, and src.core into private/lib.
    If you are decompiling a jar, you should check from where you got it. (<b>lib</b> or <b>private/lib</b>). So place it back from where you took it.
    Greetings,
    Praveen Gudapati

  • When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    When i look at how much hard drive space i have available, my mac says i have 250 gigs used up in backup.  I can not find this backup file to delete it and free up the space

    OmniDiskSweeper is a free utility that checks HD space.
    FreeSpace cost $1 or is a free utility that checks HD space.
    SpaceControl is a free utility that checks HD space.

  • What are the steps to restore all deleted data and settings by remote wipe? Thanks.

    What are the steps to restore all deleted data and settings by Remote wipe?

    Go to me.com, logon and go to the FindMyiPhone. If it does not appear then there is not much you can do.
    Next step would be to appleid.apple.com and change your password to cut off access to your iDisk.

  • How to block reusage of archived Project definition and WBS element numbers

    Dear All,
    We have archived our projects using the TC SARA and the Project definition and WBS elements numbers no more exist in tables PROJ and PRPS etc.. When I now try to create a new project, the system proposes the next open number or allows to enter a number which is the same as one of the archived projects. But in our organization we cannot reuse the Project definition and WBS element numbers (even if it is archived) as a rule.
    Can anybody guide me what are the possibilities to block or avoid the reusage of the numbers of archived project definition and WBS elements in a fool-proof way? 
    Thanks and regards

    One Workaround:
    Use T code OPSJ and lock the project coding mask. Doing this you can not use this mask any more.
    But you want to continue using the mask but with different numbers. Not sure how this can be acheived. lets wait for others view
    Regards
    Sreenivas

  • How to do budgeting at activity level and WBS element level in project syst

    Dear GURU's,
    Can any one please suggest me how to do budgeting at activity level and WBS element level in project systems, friends please I required set by step process.
    I need how to do this configuration to map this scenario.
    Regards,
    Bhanu

    Hi Bhanu,
    Use this link :
    http://help.sap.com/saphelp_45b/helpdata/en/86/98853478616434e10000009b38f83b/frameset.htm
    after page opens , click on BUDGET MANAGEMENT , There you will find each and every step you want .
    Thanks ,
    Dhruv Kumar Malhotra

  • Creation of project definition and wbs element

    I want creation of project definition and wbs element upto 4 level using bapis.
    i am using transaction cj27,cj01,cj02
    which function module to use for this??

    Hi,
    to create project definition with customer fields the BAPI you should use is : BAPI_BUS2001_CREATE
    to create WBS elements with different levels and specific fields the BAPI you should use is BAPI_BUS2054_CREATE_MULTI
    these bapi must be used in the sequence of call :
    BAPI_PS_INITIALIZATION
    BAPI_BUS2001_CREATE / BAPI_BUS2054_CREATE_MULTI
    BAPI_PS_PRECOMMIT
    BAPI_TRANSACTION_COMMIT
    before using the bapi, you must apply OSS note :
    637345 - Syntax error with enhanced PS tables
    i sent you the oss note to your mail
    please reward points if helpfull.

Maybe you are looking for

  • Display issue in car with 3.1

    Prior to upgrading to 3.1, when I used my iPhone in the car to play music, I noticed the following (the iPhone is connected to a Kensington LiquidAux, which provides charging and an output to to aux-in jack in the car): - when I start playing music,

  • I can't install Itunes 11.1.2 on Windows, Error Code 2324

    I connected my iPhone 4S to my Windows 7 Computer to synch my music. My older iTunes said that i have to update to 11.1.2. So i tried to update it with the apple software updater 4 times, but it did not work. i also tried to load the files only and t

  • Some problems with servlet.jar and tomcat 4.1.27

    Hello everybody, I used to work with tomcat 3.3.1 and i've decided to use tomcat 4.1.27 now. The manual explains that we have to change de version of servlet.jar, it's done with servlet-2.3.jar but on tomcat starting i have this message: jar not load

  • Apple TV Black Screen Unless I Reset

    Hi, I've been using a Gen2 apple tv for years and got a Gen3 for my parents for Christmas.  I set it up on their TV and everything worked fine.  After turning it off so I could show my parents how to use it, the light lit up on the front (stayed lit)

  • I can send mail but can't receive mail on thunderbird

    I am using Thunderbird since 2 years ago and im getting a new problem. I can send mail but cant receive any mail . When pressed GET mail i receive 'connecting to mail.gandi.net' only. that's all. Can you please help. below is my troubleshoot informat