Project/WBS element documents - in CJ20N

Hello everybody,
I have a requirement to implement documents into PS module.
The tasks are:
1) attach document to proj. definitioon/wbs element
2) select the right document from list of templates
3) automatically fill in the data
4) possibility od manual change - mainly in CJ20N
5) verisons & statuses
I have in my mind three possible solutions, but as I've never done that before, I can't decide which one will satisfy my needs.
a) Documents assigned to WBS element (cv01n can create such a document - I don't know how to maintein them)
b) Somehow connect documents from Business document navigator (OAOR transaction)
c) Somehow connect Smartforms to definition/wbs element
Can anyone give me an overview and/or the way how to accomplish this task?
Thanks for any suggestions.
Petr

Hi, Thanks for your reply.
Two questions:
1) How do I connect it to the CJ20N (project Builder) to be able to change the document over there
2) Can I put there fields of the generated document, which I must fill manually (keyboard) - because the information can't be retrieved from the system
Thanks
Petr

Similar Messages

  • Assign Project / WBS Element in Notification

    Hi,
    I have one specific requirement from my client that, the Project / WBS element number (created under PS Module) whould be used as reference object in same way as that when Purchase Order & Material document is refered.
    How can I achieve this?
    Regards,
    Prashant

    Hi  Prashant,
    I don't think there is a standard solution for this. You need to develop the solution with the help of Abaper.
    Regards
    Srini

  • Problem opening Project/WBS Elements in CJ03

    Hi Experts,
    I have created an interface which posts PROJECT01 Idocs into SAP 6.0. Idocs are posted successfully and I can see Projects/WBS elements in tables PROJ and PRPS.
    However, when I try to open a project/wbs through transaction CJ03, it throws short dump mentioning memory overflow. I checked by debugging CJ03 and found that the code is going into infinite loop.
    Could anyone help me understand why this kind of problem is coming? What is the reason the code is going into infinite loop? If the project/wbs structure is not getting created properly, how can I check that?
    Thanks in advance.
    Netrey

    The issue is resolved. The structure coming throug Idoc itself was incorrect.

  • Problem in MRP run with Project/WBS Element

    Dear PP Gurus,
    I want to run MRP thro Project/WBS Element.
    I have created WBS Element & WBS BOM for Material. Then created sales order for that material and assign WBS element to sales order.
    Maintain Planning Strategy 21 ( Make to Order/Project) for Main Mtl.
    Now when I run MRP with MD51 then no requriements are generated for main material and its components.
    Is there any thing missing from PS-PP & SD point of view?
    Pl guide me for the same.
    Thanks in Advance.
    Umesh

    Dear Nagrajan,
    Thanks for your reply.
    There is no safety stock & un-restricted stock of that material.
    Also I don't want to assign this mtl to that wbs Network. If I assign the Material to WBS network then network req.is generated and thro Normal MD02 MRP generates the requirements.
    & in the plan order it will not show WBS Element
    But My req. is I want to run MRP with  MD51 & want WBS element as account asignment tab in plan order & production order too.
    IS there any config. missing from PP/ PS / SD ?
    Pl guide me for the same.
    Thanks ,
    Umesh

  • Runtime Error Project/WBS Element

    Hello,
    I am getting a Runtime error (statement message 'E') every time i search in the match code for either a Project or a WBS Element, regardless of what transaction they appear in.
    Can anyone help me with this?
    Stephen

    Did you make any changes to the project coding masks? This error could happen as result in changes to the mask. Project numbers which were valid as per earlier masks may not be fit as per new masks.
    If above is a reason implement the note 453280 - Conflicting coding mask and project/WBS element
    Regards
    Sreenivas

  • Call WBS element screen in cj20n

    I am attempting to call trans. CJ20N when user clicks on a particulart WBS elements or project in an ALV report. If the user clicks on WBS element, CJ20N should open with that WBS elements selected. If the user clicks on project, CJ20N should open with that project. Can anyone tell me how i can pass the selected parameter to CJ20N.

    Hi ,
    Please find the below code for Project and WBS display . This should work . Please use your project number and WBS number at places highlighted below in RED.
    For Project :
       DATA: bdcdata_wa  TYPE bdcdata,
                  bdcdata_tab TYPE TABLE OF bdcdata.
       DATA opt TYPE ctu_params.
      CLEAR bdcdata_wa.
      bdcdata_wa-program  = 'SAPLCNPB_M'.
      bdcdata_wa-dynpro   =  '1000'.
      bdcdata_wa-dynbegin = 'X'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_OKCODE'.
      bdcdata_wa-fval = '=OPEN'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_CURSOR'.
      bdcdata_wa-fval = 'PROJ-PSPID'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-program  = 'SAPLCNPB_W'.
      bdcdata_wa-dynpro   =  '0900'.
      bdcdata_wa-dynbegin = 'X'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_CURSOR'.
      bdcdata_wa-fval =  'CNPB_W_ADD_OBJ_DYN-PROJ_EXT'.
      APPEND bdcdata_wa TO bdcdata_tab.
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_OKCODE'.
      bdcdata_wa-fval =  '=OK'.
      APPEND bdcdata_wa TO bdcdata_tab .
       CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'CNPB_W_ADD_OBJ_DYN-PROJ_EXT'.
      bdcdata_wa-fval = 'XXXXXXXXXX'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-program  = 'SAPLCNPB_M'.
      bdcdata_wa-dynpro   =  '1000'.
      bdcdata_wa-dynbegin = 'X'.
      APPEND bdcdata_wa TO bdcdata_tab .
      opt-dismode = 'E'.
      opt-defsize = 'X'.
      CALL TRANSACTION 'CJ20N' USING bdcdata_tab OPTIONS FROM opt.
    For WBS Element:
    DATA: bdcdata_wa  TYPE bdcdata,
                bdcdata_tab TYPE TABLE OF bdcdata.
    DATA opt TYPE ctu_params.
      CLEAR bdcdata_wa.
      bdcdata_wa-program  = 'SAPLCNPB_M'.
      bdcdata_wa-dynpro   =  '1000'.
      bdcdata_wa-dynbegin = 'X'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_OKCODE'.
      bdcdata_wa-fval = '=OPEN'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_CURSOR'.
      bdcdata_wa-fval = 'PROJ-PSPID'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-program  = 'SAPLCNPB_W'.
      bdcdata_wa-dynpro   =  '0900'.
      bdcdata_wa-dynbegin = 'X'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_CURSOR'.
      bdcdata_wa-fval =  'CNPB_W_ADD_OBJ_DYN-PRPS_EXT'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'BDC_OKCODE'.
      bdcdata_wa-fval =  '=OK'.
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-fnam = 'CNPB_W_ADD_OBJ_DYN-PRPS_EXT'.
      bdcdata_wa-fval = 'XXXXXXXXXX'..
      APPEND bdcdata_wa TO bdcdata_tab .
      CLEAR bdcdata_wa.
      bdcdata_wa-program  = 'SAPLCNPB_M'.
      bdcdata_wa-dynpro   =  '1000'.
      bdcdata_wa-dynbegin = 'X'.
      APPEND bdcdata_wa TO bdcdata_tab .
      opt-dismode = 'E'.
      opt-defsize = 'X'.
      CALL TRANSACTION 'CJ20N' USING bdcdata_tab OPTIONS FROM opt.
    Thanks
    Sri

  • Automatic creation of PS-project, WBS-elements in wrong sequence

    We have been able to build up a system where PS-project is automatically created once the cProject project is released. The PS project is successfully created and the WBS-elements correspond to the phases in cProjects project as wanted. However, the sequence of the WBS-elements is the other way round as the  sequence of the phase in cProject project. Is there an IMG node where we can define the sequence?
    We are using SAP RPM 4.5 (CPR Xrpm 450_700: Support package 0009)
    Any help appreciated

    Hi Antti,
    I may need some help from you.
    1. May I know how you are creating the PS project Automatically? based on Standard accounting integration.
    2. Are you creating the PD,WBS, Activity,Activity Elements etc in PS by mapping the PD,Phase, Task and Subtask of cProejcts?
    My client have a requirement to create the PS proejct in R/3 . Appreciate your immeadiate help.
    Thanks in Advance.
    psconsultant

  • Projects/WBS elements with identification "A" exist

    Hi Experts,
    While attempting change of project ID key length in OPSK, the following error experienced,
    Please suggest the steps to change the length from 1 to 3.
    The details error message:
    Message no. CS084
    Diagnosis: The key can only be extended, if there are no project definitions or WBS elements that are only identified with their external number by the key of the project editing mask.
    Example: Project editing mask 'EB-XXX-000'. The key cannot be extended if the external number is only 'EB'.
    Procedure: You can only change this by changing the external number.
    Regards
    ramSiva

    I agree with Gokul.
    First you will have to archive all the projects with the existing key for coding that you want to change. Then lock the existing mask (or delete it). You cannot create a new mask with a longer key till you do this. You will then have to change the length of the key from 1 to 3 for project coding.
    Hope this helps.
    Regards,
    Ajinkya

  • Change of Project & WBS Element Definition

    Hi,
    Could you please let me know is there any function module to change the Project Definition ,WBS element Definition for an already existing Project and WBS element.
    Regards,
    Hemu Saini.

    BAPI_BUS2054_CHANGE_MULTI      for WBS
    BAPI_BUS2001_CHANGE                  for Project
    Regards,
    Chandra

  • Project WBS element cost allocation

    Dear All,
    In a project we have created 10 WBS elements out of which one is used for common expenses and rest other or individual works carried out in the project. Now i want to allocate the Common cost of one WBS element to other nine WBS elements.
    Can anybody explain how this can be done and is there any possibilites of costing gets doubled in the project if the cost transffered to other WBS elements.
    Thanks and regards

    Thanks for the reply,
    I have another query also, i had transferred the WBS element cost to other WBS element cost in the same Project.Whether it will double the Revenue or Cost incurred
    For ex, WBS Element A got 100 and i had settled to WBS Elements B and C , now B and C got 50 50 each
    now my project will have
    a) WBS Elements A-100, B-50 and C-50   or
    b) WBS Elements A-0, B-50 and C-50 ,  for my understanding option (b) will be right. Your views pls
    Edited by: aspirefico on Apr 30, 2009 12:59 PM

  • User Exit / BADI to change Project WBS Element/Task data

    Hi,
    We are using BAPI BAPI_PROJECT_MAINTAIN to create Project in R/3. We are passing Company Code to Project Definition Structure ( BAPI_PROJECT_DEFINITION ). BAPI updates Header company code at line item ( WBS element / Task ) level also. We do not want company code at line item level.
    Is any User Exit or BADI available in the above BAPI to change WBS/Task data. Also I would like to know whether we can control data flow ( from header to Line item ) through customisation.
    Thanks in advance.
    Naren

    Hi,
    Thanks. BADI WORKBREAKDOWN_UPDATE has import parameters. It does not have export parameters. I can not change import parameter data.
    I am looking for user exit or BADI to change WBS/Task data.
    Regards,
    Narendra

  • Projects/WBS elements with the editing mask A still exist.

    Hi All,
    I am trying to create a New Coding Mask with Project ID "A" in Dev client 100. ( Ex: A.0000.XX)
    But System is giving an error says that"There are still projects or WBS elements with edit mask A in the system. Therefore you cannot change them".
    But there is no WBS or PD's with this coding mask existing in development client 100.What to do?Is there anyone faced this problam earlier?Any refresh activity required for this?
    Thanks in Advance!
    Thanks
    Suresh Kumar.

    Hello,
    You need to check whether there are any projects in the system starting with "A" using CNS41.  If at all there are any project existing in the system which starts with "A" then the system wont allow to create coding mask which starts with "A"
    You can try to delete these project if possible and then try out if the system allows you to create the coding mask.
    Thanks and Regards,
    Anish

  • How to make mandatory(usr01) field for level 1 wbs elements only from CJ20N

    Dear All,
    I have made mandatory for "PRPS-USR01" field from CJ20N transaction
    by using field exit. But mandatory field (usr01) is working for all wbs elements. I want to make this usr01 field mandatory for  LEVEL 1(prps-stufe), WBS ELEMENTS(prps-posid) only. Not for level 2 and level 3 wbs elements. Please let me know how to fix it.
    urgent.
    Regards,
    Karthik.

    You could envisage the use of validation rules in PS.
    Transaction OPSI or SPRO
    Create a validation with a message ID (Z)
    Create a step
    - prerequisite : PRPS-STUFE = '001'
    - Check : PRPS-USR01 <> ' '
    affect a message number
    Regards.

  • Mail on when attaching BOM to particular Project/WBS element

    Hi gurus,
    I have following requirement,
    1.      Design department attaching a Bill of Material in particular Project / WBS. To convey this activity to other departments (i.e. Procurement / Sales / Project / Production Department), they need an system generated email/message.
    2.     Some time due to changes in Customer requirement,  Design department will add/change/delete the attached material components in particular Project / WBS. In such changes Client need an Email/message to generated informing about such changes to respective departments.
    Please help me with proper documentation.
    Thank &

    Check in SWEL whether any event is getting triggered if not you can use this following Business Object.
    Check this two Business Object
    BUS2054    Work breakdown structure
    BUS2054001 Extended WBS in Plug-In
    You can also go for user Exit and status management to trigger the workflow,
    Thanks
    Arghadip

  • Runtime error on Project/WBS element release

    Hi All,
    I am trying to release a WBS element, however the system hangs and eventually causes a runtime error. How do I rectify this?
    Thanks in advance.
    Regards,
    PS_PS01

    Hi,
    I have done that already. This problem is 4 days old. Everyday I log off, then log in.
    The error meassage reads: "time limit exceeded. The program "SAPLCJDW" has exceeded the maximum permitted runtime without interruption and has therefore been terminated."
    Is there perhaps a note I can apply to correct this?

Maybe you are looking for

  • Satellite A350-12D PSAL6E: how to boot Win 8.1 without pushing power button

    Hi, is there a way to boot the OS(WIN8.1) [system status: shut down] without pulling the screen first up and pushing the power button? FYI: I 'm using a external HDMI connected monitor/screen! I know of the feature wake on keyboard via BIOS, but usin

  • Whats the difference in regular storage and icloud storage?

    Trying to download i0s 7my iphone 4 says not enough storage, go to manage storage.  I upped my icloud storage thinking, this would do the trick and increase reg storage.  Puzzled.

  • URLDecoder behaviour in Solaris

    I run following piece of code in solaris and windows env. and get different results. Pls can someone give idea what is wrong in my solaris setup. //---------CODE START-------------- public class TestEncBasic public static void main(String arg[]) Stri

  • Error creating iTunes account in Win 7 PC!

    Hi, Today I tried create iTunes account in my windows 7 pc.  I have apple ID. But don't have iTunes account to download apps. Check the screenshots. After logging in I'm seeing the following error.  It is telling "We could not complete your iTunes St

  • What is my id code ?

    What is my id code ? how to create or find....