BAPI_BUS2054_CREATE_MULTI

BAPI_BUS2054_CREATE_MULTI
Please send some sample code for this BAPI with extenstion structure.

Hi John,
Check OSS Notes 775428 and 737683. Hope this provides some inputs.
Thanks
Lakshman

Similar Messages

  • Error while Creating WBS element using BAPI 'BAPI_BUS2054_CREATE_MULTI'

    Hi Expert,
    I've a requirement to create WBS elements using BAPI. And I am using BAPIs in the following manner.
    CALL FUNCTION 'BAPI_PS_INITIALIZATION'
      CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
        EXPORTING
          i_project_definition = g_pdwbs
      TABLES
        it_wbs_element             = it_wbs_element
       et_return                  = it_return
      EXTENSIONIN                =
      EXTENSIONOUT               =
        CALL FUNCTION 'BAPI_PS_PRECOMMIT'
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    When I do so I am getting the below errors. Please suggest.
    "Individual check for creating the object WBS Element C-497082 required ".
    "Individual check for creating the object WBS Element C-497082-0001 required".
    Please suggest how to correct this error. 
    <REMOVED BY MODERATOR - REQUEST OR OFFER POINTS ARE FORBIDDEN>
    Edited by: Alvaro Tejada Galindo on Aug 18, 2008 5:25 PM

    I am getting the same error, but I cannot figure it out how to detect it and fix it.  Will you please share your solution?
    Thanks,

  • Issue creating WBS using BAPI_BUS2054_CREATE_MULTI

    Hi All,
    I am trying to create WBS elements under existing project (CJ20N) using “BAPI_BUS2054_CREATE_MULTI”. I am I am getting “ET_RETURN” with message type ‘S-W-I’, even after commit no WBS created. Type ‘S’ message says “Individual check for creating the object WBS Element XXX required”. Please find my code for more info. I am I using correct BAPI? Any hint or suggestion welcome. Thanks in advance.
    Regards,
    Trim
    LOOP AT gt_wbs_element .
        MOVE-CORRESPONDING gt_wbs_element to gt_wbs_element_bapi.
        MOVE : gt_wbs_element-mims_id    to gt_wbs_element_bapi-USER_FIELD_CHAR20_1.
        MOVE : gt_wbs_element-PROJECT_DEFINITION to gv_proj.
    *** Conert all dates
        split_date gt_wbs_element-WBS_BASIC_START_DATE gt_wbs_element_bapi-WBS_BASIC_START_DATE.
        split_date gt_wbs_element-WBS_BASIC_FINISH_DATE gt_wbs_element_bapi-WBS_BASIC_FINISH_DATE.
        split_date gt_wbs_element-WBS_FORECAST_START_DATE gt_wbs_element_bapi-WBS_FORECAST_START_DATE.
        split_date gt_wbs_element-WBS_FORECAST_FINISH_DATE gt_wbs_element_bapi-WBS_FORECAST_FINISH_DATE.
    *   split_date gt_wbs_element-WBS_ACTUAL_START_DATE gt_wbs_element_bapi-WBS_ACTUAL_START_DATE.
    *   split_date gt_wbs_element-WBS_ACTUAL_FINISH_DATE gt_wbs_element_bapi-WBS_ACTUAL_FINISH_DATE.
        APPEND gt_wbs_element_bapi.
    ****   Update Custome 'Z' Fields
        clear : BAPI_TE_WBS_ELEMENT, gv_error.
        BAPI_TE_WBS_ELEMENT-WBS_ELEMENT    = gt_wbs_element-WBS_ELEMENT.
        BAPI_TE_WBS_ELEMENT-ZZCP_APPRBUD   = gt_wbs_element-ZZCP_APPRBUD.
        BAPI_TE_WBS_ELEMENT-ZZCP_ELECT     = gt_wbs_element-ZZCP_ELECT.
        BAPI_TE_WBS_ELEMENT-ZZCP_AREA      = gt_wbs_element-ZZCP_AREA.
        BAPI_TE_WBS_ELEMENT-ZZCP_PROG      = gt_wbs_element-ZZCP_PROG.
        BAPI_TE_WBS_ELEMENT-ZZCP_SUBPR     = gt_wbs_element-ZZCP_SUBPR.
    **    BAPI_TE_WBS_ELEMENT-ZZCP_FINALDAT  = gt_wbs_element-ZZCP_FINALDAT.
        BAPI_TE_WBS_ELEMENT-ZZCP_TOTBUD    = gt_wbs_element-ZZCP_TOTBUD.
    **    BAPI_TE_WBS_ELEMENT-ZZCP_DADHC_REG = gt_wbs_element-ZZCP_DADHC_REG.
    **    BAPI_TE_WBS_ELEMENT-ZZCP_DADHC_CEP = gt_wbs_element-ZZCP_DADHC_CEP.
        BAPI_TE_WBS_ELEMENT-ZZCP_PREDBUD   = gt_wbs_element-ZZCP_PREDBUD.
        BAPI_TE_WBS_ELEMENT-ZZCP_CLIENT    = gt_wbs_element-ZZCP_CLIENT.
        BAPI_TE_WBS_ELEMENT-ZZCP_PM_NAME   = gt_wbs_element-ZZCP_PM_NAME.
        GT_EXTENSION_IN-STRUCTURE = 'BAPI_TE_WBS_ELEMENT'.
        GT_EXTENSION_IN-VALUEPART1 = BAPI_TE_WBS_ELEMENT+0(199).
        GT_EXTENSION_IN-VALUEPART2 = BAPI_TE_WBS_ELEMENT+199(171).
        APPEND GT_EXTENSION_IN.
        MOVE-CORRESPONDING gt_wbs_element to wa_wbs_elem.
        AT END OF PROJECT_DEFINITION.
    *** Inalise BAPI
          CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
          clear gt_return[].
          CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
            EXPORTING
              I_PROJECT_DEFINITION       = gv_proj
            TABLES
              IT_WBS_ELEMENT             = gt_wbs_element_bapi
              ET_RETURN                  = gt_return
              EXTENSIONIN                = gt_extension_in
    *         EXTENSIONOUT               =
            EXCEPTIONS
              error_message              = 1
              others                     = 2.
    *** Check GT_RESULT for success
          LOOP AT gt_return where type co 'EA'.
            gv_error = 'X'.
          ENDLOOP.
          IF gv_error is initial.
            CALL FUNCTION 'BAPI_PS_PRECOMMIT'
              TABLES
                ET_RETURN = gt_return_pre.
            LOOP AT gt_return_pre where type co 'EA'.
              gv_error = 'X'.
            ENDLOOP.
          ENDIF.
          IF gv_error is INITIAL.
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
              EXPORTING
                WAIT   = '1'
              IMPORTING
                RETURN = GT_RETURN_COMMIT.
            clear gv_write.
            format color 4.
            CONCATENATE 'Success: WBS Attached to Project' gv_proj '-'
                   into  gv_write.
            WRITE / gv_write. CLEAR gv_write.
            move-corresponding wa_wbs_elem to gt_wbs_suc.
            gt_wbs_suc-message      = gv_write.
            gt_wbs_suc-message_type = 'S'.
            append gt_wbs_suc.
            format reset.
          else.
            clear gv_write.
            format color 6.
            CONCATENATE 'Error: Attaching WBS to Project' space '-' space gv_proj
                    into  gv_write.
            WRITE / gv_write. CLEAR gv_write.
            move-corresponding wa_wbs_elem to gt_wbs_suc.
            gt_wbs_suc-message      = gv_write.
            gt_wbs_suc-message_type = 'E'.
            append gt_wbs_suc.
            format reset.
          ENDIF.
          CLEAR: gv_proj, gt_wbs_element_bapi, gt_extension_in, gt_return_pre, GT_RETURN_COMMIT.
          refresh: gt_wbs_element_bapi, gt_extension_in, gt_return_pre, GT_RETURN_COMMIT.
        endat.
      ENDLOOP.

    Hi Trim
    The message comes from (It is S004) in the BAPI_BUS2054_CREATE_MULTI (see below bold).  I would be placing a breakpoint at the point where the BAPI is calling the function PS_BAPI_PREPARE to see if the lv_subrc variable is being set at this stage.
    Cheers
    Gareth
          call function 'CJ2054_CREATE'
               exporting
                    i_pspid             = i_project_definition
                    i_wbs_element       = ls_wbs_element
               tables
                    extensionin         = extensionin
               exceptions
                    element_not_created = 1
                    dates_not_created   = 2.
        endif.
        if sy-subrc <> 0 or lv_subrc <> 0.
          message e007(cnif_pi) with text-wbs ls_wbs_element-wbs_element
                                into null.
          lv_error = con_yes.
        else.
    <b>      message s004(cnif_pi) with text-wbs ls_wbs_element-wbs_element
                                into null.</b>

  • Issue in Updating Customer specific fields in WBS using BAPI_BUS2054_CREATE_MULTI

    Hi Experts,
    I am able to create the WBS element using BAPI_BUS2054_CREATE_MULTI.But the issue is i am not able to update customer specific fields even after passing the fields as per specification in Function module documentation. I have also created an implementation of BADI  as per below specification in FM documentation:
    Procedure for Filling Standard Enhancements
    Before you call the BAPI for each object that is to be created or changed,
    for which you want to enter customer-specific table enhancement fields, add a
    data record to the container ExtensionIn:
    STRUCTURE:    Name of the corresponding help structure
    VALUEPART1:   Key of the object + start of the data part
    VALUEPART2-4: If required, the continuation of the data part
    VALUPART1 to VALUPART4 are therefore filled consecutively, first with the
    keys that identify the table rows and then with the values of the
    customer-specific fields. By structuring the container in this way, it is
    possible to transfer its content with one MOVE command to the structure of the
    BAPI table extension.
    Note that when objects are changed, all fields of the enhancements are
    overwritten (as opposed to the standard fields, where only those fields for
    which the respective update indicator is set are changed). Therefore, even if
    you only want to change one field, all the fields that you transfer in
    ExtensionIn must be filled.
    Checks and Further Processing
    Using the methods ...CREATE_EXIT1 or. ...CHANGE_EXIT1 of the BAdI
    BAPIEXT_BUS2001, BAPIEXT_BUS2002, and BAPIEXT_BUS2054, you can check the entered
    values (and/or carry out other checks).
    In the BAdI's second method, you can program that the data transferred to the
    BAPI is processed further (if you only want to transfer the fields of the CI
    includes, no more action is required here).
    But still i am unable to update fields though i am able to create WBS with rest of the fields except  custom fields.
    I am using attached code to achieve this.Do we need to code anything inside method create_exit1 or create_exit2 implementation for BADI or
    Please help on priority

    Hi Rahul,
    First observation from your code is that i could not find the assignment for the field
    GWA_WBS_EXTIN-STRUCTURE. I hope you are not filling this field, that could be one reason for failure. Try to do it and let us know if you still have the problem.
    Br..
    Dwaraka

  • Problem with bapi BAPI_BUS2054_CREATE_MULTI

    I am trying to create multiple wbs elements for a given definition
    using the bapi BAPI_BUS2054_CREATE_MULTI as per the documentation i have used BAPI_PS_INITIALIZATION
    first to initialize,then followed by BAPI_BUS2054_CREATE_MULTI  and ending with BAPI_PS_PRECOMMIT and BAPI_TRANSACTION_COMMIT
    it says the definition is o.k but its giving error with wbs element.
    that to enter all required fields.
    could any body please  tell what are all the required fields that i have to enter for it_wbs.

    Hi Aravind,
    I am having same problem. Can you pelase explain me how you solved your issue.
    Please help?
    thanks,
    Venkat.

  • How to use [BAPI_BUS2054_CREATE_MULTI]?

    Dear experts:
       can anyone tell me how to use [BAPI_BUS2054_CREATE_MULTI] this function..when i used , the wbs is still not created, although the message tells me create sucessfully.
    below is my step:
    first:          CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
    second:     CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
    when there is sucess message, i use [ CALL FUNCTION 'BAPI_PS_PRECOMMIT'
    ] instead of commit work else CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'..
    can anyone help me to workout this issue.
    monson

    Hi,
    You can use BAPI_BUS2054_SET_STATUS in a list of WBS elements to revoke a system status and a user status respectively, as well as to set a system status and a user status respectively.
    When you use BAPI BAPI_BUS2054_CREATE_MULTI , it should be called with these BAPIs and this order only.
    1. BAPI_PS_INITIALIZATION "Initilize
    2. BAPI_BUS2054_CREATE_MULTI ( to create WBS )
    3. BAPI_BUS2054_SET_STATUS "Release WBS ( only if you want to REL )
    4. BAPI_PS_PRECOMMIT "Precommit
    5. BAPI_TRANSACTION_COMMIT "Commit
    Reward If Helpfull,
    Naresh

  • BAPI_BUS2054_CREATE_MULTI - Populating custom fields

    Hi,
    I am using BAPI BAPI_BUS2054_CREATE_MULTI for creating WBS Elements.
    We have 18 custom fields at WBS element level.
    I am trying to populate the data for those 18 custom fields through EXTENSIONIN table parameter. 
    I am passing BAPI_TE_WBS_ELEMENT to the structure name & values to VALUEPART1. But after the BAPI call,
    its not creating any error or saving the data for WBS Element. 
    Note: i am passing WBS Element at starting position i.e., 0(24)  .  My custom fields starts from 25(3) position onwards.
    Below is the code how i am populating the data to the EXTENSIONIN tables.
    data: lwa_extin       TYPE bapiparex.
    MOVE 'BAPI_TE_WBS_ELEMENT' TO lwa_extin-structure.
      lwa_extin-valuepart1+0(24) = wa_data-posid.
      lwa_extin-valuepart1+25(3) = '1'.
      lwa_extin-valuepart1+28(4) = 'BSUB'.
      lwa_extin-valuepart1+32(4) = 'CONT'.
      lwa_extin-valuepart1+36(3) = '132'.
      lwa_extin-valuepart1+39(6) = 'AUTH'.
      lwa_extin-valuepart1+45(6) = '301'.
      lwa_extin-valuepart1+51(26) = '1'.
      lwa_extin-valuepart1+77(5) = '1'.
      lwa_extin-valuepart1+82(21) = '1'.
      lwa_extin-valuepart1+103(11) = '1'.
      lwa_extin-valuepart1+114(15) = 'IL'.
      lwa_extin-valuepart1+129(50) = '1'.
      lwa_extin-valuepart1+179(50) = '1'.
      lwa_extin-valuepart1+229(11) = '1'.
      lwa_extin-valuepart2+0(10) = 'C'.
      lwa_extin-valuepart2+10(8) = sy-datum.
      lwa_extin-valuepart2+18(8) = sy-datum.
      lwa_extin-valuepart2+26(4) = '1'.
    APPEND lwa_extin TO li_extin.
        CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
          EXPORTING
            i_project_definition = lwa_pspid
          TABLES
            it_wbs_element       = li_wbsele_data
            et_return            = li_return
            extensionin          = li_extin
            extensionout         = li_extout.
    Can any one help me about this issue.
    Regards,
    Kris.

    Hi,
    Are you using 'BAPI_TRANSACTION_COMMIT' after BAPI call?
    If not then try to use as below,
    data: lwa_extin TYPE bapiparex.
    MOVE 'BAPI_TE_WBS_ELEMENT' TO lwa_extin-structure.
    lwa_extin-valuepart1+0(24) = wa_data-posid.
    lwa_extin-valuepart1+25(3) = '1'.
    lwa_extin-valuepart1+28(4) = 'BSUB'.
    lwa_extin-valuepart1+32(4) = 'CONT'.
    lwa_extin-valuepart1+36(3) = '132'.
    lwa_extin-valuepart1+39(6) = 'AUTH'.
    lwa_extin-valuepart1+45(6) = '301'.
    lwa_extin-valuepart1+51(26) = '1'.
    lwa_extin-valuepart1+77(5) = '1'.
    lwa_extin-valuepart1+82(21) = '1'.
    lwa_extin-valuepart1+103(11) = '1'.
    lwa_extin-valuepart1+114(15) = 'IL'.
    lwa_extin-valuepart1+129(50) = '1'.
    lwa_extin-valuepart1+179(50) = '1'.
    lwa_extin-valuepart1+229(11) = '1'.
    lwa_extin-valuepart2+0(10) = 'C'.
    lwa_extin-valuepart2+10(8) = sy-datum.
    lwa_extin-valuepart2+18(8) = sy-datum.
    lwa_extin-valuepart2+26(4) = '1'.
    APPEND lwa_extin TO li_extin.
    CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
    EXPORTING
    i_project_definition = lwa_pspid
    TABLES
    it_wbs_element = li_wbsele_data
    et_return = li_return
    extensionin = li_extin
    extensionout = li_extout.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        WAIT = 'X'.

  • Error in creating WBS element BAPI_BUS2054_CREATE_MULTI

    Hi
    I am calling BAPI_BUS2054_CREATE_MULTI  for creating WBS elements for the blocked project . I am passing the detailed project definitiion with level ( like A5/01/01) . I am getting error that WBS element for the object could not be created  error 076 that BAPI is not initialized .
    Now to solve this I called BAPI_PS_INITIALIZATION first then am calling BAPI_BUS2054_CREATE_MULTI then its throwing dump  and if I want to run thru se37 then still giving the same error mentioned above
    Please let me know what should I need to do to remove the error .
    Helpful answer will definetly ..
    Thanks a  lott in advance

    Hi ,
    I want to create a WBS element using the BAPI's  BAPI_BUS2054_CREATE_MULTI .
    I did this sequence of test  :
    BAPI_PS_INITIALIZATION
    BAPI_BUS2054_CREATE_MULTI
    And I have this return
    S    CNIF_PI              004     Individual check for creating the object WBS Element U008-F033-001 required    
    CAn you tell me what to do in order to resolve this problem ( calling a commit after this sequence leads to 'DUMP' bacause no precommit is called before )
    can u send me a code Plz...
    Thanks in advance

  • Using function module BAPI_BUS2054_CREATE_MULTI

    Hello All,
    in PS we are using above function module to create WBS elements. The scenario is that we generate projects and WBS in reference to a sales order with copying texts and partners etc. After some manuel work of the users an other reports the status of the project will be set from CREATE to FREE. After this status change, we need it to assign costs to WBS elements, we want to add other WBS elements to the project.
    This is only possible by manuel work of the users but not by using the function module BAPI_BUS2054_CREATE_MULTI. In that process we get the error code BS 014 and CNIF_PI 074. In BAPI_PS_PRECOMMIT we get a dump as consequence.
    We are on patch SAPKH47025 and SAP note 664666 is still in the system.
    Is there any idea in the community?
    Regards
    Norbert

    Hi,
    please, I am with the same problem
    BAPI_PS_PRECOMMIT dump
    Did you solve this problem???
    Thanks.

  • Creating WBS Element BAPI_BUS2054_CREATE_MULTI

    hello all
    in my zrfc to create WBS element
    i have called following BAPIs
          CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
          CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
            EXPORTING
              i_project_definition = temp_pspid
            TABLES
              it_wbs_element       = it_wbs_element_new
              et_return            = it_return.
         CALL FUNCTION 'BAPI_PS_PRECOMMIT'.
         CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    I have return the zreport to call above RFC
    The values that i am passing to wbs internal table are
    WA_WBS-ZI_PSPID = '1-4275/P'.
    WA_WBS-ZI_POSID = 'T-01117'.
    WA_WBS-ZI_POST1 = 'TEST WBS FROM REPORT'.
    Append WA_WWBS to IT_WBS
    then i pass IT_WBS to my ZRFC
    but i am getting error message at BAPI_BUS2054_CREATE_MULTI
    my question is am I passing parameters in right manner?
    do the hardcoded parameters need some conversion and if yes what do i need to de?
    thanks
    sheetal

    Hi ,
    I want to create a WBS element using the BAPI's  BAPI_BUS2054_CREATE_MULTI .
    I did this sequence of test  :
    BAPI_PS_INITIALIZATION
    BAPI_BUS2054_CREATE_MULTI
    And I have this return
    S    CNIF_PI              004     Individual check for creating the object WBS Element U008-F033-001 required    
    CAn you tell me what to do in order to resolve this problem ( calling a commit after this sequence leads to 'DUMP' bacause no precommit is called before )
    can u send me a code Plz...
    Thanks in advance

  • BAPI_BUS2054_CREATE_MULTI Mandatory I/P values?

    Hi Guys,
                 can anybodytell me what are the mandatory I/P  paramters to be populated for Creation of WBS elements for the BAPI BAPI_BUS2054_CREATE_MULTI?
    Thanks,
    Gopi.

    Hi Ravi,
    I have an problem with the BAPI.
    I want to create a WBS Element in an existing Project and have to consider the level of the wbs element (2, 3, 4).
    I always receive the message that the hierarchy could not be build for the current PSP Element.
    Project Definiton = WA300 and the current structure is:
    WA300
       --> WA300                                 Level 1
           --> W-A300-AG                     Level 2
               --> W-A300-AG-AG          Level 3
    The WBS-Element Structure is filled like this (for example):
    ls_wbs_element-wbs_element = 'WA300AI'.
    ls_wbs_element-description = 'Description of to be created psp element'.
    ls_wbs_element-wbs_up    = 'WA300'.
    So the new structure should be like that:
    WA300
       --> WA300                                 Level 1
           --> W-A300-AG                     Level 2
               --> W-A300-AG-AG          Level 3
           --> W-A300-AI                       Level 2
    In the return structure I get the message :
    ID: CNIF_PI
    NUM: 074
    Can anyone help me?
    When call the BAPI and the element wbs_element-wbs_up is initial and wbs_left is initial, it works but the bapi tries to create the element as Level 1 and thats not allowed in our own validation.
    Thank you very much
    Thomas

  • BAPI_BUS2054_CREATE_MULTI error while creating WBS Element

    Hi Gurus,
    I am trying to create WBS element by using    BAPI_BUS2054_CREATE_MULTI
    but bapi raise an error that I can not understand.
    in return table I got the following error with the error code CJ - 021
    " XXXX-YYYY-ZZZZ WBS Element does not exist "
    But I try to create already? What does 'Does not exist' mean?
    By the way I am using
    CALL FUNCTION 'BAPI_PS_INITIALIZATION'. before using  BAPI_BUS2054_CREATE_MULTI
    thanks in advance, it is an very important
    Mehmet Ali

    Hi.
    I have the same problem. Have you solved?
    Thanks.
    Angie

  • BAPI_BUS2054_CREATE_MULTI - error CNIF_PI - 076

    Hi,
    I'm using BAPI BAPI_BUS2054_CREATE_MULTI to create new WBS elements and sudenly it has started to trow me errors CNIF_PI(076) and CNIF_PI(074).
    Can anyone help me?
    thanks
    Juraj

    I found where the error was ... the wbs_up attribute was filled with an incorrect value.
    thanks

  • BAPI_BUS2054_CREATE_MULTI  pool performance

    hi!
        when i use BAPI_BUS2054_CREATE_MULTI to create WBS,it will read table PRPS.
         My project define  is big ,it now contain a lot of WBS ,
         WHEN create new WBS through fm BAPI_BUS2054_CREATE_MULTI ,it very slow , I trace SQL use ST05 ,
         fm BAPI_BUS2054_CREATE_MULTI  read all WBS infomation from DB,
         HOW can i promote the  performace   ????
    regards.

    Search for notes.
    Rob

  • BAPI_BUS2054_CREATE_MULTI customer fields

    Hello, I'm having trouble using bapi  BAPI_BUS2054_CREATE_MULTI.
    I added some customer fields in EXTENSIONIN but I keep getting the error messages CJ726 and CJ 727 for those fields, they are not availabke for input.
    After debug I found that this error is generated in th FM CJCK_PRPS_FIELD_ATTR_INIT, where for the customer fields they have to start by Z, Y, USR. USE or '/'.
    But this is not the clients case. Is there anyway to validate these fields?
    I might add that in this SAP system, some of these customer fields are obligatory, (it's a Public Administration system, so it has an add-on for this).

    Hi,
    Looking at the Code, it looks like you will need to modify the standard SAP code in the FM to accomodate the fieldnames as per the requirement.
            IF i_fieldname(3) = 'USR' OR
             i_fieldname(3) = 'USE' OR
             i_fieldname(1) = '/'   OR
             i_fieldname(1) = 'Z'   OR
             i_fieldname(1) = 'Y'.
    Thanks and Regards,
    Varshal Kachole

Maybe you are looking for

  • Where to assign GL Account to cost center?

    Hello Friends, Actually in MIGO T.C , I  am issuing the material against the cost center.Now in MIGO T.C ,  in Account Assignment tab i give the cost center and other requied data and save.And in display mode when i check that document than by defaul

  • Sender Agreement problem.. in ID

    In Integration Directory, I am able to create all the things namely, Business Services and Communication Channels, Interface Determination and Receiver Determination and Receiver agreement but I am unable to create the Sender Agreement. Let me explai

  • Opening pdf file in Blackberry 8520 curve

    I am unable to open pdf file in my blackberry 8520 curve. Can anyone help me in this regards. The mobile does't have any pdf reader pre installed. Do we need to install software, if so please send me the link to download or the software itself. Thank

  • Lion: Spinning Ball using Mail - Attempting to "clean" all data

    I've read dozens of threads on the Spinning Ball Syndrome with Lion and Mail. I've tried all of the suggestions and still no luck. My case is unique, and should be simple to solve - because I never set up any mail accounts and am willing to delete AL

  • Can't install or update FrontRow

    I bought a brand new MacBook Pro. It should have come with FrontRow installed. However, it's not in the Applications folder, and when I run Software Update it doesn't offer me any updates. In /library/receipts, I have packages for both FrontRow and t