Error BAPI_ROUTING_CREATE

Hi Expert;
How to solve the below error.
I am assigning multiple components For function BAPI_ROUTING_CREATE .please guide.
A |CPCC_DT |206 |The component to be assigned has not been completely specified
GROUP_COUNTER = 1
SEQUENCE_NO = 0
VALID_FROM = 20100312
VALID_TO_DATE = 99991231
ACTIVITY = 0010
BOM_NO = 00015620
ITEM_NO = 0010
COMP_QTY = 0.830
COMP_UNIT = M2
PLANT = 1000
MATERIAL = 14000233
Thanks.

hi,
solved myself.
last time i set both item_id and item_no same.
        IF ibomallo-datuv IS INITIAL.
          gbapi1012_com_c-valid_from           = l_date.
        ELSE.
          gbapi1012_com_c-valid_from           = ibomallo-datuv.
        ENDIF.
        gbapi1012_com_c-valid_to_date        = '99991231'.
        gbapi1012_com_c-activity             = ibomallo-posnr.
        gbapi1012_com_c-bom_type             = 'M'.
        gbapi1012_com_c-bom_no               = ibomallo-stlnr.
        gbapi1012_com_c-alternative_bom      = chrstlal.
        gbapi1012_com_c-item_id              = ibomallo-itemid.
        gbapi1012_com_c-item_no              = ibomallo-vornr.        gbapi1012_com_c-plant                = ibomallo-werks.
        gbapi1012_com_c-material             = l_matnr.
        gbapi1012_com_c-material_external    = ibomallo-matnr.
        gbapi1012_com_c-bom_type_root        = 'M'.
        gbapi1012_com_c-bom_no_root          = ibomallo-stlnr.
        gbapi1012_com_c-alternative_bom_root = chrstlal.
        gbapi1012_com_c-backflush            = ibomallo-rgekz.
        APPEND gbapi1012_com_c.
        CLEAR gbapi1012_com_c.
thanks,

Similar Messages

  • ERROR IN BAPI  BAPI_ROUTING_CREATE

    Result of check lines:
    E BA 001
    A CP 205 The task list type in structure MTK_CLASS_DATA_INTERFACE does not match the task MATERIALTASKALLOCATI
    THIS ERROR I AM GETTING PLEASE HELP ME

    See BAPI_ROUTING_CREATE / Material Component Allocation
    Kanagaraja L

  • Error in component allocation in BAPI_ROUTING_CREATE to creae routing

    Hi
    I'm using BAPI_ROUTING_CREATE to create BAPI with component allocation.  But my problem is I'm able to create operations but not able to create component allocation. The BAPI is giving me success message, but not creating component allocation.
    In the table BAPI1012_COM_C, I'm populating the following fields:
    GROUP_COUNTER
    VALID_FROM
    VALID_TO_DATE
    ACTIVITY
    BOM_TYPE
    BOM_NO  
    ALTERNATIVE_BOM
    ITEM_NO                  -> value is POSNR field of STPO table
    BOM_TYPE_ROOT  -> value is same as BOM_TYPE
    BOM_NO_ROOT -> value is same as BOM_NO
    ALTERNATIVE_BOM_ROOT  -> value is same as ALTERNATIVE_BOM
    Routing is being created successfully without component allocation.

    See BAPI_ROUTING_CREATE / Material Component Allocation
    Kanagaraja L

  • Error in BAPI_ROUTING_CREATE about Selected Set of Inspection Characteristics

    hi,all
         When I use  'BAPI_ROUTING_CREATE' to batch import Routings , I come across a problem that the Selected Set of Inspection Characteristics can not be imported,and it's  not updateable.
         Here are the parameters I imported to the BAPI about the Inspection Characteristics.
    activity
    operation_id
    cha_master_import_modus = 'N'
    mstr_char
    inspchar = '0010'..
    valid_from = sy-datum.
    valid_to_date = '99991231'.
    char_descr
    pmethod
    smpl_unit
    smpl_quant
    quantitative_ind
    smpl_procedure
    SAMPLING_PROCEDURE_IND
    pmstr_char
    SEL_SET1
    PSEL_SET1
    CAT_TYPE2
    Can anybody help,thanks in advance.

    Its nice to Ask question & then close it saying you find the answer, will you please take some time to Explain what was the solustion of your problem ? Thanks.
    This is a trend i see in SDN, Moderator please request the members to put solustion in before closing the question as answered This will save lot time of others who are searching answare to same questions.

  • Message Error for BAPI_ROUTING_CREATE

    Hi Expert,
    I create routing by using BAPI_ROUTING_CREATE but i've got return message Type A ID CPCC_DT Number 207 Message The operation to be assigned has not been completely specified. I guest that the problem come from table COMPONENTALLOCATION process. Dose anyone experience what am i missing.

    Hi,
    Could you provide more details?
    Please list all fields from COMPONENTALLOCATION table you are filling.
    Regards,
    Pawel

  • BAPI_ROUTING_CREATE creates routing but no operations, without any errormsg

    Hi Seniors,
    I have following problem. I have to create a new routing from an existing routing.
    So far it sounds easy, and it even works for the routing itself.
    But whaever i export to the BAPI it wont create any Operations.
    What i do is:
    Reading the headdata of the existing routing.
    Mapping the headdata to the BAPI-structure which i export to the function.
    Reading the positiondata (operations) of the routing.
    Mapping the positiondata to the BAPI-structure which i export to the function.
    The real problem is that in the return table for the error-messages of the BAPI is only one record. This record is of the type state and tells me that the routing has been created sucessfully.
    I have been searching this forum for quite some time to get an answer to this question, but failed.
    It seems there are quite a LOT of people not knowing exactly how to use this function, since this question is widely spread throughout the forums.
    BUT in most of the cases there is NO answer or well something not too useful.
    Here comes my code example for those who want to have a closer look:
    DATA:        c_matnr          TYPE mara_matnr,
                      wa_plpo          TYPE plpo,
                      lt_plpo          TYPE TABLE OF plpo,
                      wa_plko          TYPE plko,
                      wa_mapl          TYPE mapl,
                      lt_mapl          TYPE TABLE OF mapl,
                      wa_cukn          TYPE cukn,
                      wa_modify        TYPE yic_gs_mod,
                      lt_modify        TYPE yic_gs_mod,
                      wa_bapiplko      TYPE bapi1012_tsk_c,
                      lt_bapiplko      TYPE TABLE OF bapi1012_tsk_c,
                      wa_bapiplpo      TYPE bapi1012_opr_c,
                      lt_bapiplpo      TYPE TABLE OF bapi1012_opr_c,
                      wa_bapireturn    TYPE bapiret2,
                      lt_bapireturn    TYPE yic_tt_return,
                      wa_bapiplfl      TYPE bapi1012_seq_c,
                      lt_bapiplfl      TYPE TABLE OF bapi1012_seq_c,
                      wa_plfl          TYPE plfl,
                      lt_plfl          TYPE TABLE OF plfl.
      DATA:       lv_swap(60)      TYPE c,
                      lv_ix(6)         TYPE n,
                      lv_sttag         TYPE char10,
                      lv_flag          TYPE xfeld,
                      lv_mflag         TYPE xfeld,
                      lv_plnty         TYPE plko-plnty,
                      lv_plnnr         TYPE plko-plnnr,
                      lv_knnum         TYPE cukc-knnum,
                      lv_group         TYPE plko-plnnr,
                      lv_groupcounter  TYPE plko-plnal,
                      lv_subrc         TYPE syst-subrc.
      FIELD-SYMBOLS:        TYPE ANY.
      PERFORM get_headdata                "just a simple select hiding behind this
                      USING     i_plnty
                                i_plnnr
                      CHANGING  wa_plko
                                lv_subrc.
      PERFORM get_posdata                  "just a simple select hiding behind this
                      TABLES    lt_plpo
                      USING     i_plnty
                                i_plnnr
                      CHANGING  lv_subrc.
      SELECT *
      FROM   mapl
      INTO   TABLE   lt_mapl
      WHERE  plnty = i_plnty
      AND    plnnr = i_plnnr.
        Mappen der Arbeitsplankopfdaten in die BAPI-Struktur.
          wa_bapiplko-change_no                     = wa_plko-aennr.
          wa_bapiplko-valid_from                    = wa_plko-datuv.
          wa_bapiplko-del_ind                       = wa_plko-loekz.
          wa_bapiplko-task_list_usage               = wa_plko-verwe.
          wa_bapiplko-plant                         = wa_plko-werks.
          wa_bapiplko-task_list_status              = wa_plko-statu.
          wa_bapiplko-task_measure_unit             = wa_plko-plnme.
          wa_bapiplko-lot_size_from                 = wa_plko-losvn.
          wa_bapiplko-lot_size_to                   = wa_plko-losbs.
          wa_bapiplko-resp_planner_group            = wa_plko-vagrp.
          wa_bapiplko-description                   = wa_plko-ktext.
          wa_bapiplko-old_number_of_task_list       = wa_plko-plnnr_alt.
          wa_bapiplko-recalc_std_values             = wa_plko-flg_capo.
          wa_bapiplko-dyn_modif_level               = wa_plko-qdynhead.
          wa_bapiplko-dyn_modif_rule                = wa_plko-qdynregel.
          wa_bapiplko-sample_drawing_procedure      = wa_plko-qprziehver.
          wa_bapiplko-ind_units_ext_numbering       = wa_plko-extnum.
          wa_bapiplko-ident_key                     = wa_plko-slwbez.
          wa_bapiplko-insppoint_partiallot_assgnmt  = wa_plko-ppkztlzu.
          wa_bapiplko-change_rule                   = wa_plko-chrule.
          wa_bapiplko-object_change_type            = wa_plko-ccoaa.
          APPEND wa_bapiplko TO lt_bapiplko.
        Mappen der Vorgänge (Arbeitsplanpositionsdaten) in die BAPI-Struktur
          LOOP AT lt_plpo INTO wa_plpo.
            lv_ix = sy-tabix.
            CALL FUNCTION 'MAP2E_PLPO_TO_BAPI1012_OPR_C'
              EXPORTING
                plpo                         = wa_plpo
              CHANGING
                bapi1012_opr_c               = wa_bapiplpo
              EXCEPTIONS
                error_converting_curr_amount = 1
                OTHERS                       = 2.
            IF sy-subrc <> 0.
              e_subrc = sy-subrc.
              rfc_exception lc_cant_map_to_bapi_structure.
            ENDIF.
            wa_bapiplpo-sequence_no = 0.
            wa_bapiplpo-work_cntr = ''.
            CONCATENATE 'VG' lv_ix INTO lv_swap.
            wa_bapiplpo-operation_id = lv_swap.
            APPEND wa_bapiplpo TO lt_bapiplpo.
          ENDLOOP.
        BAPI-Aufruf: lege Arbeitsplan an, mit untergeordneten Objekten
          CALL FUNCTION 'BAPI_ROUTING_CREATE'
            IMPORTING
              group             = lv_group
              groupcounter  = lv_groupcounter
            TABLES
              task               = lt_bapiplko
              operation        = lt_bapiplpo
              return             = lt_bapireturn.

    When you are sending the operation details, the sequence no should be masked to the length of the field.
    for example: Sequence no = 0.
    it should be masked as '000000'.

  • Routing Upload - error for insp char

    Hi Guru's,
    I am uploading routing data through 'BAPI_ROUTING_CREATE', in test run data is going correct. But in Porgram it is throwing error message
    ' Inspection Char can not be uniquely assigned to one operation'.
    Except this data related to Routing, Operations, Component Allocation is going correct.
    I am passing sequence_no, operation_id,activity, insp_char, valid_from, master_insp_char,pmaster, modus,char_description,sampling_procedure, samplingunit, sampling_qty.
    error message " you can not uniquely assign insp_char to a single operation."
    With Regards,
    Pravin

    since you are saying that it works from SE37 and not in the program i would guess that some of the values passed (which requires to be in the internal format) are not in the right format. when generally used from se37 system would automatically convert them to internal format.
    for example sequence_no is of type PLNFOLGE (data element) which has got a alpha conversion.
    to convert the values to the right format, double click on the dataelement to get into domain and in definition tab of domain you could see a field called convers. routine. if it has got any value (ALPHA) double click on the value and take the FM name (CONVERSION_EXIT_ALPHA_INPUT in the case of sequence number) using this FM convert the value from external format to internal format.
    for example to convert sequence number from external format to internal format you hve to have a function call like below.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input         = sequence_no
    IMPORTING
       OUTPUT        = sequence_no .
    like wise inspect all the variables involved and find whether there is any alpha conversion for any fieldand carry out the necessary conversion before passin it to the BAPI
    Regards
    Raja

  • BAPI_ROUTING_CREATE comp. assign. ot working with large BOM's (multilevel)

    We use the BAPI_ROUTING_CREATE for the copy of routings from one system to another via ALE.  When we do this for relatively easy BOM's (not to many levels), this works fine.  When we do this for large BOM's (more than 5 levels), the component assignment does not work as expected.  The routing is created without an error, but only a part of the components have been assigned to the correct operation.  When I look at the IDOC in the sending and in the receiving system, the information is correct and the data is transferred correctly to the BAPI.  It just looks like the BAPI cannot handle BOM's this complicated.  Has anybody encountered this problem before?
    Regards,
    Freek

    and have you set a breakpoint at loop at input file and at bapi_po_create ??
    perhaps there is something wrong with the amount of items passed ?
    kind regards
    arthur

  • Functiontemplate from repository was null   BAPI_ROUTING_CREATE

    Hi all,
    i'm trying to set up communication between a third party sistem and R3 via XI. I'm using BAPI_ROUTING_CREATE but , when i send the XML message (you can read it below),   the rfc adapter starts this exception:
    Delivery of the message to the application using connection RFC_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>.
    I'm sure that the bapi is defined into the R3 system, i checked via se37, and the Communication channel for the BAPI is set properly since it works with other bapis.
    May be someone can help me?
    Best Regards
    Luca
    <rfc:BAPI_ROUTING_CREATE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
         <APPLICATION/>
         <BOMUSAGE/>
         <PROFILE/>
         <TESTRUN>
              <BAPIFLAG>' '</BAPIFLAG>
         </TESTRUN>
         <COMPONENTALLOCATION>
              <item>
                   <TASK_LIST_GROUP/>
                   <GROUP_COUNTER/>
                   <SEQUENCE_NO/>
                   <CHANGE_NO/>
                   <VALID_FROM>2009-02-01</VALID_FROM>
                   <CHANGE_NO_TO/>
                   <VALID_TO_DATE>2009-12-31</VALID_TO_DATE>
                   <DEL_IND/>
                   <ACTIVITY/>
                   <OPERATION_ID/>
                   <BOM_TYPE/>
                   <BOM_NO/>
                   <ALTERNATIVE_BOM/>
                   <ITEM_ID/>
                   <ITEM_NO/>
                   <CUTTING_MEASURE_UNIT/>
                   <CUTTING_MEASURE_UNIT_ISO/>
                   <COMP_UNIT/>
                   <COMP_UNIT_ISO/>
                   <BACKFLUSH/>
                   <PLANT/>
                   <MATERIAL/>
                   <BOM_TYPE_ROOT/>
                   <BOM_NO_ROOT/>
                   <ALTERNATIVE_BOM_ROOT/>
              </item>
         </COMPONENTALLOCATION>
         <MATERIALTASKALLOCATION>
              <item>
                   <MATERIAL>A10060</MATERIAL>
                   <PLANT>2000</PLANT>
                   <TASK_LIST_GROUP>50000007</TASK_LIST_GROUP>
                   <GROUP_COUNTER>2</GROUP_COUNTER>
                   <CHANGE_NO/>
                   <VALID_FROM>2009-02-01</VALID_FROM>
                   <CHANGE_NO_TO/>
                   <VALID_TO_DATE>2009-12-31</VALID_TO_DATE>
                   <DEL_IND/>
                   <DOC_NUMBER/>
              </item>
         </MATERIALTASKALLOCATION>
         <OPERATION>
              <item>
                   <TASK_LIST_GROUP>50000007</TASK_LIST_GROUP>
                   <GROUP_COUNTER>2</GROUP_COUNTER>
                   <SEQUENCE_NO>0</SEQUENCE_NO>
                   <CHANGE_NO/>
                   <VALID_FROM>2009-02-01</VALID_FROM>
                   <CHANGE_NO_TO/>
                   <VALID_TO_DATE>2009-12-31</VALID_TO_DATE>
                   <DEL_IND/>
                   <ACTIVITY>0010</ACTIVITY>
                   <OPERATION_ID/>
                   <CONTROL_KEY>PP01</CONTROL_KEY>
                   <OBJ_ID>10000017</OBJ_ID>
                   <OBJECT_TYPE_CIM_RESOURCE>A</OBJECT_TYPE_CIM_RESOURCE>
                   <WORK_CNTR>A4010</WORK_CNTR>
                   <PLANT>2000</PLANT>
                   <STANDARD_TEXT_KEY/>
                   <DESCRIPTION>ASSEMBLY</DESCRIPTION>
                   <OPERATION_MEASURE_UNIT>PC</OPERATION_MEASURE_UNIT>
                   <OPERATION_MEASURE_UNIT_ISO/>
    </rfc:BAPI_ROUTING_CREATE>

    Hi Luca,
    Please see the thread if you havn't yet.. u may get some help
    RFC error
    RfcClientException: functiontemplate from repository was <null>

  • Error "enter a numeric value"  I am not getting this error when i directly

    We are using BAPI "BAPI_ROUTING_CREATE". I am using an excel file for input. I am getting errors against Standard Values and Unit of measure of Standard Values while running the BAPI through an ABAP program.
    The errors are:
    1. enter a numeric value
    2. Enter a unit of dimension time for standard value
    I am not getting this error when i directly run BAPI_ROUTING_CREATE through SE37.
    Kindly help

    Hi, I had the same problem. Solution for me:
    OPERATION-ACTIVITY = <T>-ACTIVITY.   " activity for example "5"  ---> problem error "Enter a numeric value"
    OPERATION-ACTIVITY = <T>-ACTIVITY.   " activity for example "0005"  ---> no problem --> include leading 0
    so I chanded <t>-activity field type to N(4) and no problem...
    Bye, B.

  • Creating Routings Operations using BAPI_ROUTING_CREATE

    Hello,
    I am creating Routing operations using BAPI_ROUTING_CREATE. The parameters which I am using are:
    PROFILE
    TASK
    MAT_ALLOC
    OPERATIONS.
    The group counter and group are given internal number assignment.
    In my case for 1 material number plant combination only 1 task exist. This can be considered as Header record. For this Header record there are multiple operations. My program calls BAPI only When any combination of MATNR or WERKS changes in MAT_ALLOC. It works fine for 1 operation but fails incase of multiple operations. The error is routing material assignment does not exist. I have checked for all madatory parameters in FM documentation. The BAPI when executed independently works fine but in program it fails.File format is
    Mat. No. Plant Key Date Status Usage Operation Number Work center Control Key Description val unit.
    I am calling BAPI only when Mat no or plant changes.Unitl then I append the data in internal tables.
    Passing the data in this format every operation is given Mat No and Plant, then y it is giving error routing material assignment does not exist.
    Please help in this regard.
    Thanks
    Khushboo

    Well actually that´s almost exactly what my task is as well.
    So what i do is:
    - reading the headdata of the given routing (the one which is to be copied)
    - reading the positiondata of the given routing (the one which is to be copied)
    then calling the BAPI_ROUTING_CREATE while exporting the headdata and the positiondata to the BAPI.
    It works perfect for the routing itself, but the BAPI doesnt create any operations while it displays a sucess message and NO errormessages.

  • Upload Multiple Operation using BAPI_ROUTING_CREATE

    Sir,
    I have to upload routing operation using this BAPI_ROUTING_CREATE. I have created a upload program for that.
    I have collect the data in Task, material and Operation table. They have multiple line item against One Material.
    but after executing this bapi gives this type of error.
    E
    Create task list: Consistency check was not successful
    A
    For further processing, the routing entry is missing.
    So Please Guide me how to do this.
    Data :
    Multiple Operation have One Material.
    Thanks!
    Ram

    Well actually that´s almost exactly what my task is as well.
    So what i do is:
    - reading the headdata of the given routing (the one which is to be copied)
    - reading the positiondata of the given routing (the one which is to be copied)
    then calling the BAPI_ROUTING_CREATE while exporting the headdata and the positiondata to the BAPI.
    It works perfect for the routing itself, but the BAPI doesnt create any operations while it displays a sucess message and NO errormessages.

  • How to use componenet allocation in BAPI_ROUTING_CREATE

    Hi Experts,
                    I am creating routing using bapi BAPI_ROUTING_CREATE. In that i am passing header,operation and componenet
    allocation level but its giving error as 'operation has to be assigned is not completely specified'. Kindly anyone help me regarding this..
    Thanks
    Ramesh Manoharan
    Edited by: ramesh.manoharan on Jan 30, 2010 4:10 PM

    hello if the problem is with operation...then pass the below data for header and operation it creates routing i have verified.....
    Populate BAPI_ROUTING_CREATE .....using following structures and fields
    BOMUSAGE                                       1
    TASK
    GROUP_COUNTER                                 1
    TASK_LIST_USAGE                               1
    TASK_LIST_STATUS                              4    
    TASK_MEASURE_UNIT                           EA
    LOT_SIZE_FROM                                    190
    LOT_SIZE_TO                                          300
    DESCRIPTION                                          TEST123
    OPERATION
    GROUP_COUNTER                                   1
    ACTIVITY                                               0010(operation number)
    CONTROL_KEY                                      PP01
    PLANT                                                    0001
    DESCRIPTION                                           TEST
    OPERATION_MEASURE_UNIT                  EA
    DENOMINATOR                                       1
    NOMINATOR                                            1
    BASE_QUANTITY                                    12
    after this dont forget to use BAPI_TRANSACTION_COMMIT ( go to se37 ..test-test sequences---enter BAPI_ROUTING_CREATE and BAPI_TRANSACTION_COMMIT)
    and execute ..i have tested this it works perfet..create routing with 1 opeartion 0010...
    for componenet allocation i am looking..but i have some access problems ......as u said u have error in opeartin that means what  ever data you are using for COMPONENETALLOCATION is correct.
    first create one routing with header and one operation only using data i have specified...if it works then for next routing u can add fields into componenent allocation and test.....remember for componenet allocation..BOM needs to be there for that material assigned.
    hope i am able to clear some of your confusion..cheers....
    Abhijeet

  • Problem in BAPI_ROUTING_CREATE

    Hi Friends,
    I am trying to create ROUTING by BAPI_ROUTING_CREATE,but it's giving me some errors like,
    W CPCC_DT              009 The valid-from data has been set from today's date
    E CPWB                 210 Enter unit of measure
    E CPCL                 002 Create task list: Consistency check was not successful
    A CPCC_DT              210 For further processing, the routing entry is missing
    Can any one help me by providing sol for this or any other FM to create ROUTING.
    Points will be rewarded.
    Thanks in advance,
    PRB.

    Check with Links
    Re: Confusing of useing BAPI_ROUTING_CREATE
    Re: USE BAPI  BAPI_ROUTING_CREATE
    Try to create Routing manullay at CA01 and see the results
    Thanks
    Seshu

  • Query on BAPI_ROUTING_CREATE

    Hi All,
    I am using BAPI_ROUTING_CREATE to create routings. My requirement is that while creating a routing if user chooses reference, I donot want to increment the Group counter (PLNAL) - only one of the fields ZKRIZ(Counter for additional criteria) or ZAEHL (Internal counter) should get incremented.
    While passing parameter TASK and MATERIAL task allocation i tried to keep the PLNAL same. But, the BAPI returns an error saying :-
    "Task list N 50000001 7 already exists"
    where, 50000001 = PLNNR (Key for Task List Group) AND
    7 = PLNAL (Group Counter)
    How do i keep the PLNAL same incrementing only the ZKRIZ / ZAEHL field ?
    Regards,
    Ashish

    Ashish,
            It looks like the BAPI_ROUTING_CREATE considers each record as a new task list for the routing, basically it looks like it is intended for creation rather than modification which is your requirement.
    Now if I see your requirement, I think if you want to go by the Bapi way, you should create a custom BAPI which based on user selection creates routing using BAPI_ROUTING_CREATE or modifies routing
    based on custom code which you would implement. The modification part can be implemented as
    a call transaction.
    Or you can implement the whole functionality as a call transaction inside a BAPI or FM.
    Sojan

Maybe you are looking for

  • Error while executing ODI scenario from command prompt

    Hi all, I am trying to execute a scenario of a package( that I have created in designer) in OS command prompt in Windows in the following way- C:\ODIHOME\oracledi\bin>Startscen DIM_TECHNOLOGY_PACKAGE 001 Global LEVEL5 However I am getting the followi

  • MacBook Pro 13" unibody mid 2012 power button not working!

    My macBook won't start (or shut off) by pressing power button. It does however start if I connect maglock, I've troubleshooted and am all out of ideas.

  • Model questions

    I am gonna give the Oracle 9i DBA first modules(SQL and Fundamental 1) exams. Can anyone supply some model question papers for online which can give me some idea??? Thanks in advance.

  • ...? Poll ?... Which Import method do you use?

    LR has 4 different ways of Importing images. Which way do you bring in new images...and why that way? My personal preference is to refer to existing folder/file trees but this would screw up things as I move images from hard drive to CD/DVDs.

  • Transferring some files only

    I just got a new iMac and when it asked me if I wanted to transfer via firewire ALL my files from another Mac, I said no because I don't want all the garbage I had on the G5 to go into the new. But I do want some of the files. Can I do that via firew