Prerequisites for creating a project in primavera

Hi Guys,
I want to create a project in P6V7 what are the prerequisites that i need to creating a project.
Thanx,
Ra

Hi
i'll consider that you implement security in P6 before adding projects
you need to do the following before creating projects
1- Create OBS
A global hierarchy that represents the managers responsible for the projects in your organization. The OBS usually reflects the management structure of your organization, from top-level personnel down through the various levels constituting your business. The OBS can be role-based or name-based.
2- Create EPS
A hierarchy that represents the breakdown of projects in the organization. Nodes at the highest, or root, level might represent divisions within your company, project phases, site locations, or other major groupings that meet the needs of your organization, while projects always represent the lowest level of the hierarchy. Every project in the organization must be included in an EPS node.
3- add projects to EPS

Similar Messages

  • Prerequisites for creating returns PO

    Hi,
    I need to know what are the prerequisites for creating a returns PO.
    Are there anu customising setting or Master data to be changed ?
    Regards,
    SR

    Hi,
    No Customizing Changes require
    Procedure to return stock to vendor
    f LIV and Payment to Vendor is done then
    1. ME21N - Create a Returns PO (Activate "Returns" indicator for PO line item)
    2. MIGO - Goods Receipt > Purchase Order (Returns PO) (Here system will hit Mvmt type "161" and you can also select Un-restricted/blocked stock from where you want to return the stock)
    3. J1IS u2013 Excise Invoice Other Movements
    Here click on u201Ccreateu201D button to create an outgoing excise invoice and reverse the CENVAT Amount.
    Here put all details as below and Press u201CEnteru201D.
    Ref.doc.type - MATD
    Doc Number - Material document No of 161 mvmt
    Doc Year
    Series Group
    Excise Group
    Vendor
    Here check BED, ECS and SECess values to be reversed and click on u201CSaveu201D button to post the excise invoice.
    4. J1IV - Post and Print Outgoing Excise Invoice.
    5. MIRO - Credit memo w.r.t. Returns PO.
    if LIV and Payment to Vendor is not done then
    1. MIGO > Return delivery > Material Document (Here refer GR doc, system will determine mvmt type "122" automatically)
    2. J1IS u2013 Excise Invoice Other Movements
    Here click on u201Ccreateu201D button to create an outgoing excise invoice and reverse the CENVAT Amount.
    Here put all details as below and Press u201CEnteru201D.
    Ref.doc.type - MATD
    Doc Number - Material document No of 122 mvmt
    Doc Year
    Series Group
    Excise Group
    Vendor
    Here check BED, ECS and SECess values to be reversed and click on u201CSaveu201D button to post the excise invoice.
    3. J1IV - Post and Print Outgoing Excise Invoice.
    4. MIRO - Credit memo w.r.t. Original PO.
    Note: - Excise Transactions to be followed if CIN functionality is in use.

  • What is the prerequisite for creating two hierarchies from one fact table i

    Hi,
    what is the prerequisite for creating two hierarchies from one a single fact table.
    Rgds,
    Amit

    create global temporary table t1 as select * from trn_ordbase on commit preserve rows;You CANNOT use this syntax.
    http://download-east.oracle.com/docs/cd/B19188_01/doc/B15917/sqcmd.htm
    http://download-east.oracle.com/docs/cd/B19188_01/doc/B15917/glob_tab.gif
    http://download-east.oracle.com/docs/cd/B19188_01/doc/B15917/cre_tabl.gif

  • 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.

  • OMB Plus Script for creating a project

    Hi,
    I am totally new to this OMB Plus.
    Ok. My concern over here is we have been working on some new Mappings. However now for the testing purpose these Maps would be deployed on some other schema with pure Deployment process.
    So i found that while importing the Maps it encountered me an error, the reason was that it was trying to find a project which doesnot exists as its new Source. Ideally importing the Mpas would have created the project automatically but it gave me error.
    Now, to overcome this i thought why not use the OMB Plus script in order to overcome this issue. So i want to creat a .tcl script which will run and will create a project and then once created i may able to import the maps or the complete project without any error.
    So could you please help me with some commands, because on the internet nowhere is mentioned how to create a project or to import a non-existing project.
    Please Help!!!!

    Hi Experts,
    I tried the above link it is really usefull.
    However, when i execute the below statement i m getting an error at the step 2.
    Step1:
    OMBCONNECT <USER_NAME>/<PASSWORD>@<HOST NAME>:<PORT NO>:<SERVICE NAME>
    Step2:
    OMBCREATE PROJECT 'CPP_CPEPLUS'
    Error: oracle.wh.repos.sdk.exceptions.WBException: OWB_NS_FATAL_ERROR100ORA-01403: no data found
    PS: I successfully connected the Step1.
    Please Help!!!!
    Regards,
    BB

  • Workflow for creating one project that can be burned to both Blu-ray and standard DVD?

    Hi,
    I have a 20 minute project and I'm creating a simple single menu with a play button. I'd like to create it once and be able to burn both a 1080p Blu-ray and a standard DVD. Is this possible?
    Thanks

    Hi,
    Let me explain how transcoding works for DVD and Blueray.
    Encore transcodes the files separately for DVD and Blueray and once the transcode is done and status shows transcoded the options for transcoding are greyed out, this means you have already transcoded the file and you cannot transcode again without reverting to original.
    For example you have blueray selected in project settings and you click transcode now from project panel the files will be transcoded for blueray, but after transcoding if for any reason you decide to change the transcode settings and transcode the asset again with different settings you have to revert to original.
    But in this case when you want to transcode the assets for DVD you don’t need to revert to original and loose the transcoding done for blueray. You can change the project settings from blueray to DVD after that you will be able to transcode for DVD without losing the transcoded files for blueray.

  • Where can i get sample custom project for creating custom project

    I installed Plumtree_Portal_UI_Customization. now i want to develop my own custom project. when i installed this ptshared folder is not created so i am not having this,
    SOURCE_HOME\ptshared\6.0\ptwebui-samples\samplecustomproject .
    Even i am not able to download SampleProjects-60x.zip file.can anybody helps me regarding this.Give me the exact URL for this ZIP.I am not able to find the samples directory.
    Advance thanks.
    bye
    Amit

    I tried pasting the direct URL in here, but that doesn't seem to work. So the steps to follow are:
    1. Go to http://dev2dev.bea.com
    2. Select the CodeShare link under Get Involved in the left hand menu.
    3. Select 'Code Samples' under 'Popular Projects'
    4. Under 'By Product', select AquaLogic User Interface.
    5. Select Artifact ID S265
    6. Select the Attachements/Dependencies/URLs tab

  • Prerequisities for a km project

    hi,
       can anyone tell the pre-requisites for doing a km project?i mean the tools that have to be installed and their configurations.also if possinble please send any useful links regarding this.
    thanx
    srinath

    Hi Srinath,
       You need to install:
       Java 1.4.x not use 1.5. in each developer machine.
       SAP Developer Studio, you need to download and install in each developer machine.
       Form Builder, is part of portal.
       Visual Composer, you need to download and install.
    This is all the tools, perhaps you don't need to use them.
    SAP Developer Studio and Visual Composer can be downloaded from:
    http://service.sap.com/instguides
    http://service.sap.com/swdc
    http://help.sap.com
    if you need to develop this link is very useful
    Knowledge Management and Collaboration (KMC)
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6b30b090-0201-0010-829d-e988d093ac65
    Patricio.
       Patricio.

  • Could you explain me, how can i create project in Primavera using BPM 11g

    I found an example of workflow here, but I can't repeate it:
    http://www.oracle.com/technetwork/indexes/samplecode/primavera-1551981.html
    I opened an example in BPM, and found that most of external references are "Web service". Could somebody describe me main steps of creating a Project in Primavera using Workflows or could you give me a link to tutorial.
    Thanks a lot for help.

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the libxml2.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well
    In case that your OS is Windows 7 (64 bit)
      1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "libxml2.dll"
    3. Open new windows explorer, to to location C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Paste file "libxml2.dll" to the location.
    5. Reboot your computer, it should not display that message, it should be clear.
    Good Luck

  • LSMW for creating project CJ20N

    Hi,
    I need to create projects by using transaction cj20n, I tried to find any standard sap project/bapi/idoc that I can use in my LSMW to create the project, but could not find.
    Has anyone aware of any standard SAP technique to use in LSMW for creating the project by transaction CJ20N. I am just trying not to create custom recording for the conversion.
    Thanks,

    I have a program for inserting WBS by Batch-input.
    report Z_PS_BI_0001
           no standard page heading
           line-size 80.
    *------------------------------- TABLES -------------------------------*
    tables : proj ,               " Définition de projet
             prps ,               " Elément d'OTP - données de base
             jest ,               " Statut individuel par objet
             tj02t .              " Textes de statuts système
    *-------------------------------- DATA --------------------------------*
    types : begin of type_prps ,
              pspnr like prps-pspnr ,
              objnr like prps-objnr ,
              posid like prps-posid ,
              psphi like prps-psphi ,
              pspid like proj-pspid ,
            end   of type_prps.
    data itab_prps type sorted table of type_prps
                   with unique key pspnr
                   with header line
                   initial size 30000.
    data : bdc_tab type standard table of bdcdata
                        with header line .
    *------------------------ OPTIONS DE SELECTION ------------------------*
    selection-screen begin of block b1 with frame title text-t01.
      parameters : p_nom(12) type c
                             default 'Z_'
                             obligatory ,
                   p_kokrs like proj-vkokr
                           obligatory,
                   p_bukrs like bsis-bukrs
                           obligatory .
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-t02.
      select-options : s_pspnr for proj-pspnr ,
                       s_posid for prps-posid .
    selection-screen end of block b2.
    *-------------------------------- MAIN --------------------------------*
    start-of-selection.
    * Recherche des données.
      perform p_recherche_donnees.
    * Création du dossier batch-input
      perform p_creation_dossier.
    * Edition du compte rendu d'execution.
      perform p_edition.
    end-of-selection.
    *   Procédure P_RECHERCHE_DONNEES.                                     *
    *   Recherche des données nécessaires au programme.                    *
    form p_recherche_donnees.
      types : begin of type_prhi ,
                posnr like prhi-posnr ,
                up    like prhi-up ,
              end   of type_prhi.
      data itab_prhi type sorted table of type_prhi
                     with non-unique key up
                     with header line
                     initial size 30000.
      data : begin of itab_otp occurs 100 ,
               pspnr like prps-pspnr ,                 " OTP
               pspn  like proj-pspnr ,                 " Projet
               posid like prps-posid ,                 " Texte OTP
               objnr like prps-objnr ,                 " Objet
             end   of itab_otp.
      data : begin of itab_tmp_otp_1 occurs 100 ,
               posnr like prhi-posnr ,
               up    like prhi-up ,
             end   of itab_tmp_otp_1.
      data : begin of itab_tmp_otp_2 occurs 100 ,
               pspnr like itab_otp-pspnr ,
             end   of itab_tmp_otp_2.
      data : v_ligne(9) type n.
    * Liste tout les elements d'OTP de niveau 2 pour les projets
    * selectionnees.
      select b~pspnr a~pspnr b~posid b~objnr
             into table itab_otp
             from            proj as a
                  inner join prps as b
                  on b~psphi eq a~pspnr
             where a~pspnr in s_pspnr
             and   a~profl eq '0000010'
             and   a~vkokr eq p_kokrs
             and   b~posid in s_posid
             and   b~stufe eq '2'
             and   b~pkokr eq p_kokrs.
    * Tri de la table
      sort itab_otp.
    * Chargement de la pseudo PRHI
      select posnr up
             into corresponding fields of table itab_prhi
             from prhi
             client specified
             where mandt eq sy-mandt
             and   up    ne space.
    * Extrait la liste des OTP a rechercher.
      append lines of itab_otp to itab_tmp_otp_2.
    * Tri
      sort itab_tmp_otp_2.
    * Créé la liste des OTPs dépendant des OTPs de niveaux 2.
      loop at itab_tmp_otp_2.
        loop at itab_prhi
             where up = itab_tmp_otp_2-pspnr.
          move : itab_prhi-posnr to itab_tmp_otp_1-posnr ,
                 itab_prhi-up    to itab_tmp_otp_1-up ,
                 itab_prhi-posnr to itab_tmp_otp_2-pspnr .
          append : itab_tmp_otp_1, itab_tmp_otp_2.
        endloop.
        delete itab_tmp_otp_2.
      endloop.
    * Recherche si plus petit niveau.
      loop at itab_tmp_otp_1.
        read table itab_prhi
             with key up = itab_tmp_otp_1-posnr.
        if sy-subrc eq space.
          delete itab_tmp_otp_1.
        endif.
      endloop.
      sort itab_tmp_otp_1 by posnr.
    * Recherche de l'objet pour chacun des OTPs trouvés.
      loop at itab_tmp_otp_1.
        select single objnr posid psphi
               into (itab_prps-objnr, itab_prps-posid, itab_prps-psphi)
               from prps
               where pspnr eq itab_tmp_otp_1-posnr.
        if sy-subrc eq space.
          move itab_tmp_otp_1-posnr to itab_prps-pspnr.
          append itab_prps.
        endif.
      endloop.
    * Recherche si les OTPs ont bien le statut Budget seul.
      loop at itab_prps.
        select single *
               from jest
               where objnr eq itab_prps-objnr
               and   stat  eq 'E0002'
               and   inact eq ' '.
        if sy-subrc ne space.
          delete itab_prps.
        endif.
      endloop.
    * Recherche texte projet.
      loop at itab_prps.
        select single pspid
               into itab_prps-pspid
               from proj
               where pspnr eq itab_prps-psphi.
        if sy-subrc eq space.
          modify itab_prps.
        endif.
      endloop.
    * Compte le nombre de ligne à traiter.
      describe table itab_prps lines v_ligne.
      if v_ligne eq space.
        write : /1 'Aucune donnée à traiter.'.
        stop.
      endif.
    endform.                    " P_RECHERCHE_DONNEES.
    *   Procédure P_CREATION_DOSSIER.                                      *
    *   Création du dossier batch-input.                                   *
    form p_creation_dossier.
      data : v_estat type j_estat.
    * Recherche de la position du statut Budget seul.
      select min( estat )
             into v_estat
             from tj30t
             where stsma eq '00000001'
             and   spras eq sy-langu.
      if v_estat ne 'E0002'.
        write : /1 'Customizing statut modifié ! Programme inutilisable !'.
        stop.
      endif.
    * Ouverture du dossier batch-input.
      perform open_bdc using p_nom.
    * Boucle sur la table des données.
      loop at itab_prps.
    *   Ecran de saisie Projet / OTP
        perform bdc_dynpro using 'SAPLCJWB'
                                 '0100'.
        perform bdc_field  using 'BDC_OKCODE'
                                 '=LETB'.
        perform bdc_field  using '*PROJ-PSPID'
                                 itab_prps-pspid.
        perform bdc_field  using '*PRPS-POSID'
                                 itab_prps-posid.
    *   Sélectionne la première ligne et demande les statuts utilisateurs.
        perform bdc_dynpro using 'SAPLCJWB'
                                 '0901'.
        perform bdc_field  using 'BDC_OKCODE'
                                 '=STAT'.
        perform bdc_field  using 'RCJ_MARKL-MARK(01)'
                                 'X'.
    *   Déselectionne la zone Budget/Seul
        perform bdc_dynpro using 'SAPLBSVA'
                                 '0300'.
        perform bdc_field  using 'BDC_OKCODE'
                                 '=BACK'.
        perform bdc_field  using 'J_STMAINT-ANWSO(01)'
    *   Enregistre et sort.
        perform bdc_dynpro using 'SAPLCJWB'
                                 '0901'.
        perform bdc_field  using 'BDC_OKCODE'
                                 '=BU'.
    *   Enregistrement de la transaction.
        perform insert_bdc using 'CJ02'.
      endloop.
    * Fermeture du dossier batch-input.
      perform close_bdc.
    endform.                                 " P_CREATION_DOSSIER
    *   Procédure P_EDITION.                                               *
    *   Edition du compte rendu d'éxecution.                               *
    form p_edition.
      write : /1 'Compte rendu de la création du dossier Batch-Input.'.
      skip 2.
      write : /1 'Dossier Batch-Input' ,
                 p_nom ,
                 'créé avec succés.'.
      skip 4.
      write : /1 'Liste des OTPs que le Batch-Input devrait modifier.'.
      loop at itab_prps.
        write : /5 itab_prps-posid.
      endloop.
    endform.                                " P_EDITION.
    *   Form OPEN_BDC                                                      *
    *   Ouverture du dossier Batch-Input.                                  *
    form open_bdc using v_nom_dossier.
      call function 'BDC_OPEN_GROUP'
           exporting
                client              = sy-mandt          " Numéro de mandant
                group               = v_nom_dossier     " Nom dossier batch
                keep                = 'X'               " Code
                user                = sy-uname          " Nom utilisateur
           exceptions
                client_invalid      = 1
                destination_invalid = 2
                group_invalid       = 3
                group_is_locked     = 4
                holddate_invalid    = 5
                internal_error      = 6
                queue_error         = 7
                running             = 8
                system_lock_error   = 9
                user_invalid        = 10
                others              = 11.
      if sy-subrc ne 0.
        write : /1 'Impossible de créer le dossier batch-input.' ,
                /1 'Erreur :' , sy-subrc.
        stop.
      endif.
      refresh bdc_tab.
      clear   bdc_tab.
      exit.
    endform.                       " OPEN_BDC
    *   Form CLOSE_BDC                                                     *
    *   Fermeture du dossier BTCI                                          *
    form close_bdc.
      call function 'BDC_CLOSE_GROUP'
           exceptions
                not_open    = 1
                queue_error = 2
                others      = 3.
      if sy-subrc ne 0.
        write : /1 'Impossible de fermer le dossier batch-input.' ,
                /1 'Erreur :' , sy-subrc.
      endif.
    endform.                     " CLOSE_BDC
    *   Form BDC_DYNPRO                                                    *
    *   Alimentation de la ligne d'entête de BDCTAB                        *
    form bdc_dynpro using value(progname)
                          value(dynpronr).
    * Efface la header-line.
      clear bdc_tab.
    * Insertion des valeurs.
      bdc_tab-program  = progname.
      bdc_tab-dynpro   = dynpronr.
      bdc_tab-dynbegin = 'X'.
    * Enregistrement des valeurs.
      append bdc_tab.
    endform.                    " BDC_DYNPRO
    *   Form BDC_FIELD                                                     *
    *   Traitement des enregistrements de la structure BDCTAB              *
    *      --> FIELDNAME  Nom du champ                                     *
    *      --> FIELDVALUE Valeur du champ                                  *
    form bdc_field using value(fieldname) value(fieldvalue).
    * Efface la header-line.
      clear bdc_tab.
    * Insertion des valeurs.
      bdc_tab-fnam = fieldname.
      bdc_tab-fval = fieldvalue.
    * Enregistrement des valeurs.
      append bdc_tab.
    endform.                " BDC_FIELD
    * Form BDC_CURSOR                                                      *
    * Positionnement du curseur sur un champ particulier                   *
    form bdc_cursor using value(fieldname) value(fieldvalue).
    * Efface la header-line.
      clear bdc_tab.
    * Insertion des valeurs.
      bdc_tab-fnam = fieldname.
      bdc_tab-fval = fieldvalue.
    * Enregistrement des valeurs.
      append bdc_tab.
    endform.              " BDC_CURSOR
    *   Form  INSERT_BDC                                                   *
    *   Insertion dans le dossier BTCI                                     *
    *   Attention : la transaction est codée en dur                        *
    form insert_bdc using t_code.
      call function 'BDC_INSERT'
           exporting
                tcode            = t_code
           tables
                dynprotab        = bdc_tab
           exceptions
                internal_error   = 1
                not_open         = 2
                queue_error      = 3
                tcode_invalid    = 4
                printing_invalid = 5
                posting_invalid  = 6
                others           = 7.
      if sy-subrc ne 0.
        write : /1 text-003 ,
                /1 'Erreur :' , sy-subrc.
      endif.
      refresh bdc_tab.
      clear   bdc_tab.
    endform.                  " INSERT_BDC
    comment in french

  • How to create Support Project

    Hi,
    We using SOLMAN 7.0 and are in Support Phase now, so need to create support project in SOLMAN.
    Please advice me for creating SUPPORT Project in system

    Hi,
    Please refer:
    /people/sapna.modi/blog/2007/09/17/sap-solution-manager-40--project-preparation-phase-part-ii
    Rajeev

  • Cannot compile Java files or create Java Project

    Hi,
    I cannot compile java files and also didn't see any option
    for creating java project using flex 2 builder.
    Actually am trying to create a FDS project with an option to
    compile on the server. I am using Weblogic 8.1 SP5 as my server.
    thank you
    sun

    hi
    this is may jvm.config file. Can anyone tell me if it is
    right because all the fields are blank.
    # VM configuration
    # Where to find JVM, if {java.home}/jre exists then that JVM
    is used
    # if not then it must be the path to the JRE itself
    # If no java.home is specified a VM is located by looking in
    these places in this
    # order:
    # 1) JAVA_HOME environment variables (same rules as java.home
    above)
    # 2) bin directory for java.dll (windows) or
    lib/<ARCH>/libjava.so (unix)
    # 3) ../jre
    # 4) registry (windows only)
    java.home=C:\Adobe\Flex Builder 2.0 Beta 3\Flex SDK 2.0\jre
    # Arguments to VM
    java.args=-ea -Xmx384m
    # Environment variables we care about, whitespace-separated
    env=
    # java.class.path - use this for adding individual jars or
    # directories. When directories are included they will be
    searched
    # for jars and zips and they will be added to the classpath
    (in
    # addition to the directory itself), the jar to be used in
    launching
    # will be appended to this classpath
    java.class.path=C:\Adobe\Flex Builder 2.0 Beta 3\Flex SDK
    2.0\jre
    # where to find shared libraries, again use commas to
    separate entries
    java.library.path=
    thanks
    sun

  • Is it mandatory to create a project for every enhancement?

    Hello Gurus,
    I have written some code in one user exit.
    Now i have activated it and it is working fine.
    I wanted to know. is mandatory to create a project(in CMOD) for every user exit?
    Also what is the functionality of the project?

    Hi,
    It is not compulsory that we have to create a project for an enhancements
    Projects are created inorder to sort or classify enhancements...imagine we have SD/MM module enhancements..then it is upto us(or the person in charge) to decide whether we need to create separate projects one for SD..another for MM or assign it to the same project or even continue without assigning to a project....
    Once enhancements are assigned to a project it will be easy to find which enhancements are active and already in use...so you can go ahead without assigning an enhancement to project also..according to the requirement
    We cannot have an enhancement existing in 2 different projects(it will throw error if you try to create in 2 projects)
    It is simple to check this out...take a user exit for a  t-code and put a break point...activate the user exit without assigning it to a project and see if it stops....but always take a simple user exit that triggers without any prerequisite & specific to a transaction ......test with that transaction only
    Hope it helps
    Regards
    Byju

  • Create a defaut view for the MS Project Server 2010 client

    Dear Forum,
    how can I create a defaut view for the MS Project Server 2010 client?
    I saved a template and set a default view under File -> Options ->Project View. I also did the same in the checked-out enterprise global. If I then close the client and re-open it my default view changes back again to the previous one (not the view
    I set as a default view).
    What explains this behaviour and what can I do? Any hints?
    Thank you very much for your help!

    Scheduler007 --
    The view you selected by clicking File > Options > Project View is the default view for every new project you create from a blank project template.  This is a global option, so setting it from the checked out Enterprise Global file serves no purpose. 
    When you select a view as your default view, you will see that view applied to the blank project that is opened when you launch Microsoft Project 2010, and you will see it applied if you create new blank projects.  If you create enterprise templates for
    people to use in your organization, you should simply apply the view to the template that you want as the default so that users will see this view immediately when they create a new project from the template.  In addition, if you apply a view to an open
    project, close and check in the project, and then reopen the project, you will see the last view applied in that project (as Guillaume correctly points out).
    Beyond this, there is no method possible for the Project Server administrator to specify a default view for the Microsoft Project application used by the project managers in your organization.  This is an option each PM must set.  Hope this helps.
    Dale A. Howard [MVP]

  • How to create a .jar file for the BPEL project

    hi all,
    how can i create a .jar file for my BPEL project, i am trying to deploy the project but getting an error :
    "Error: [Error ORABPEL-10902]: compilation failed [Description]: in "C:\OraBPELPM\integration\jdev\jdev\mywork\Workspace_BPELDemo\BPEL_Report\BPEL_Report.bpel", XML parsing failed because "". [Potential fix]: n/a. "
    and when doubel cliking on this error Jdev take me to the beginning of the ".bpel" file.
    I 'm really stuck in here i am not able to deploy the process!
    Thanks,
    Rana

    Rana:
    If you haven't already, I would post this question in the BPEL forum. I would expect a much better turnaround there.
    Johnny Lee

Maybe you are looking for