Weird situation with MOVE-CORRESPONDING in standard SAP include!!

Hello Experts,
We have a standard_SAP_field_1 (attached to a standard_SAP_data_element_1) in standard_SAP_structure_1, but unfortunately its NOT there in KOMP structure!! Hence I added this standard_SAP_field_1 with in customer name space as 'ZZ_standard_SAP_field_1' by attaching the same standard_SAP_data_element_1.
The standard_SAP_data_element_1 attributes are as CHAR, 2.
Now, in one of the standard SAP include of VA42.....we have a statement as below,
MOVE-CORRESPONDING standard_SAP_structure_1 TO komp.
Then the value (say, AA) should transfer from standard_SAP_field_1 of standard_SAP_structure_1  to ZZ_standard_SAP_field_1 of KOMP, right? but, its not happening!! pls. let me know the reason and how to fix it?

Okay...
Field one is called: FIELD1
Your own created field two is called ZZ_FIELD1.
And now... MOVE-CORRESPONDING. Do a F1 on that and tell me: do the two fieldnames correspond?

Similar Messages

  • Weird situation with BINARY SEARCH in READ statwment??

    Hi Experts,
    I got weird situation with BINARY SEARCH !! bcoz, below is my code,
    data: begin of it_vbap occurs o,
            vbeln like vbap-vbap,
            posnr like vbap-posnr, ( i also tried like, posnr(6) type n)
    end of it_vbap.
    data: counter type i ( i also tried like, counter(6) type n)
    my it_vbap is filled like below,
    vbeln----
    posnr
    12345678-------000001
    12345678-------000002
    12345678-------000003
    12345678-------000004
    12345678-------000005
    12345678-------000006
    sort it_vbap by posnr. (*)
    clear counter
    loop it_vbap.
    counter = counter + 1.
    read table it_vbap with key posnr = counter
    binary search (after commenting the above SORT * marked statement, then,if I delete BINARY SEARCH, then its working!!)
    if sy-subrc = 0.
    here is my logic.
    endif.
    endloop.
    so, now, for
    1st loop the sy-subrc = 0.
    2nd loop the sy-subrc = 0.
    3rdloop the sy-subrc NE  0.
    4th loop the sy-subrc = 0.
    5th loop the sy-subrc NE 0.
    6th loop the sy-subrc NE 0.
    so, why, ebven though there r all entires in it_vbap, why am getting the sy-subrc NE 0??
    Is the reason that, there r less number of entries in it_vbap?? and am using BINARY SEARCH??
    thanq
    Edited by: SAP ABAPer on Dec 4, 2008 8:33 PM
    Edited by: SAP ABAPer on Dec 4, 2008 8:37 PM
    Edited by: SAP ABAPer on Dec 4, 2008 8:37 PM

    Hello
    The following coding works perfect (6x sy-subrc = 0) on ERP 6.0:
    *& Report  ZUS_SDN_ITAB_BINARY_SEARCH
    REPORT  zus_sdn_itab_binary_search.
    TABLES: vbap.
    DATA: BEGIN OF it_vbap OCCURS 0,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr, "( i also tried like, posnr(6) type n)
    END OF it_vbap.
    DATA: counter TYPE posnr.
    START-OF-SELECTION.
      " Fill itab with data:
    *  12345678-------000001
    *  12345678-------000002
    *  12345678-------000003
    *  12345678-------000004
    *  12345678-------000005
    *  12345678-------000006
      REFRESH: it_vbap.
      CLEAR: vbap.
      DO 6 TIMES.
        it_vbap-vbeln = '12345678'.
        it_vbap-posnr = syst-index.
        APPEND it_vbap.
      ENDDO.
      SORT it_vbap[] BY posnr.  " for BINARY SEARCH
      BREAK-POINT.
      clear counter.
      loop at it_vbap.
      counter = counter + 1.
      READ TABLE it_vbap WITH KEY posnr = counter
      BINARY SEARCH.  " (after commenting the above sort * marked statement, then,if i delete binary search, then its working!!)
      IF sy-subrc = 0.
        "here is my logic.
      ENDIF.
    ENDLOOP.
    END-OF-SELECTION.
    By the way, if your requirement is to check whether the first item has POSNR = '000001', the second item has POSNR = '000002' and so on then you can simplify your coding like this:
    counter = 0.
    LOOP AT it_vbap.
      counter = syst-tabix.
      IF ( it_vbap-posnr = counter ).
        " put in here your logic
      ENDIF.
    ENDLOOP.
    Regards
      Uwe

  • Is there any report On Goods Movement Monitoring in Standard SAP ?

    Is there any report On Goods Movement Monitoring in Standard SAP ?
    Please send me.

    Hi,
    You can use MB5B for checking goods movement in a particular plant.
    Regards
    Noopur

  • Problem with move-corresponding

    Hi,
    I have these codes below:
    TYPES: BEGIN OF t_employee1,
            carrid LIKE spfli-carrid,
            connid LIKE spfli-connid,
            countryfr LIKE spfli-countryfr,
          END OF t_employee1.
    DATA: i_employee TYPE STANDARD TABLE OF spfli WITH HEADER LINE,
          i_employee1 TYPE STANDARD TABLE OF t_employee1 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS: s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
      SELECT * FROM spfli INTO TABLE i_employee
    WHERE carrid IN s_carrid.
        MOVE-CORRESPONDING i_employee TO i_employee1.
    But when i debug the program, carrid, connid and countryfr of i_employee do not move to i_employee1...
    is there somethig wrong with my codes???
    Thanks a lot!

    Change ur code as shown below:
    TYPES: BEGIN OF t_employee1,
    carrid LIKE spfli-carrid,
    connid LIKE spfli-connid,
    countryfr LIKE spfli-countryfr,
    END OF t_employee1.
    DATA: i_employee TYPE STANDARD TABLE OF spfli WITH HEADER LINE,
    i_employee1 TYPE STANDARD TABLE OF t_employee1 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS: s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF BLOCK b1.
    START-OF-SELECTION.
    SELECT * FROM spfli INTO TABLE i_employee
    WHERE carrid IN s_carrid.
    if sy-subrc = 0.
    loop at i_employee.
    MOVE-CORRESPONDING i_employee TO i_employee1.
    append i_employee1.
    endloop.

  • Weird situation with imessage (3 phones on same ID)

    My daughters & I all have iPhones (youngest has a 3Gs & oldest and myself 4G). I also have an iPad 2 (got it for Christmas 2011). All are running newest OS. Never have had a problem with iMessage before, until April 9 when my iPhone battery drained & it was super late and I was messaging my oldest to get home immediately....so I had to use my iPad 2 to continue texting her. Ever since I did this, we she & I message each other it does NOT alert us that we got a message, because it shows up as a blue message like we sent it to ourselves & my other daughter gets the message as well, like it came from her sister (even if it's a message I sent to the oldest).
    After this problem became apparent, I shut off my iPad 2 iMessenger. But the problem STILL is occuring. I have even turned off iMessage on my iPhone 4 & just texted for about a week. Then turned it back on & situation STILL is occuring.
    Please someone HELP us. I need to know that my girls got their messages. All of our devices are under the same Apple ID (could this be the problem?) & can we use different IDs, but still access all of our purchases (we have almost 500 apps on this ID & way more songs than that).

    It's more that likely the same ID's are causing the problem.  http://support.apple.com/kb/HT3529 
    Probably need to create a separate ID for your children.

  • Strange situation with joins!!!

    Hi,
    I am having a weird situation with joins. I have two tables "EMPLOYER" and "ADDR". Table "ADDR" has columns "ADDRESS_ID" and "ADDRESS1".
    Table "EMPLOYER" has two columns, "BUS_ADDRESS_ID" and "MAIL_ADDRESS_ID" which are left outer joined to the "ADDR" table on "ADDRESS_ID". I have also created an alias for "ADDR" to get both addresses.
    The logical table Employer has two LTS, one with "ADDR" and one with "ADDR1". (I do not want to create one LTS with both the tables as left outer joins, that will create other problems)
    When I query EmployerID,EmployerName,ADDR.ADDRESS1,ADDR1.ADDRESS1, I get the correct results, but the query is very slow.
    I looked at the log and there is no second left outer join* at all, but the results are correct!!!. I have attached the log sequence.
    -------------------- Logical Request (before navigation):
    RqList distinct
    EMPLOYER.EMPLOYER ID as c1 GB,
    EMPLOYER.EMPLOYER NAME as c2 GB,
    EMPLOYER.PRIMARY ADDRESS 1 as c3 GB,
    EMPLOYER.MAILING ADDRESS 1 as c4 GB
    DetailFilter: APPLIED EMPLOYER.EMPLOYER ID = 7501
    OrderBy: c1 asc, c2 asc, c3 asc, c4 asc
    +++USER1:1750000:1750004:----2009/03/04 15:22:22
    -------------------- Sending query to database named DEV (id: <<2378603>>):
    select T30717.EMPLOYER_ID as c1,
    T30717.EMPLOYER_NAME as c2,
    T44205.ADDRESS_1 as c3,
    T30717.MAIL_ADDRESS_ID as c4
    from EAPP_EMPLOYER T30717, ADDR T44205
    where ( T30717.BUS_ADDRESS_ID = T44205.ADDRESS_ID (+) ) and ( T30717.EMPLOYER_ID = 7501 )
    order by c4
    +++USER1:1750000:1750004:----2009/03/04 15:22:22
    -------------------- Sending query to database named DEV (id: <<2378624>>):
    select T43657.ADDRESS_1 as c1,
    T43657.ADDRESS_ID as c2
    from
    ADDR T43657
    order by c2
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Query Status: Successful Completion
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Rows 1, bytes 160 retrieved from database query id: <<2378603>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Physical query response time 0 (seconds), id <<2378603>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Rows 0, bytes 0 retrieved from database query id: <<2378624>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Physical query response time 0 (seconds), id <<2378624>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Physical Query Summary Stats: Number of physical queries 2, Cumulative time 0, DB-connect time 0 (seconds)
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Rows returned to Client 1
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Logical Query Summary Stats: Elapsed time 8, Response time 7, Compilation time 0 (seconds)
    Has anyone come across this situation? I have used the same concept in the same RPD for another model, but that used Oracle 9i as the datasource. This one uses Oracle 8i.
    Thanks
    rkingmdu

    1) Have you used dfferent joins for the 2 versions of the addr table (origianal and alias).
    i.e. one joins on bus_addr_id to employer and
    the other joins to mail_addr_id to employer - *+{color:#ff0000}YES{color}+*
    2) do both have left outer join specified? - *+{color:#ff0000}YES{color}+*
    3) can you run employee, business_addrss query once
    then run employee, mail_addrss query once separately, to see if the individual queries give correct results? - *+{color:#ff0000}YES, I get the correct results{color}+*
    4) also check if the business_addrss and mail addrss in the logical employer table are mapped to different LTSs - *+{color:#ff0000}YES, they are{color}+*

  • Error in Standard SAP movement type 309?

    Path: SPRO > Logistic execution > Warehouse Management > Interfaces > Inventory Management > Define
    Movement type > Assign WM Movement Type References to IM Movement Types
    IM Movement type 309 has as Reference Movement types WM 301, 302 and 309.
    IM Movement type 311 has as Reference Movement types WM 311, 312 and 309.
    Path: SPRO > Logistic execution > Warehouse Management > Interfaces > Inventory Management > Define
    Movement type > LE-WM Interface to Inventory Management
    Reference Movement type 301 has WM Movement type 301.
    Reference Movement type 302 has WM Movement type 302.
    Reference Movement type 309 has WM Movement type 309.
    Reference Movement type 311 has WM Movement type 311.
    Reference Movement type 312 have WM Movement type 312.
    Path: SPRO > Logistic execution > Warehouse Management > Activities > Transfers > Define Movement
    types
    WM Movement type 301 has Destination Storage type 920.
    WM Movement type 302 has Source Storage type 920.
    WM Movement type 309 has Source and Destination Storage type 922.
    WM Movement type 311 has Destination Storage type 9210.
    WM Movement type 312 has Source Storage type 921.
    In my opinion this means that if I make an IM movement with movement 309 the material will be picked from a Storage
    bin and moved to Storage type 920. After the change the material will be brought back from Storage type 920 to the same Storage bin.
    The change will be done with WM Movement type 309 in Storage type 922.
    This creates negative stock in both Storage type 920 and 922.
    In my opinion this means that if I make an IM movement with movement 311 the material will be picked from a Storage
    bin and moved to Storage type 921. After the change the material will be brought back from Storage type 921 to the same Storage bin.
    The change will be done with WM Movement type 309 in Storage type 922.
    This creates negative stock in both Storage type 920 and 922.
    Is this an error in SAP standard? Should I Change the Source and Destination Storage types of Movement types 301,302,311 and 312 to 922?

    Hi,
    Please check wheather the material type of the material belongs to NLAG/UNBW or any other type which will not have qty/value updations for that plant at Attributes of the material type at SPROlOGISTICS GeneralMaterial mastermaterila types
    Or take the question  mark which is there on the error screen so that the information will become self explanatory.
    Please reply back with your info.

  • Populating our log message along with standard sap log in ck11n.

    Hi all,
    I have developed a user exit which is used in costing of material using ck11n.
    Here i have to show our custom log message along with the standard log shown by standard sap system after costing run is complete.
    I got one FM-- CM_F_MESSAGE  which is used by SAP. But i want the message along with SAP messages and not separately.
    Can u help me out for this. its very urgent.
    Thanks in advance.

    Hi
    I'm not sure because I don't know that trx, but I seem the function group of that function manages a log, so you can try.
    This is an extract of abap code of SAPLCKDI where that fm is used:
    CALL FUNCTION 'CM_F_MESSAGE'
       EXPORTING
         ARBGB = Y_CMF-CK
         MSGNR = '327'
         MSGTY = Y_CMF-W
         MSGV1 = SICHT
         MSGV2 = KLVAR.
    So I suppose you should call it by this way:
    CALL FUNCTION 'CM_F_MESSAGE'
       EXPORTING
         ARBGB = <your message class>
         MSGNR = <message number>
         MSGTY = <message type>
         MSGV1 = <text 1>
         MSGV2 = <text 2>
         MSGV3 = <text 3>
    I think MSGV* is optional parameter.
    Max

  • Retain standard SAP order type after copying with user defined order type

    Hello SAP Gurus,
    We have a requirement of retaining the standard SAP order types after copying with User defined order types. But the issue is we don't want to see the standard SAP order type such as PM01, PM02 in production system while using transaction like IW31 etc.
    Is there anybody who has answer to retain these stanadard SAP order types without deleting from system configuration?
    Thanks in advance.
    Cheers,
    Vaibhav

    Vaibhav,
    When you F4 on the order type field in IW31 you will get the popup showing the order type list. At the top of this list is a button with a green "+" sign (Insert in personal list).
    You can use this button to select your favourite list.
    This function is available in most F4 drop-down lists.
    However, you cannot set this setting for all users. You will need to write an ABAP program to do this.
    PeteA

  • List of standard SAP Reports with their description

    I nned to have a list of standard SAP reports along with their description. Is there a way to retrieve this by a T-Code?
    Please help asap.

    Run the T-code
    System -> Status -> Program
    TSTC table (SE16) has the complete list of all t-codes that exists in your system and their program name.
    Table TSTCT will give you the description of the t-code.
    Cheers.
    Ashish

  • Report inventory at historical exchange rate with standard SAP

    Has anyone had to run reports for inventory at historical exchange rates in the US.
    Can this be achieved with standard SAP?
    Thanks in advance for all help.
    Mahantesh Nashi

    Hi
    To understand why the system behaves in that way, the most important
    thing is to understand how area 01 is posting its values:
    As you will know, area 01 is the only area that is posting its values
    "online" (this means that APC values will be updated in the G/L directly
    when posting to an asset). It is a technical matter that this "Online"-
    posting will always be done to ALL(!) ledgers that are defined in the
    company code. So whatever Ledger group you assign to depreciation area
    01, this will not be considered by any APC value posting, APC
    transactions (as well as write-ups) will always be posted in ANY ledger
    group in G/L with the values from area 01.
    If you then want to setup a scenario in Fixed Asset Accounting, where
    you post different valuations (local GAAP / IFRS) to a different ledger
    group in G/L for parallel valuation, then you have to use (in total) 3
    depreciation areas in the following way. For each additional "valuation"
    for which you have additional ledgers defined in G/L, and for which you
    want to get different values as those posted in area 01, you need also
    two additional depreciation areas (1 real and 1 derived area) in
    asset accounting.
    So a typical dep.area setting for a parallel ledger is like:
               Real      Posting to G/L         Ledger
    Area 01     X            1                   0L
    Area XX     X            3                   XX (your ledger code)
    Area YY                  6                   XX (your ledger code)
    Acquisition/transf/retirement postings in area 01 go to all ledgers
    independently of your setting in OADB. And, if any difference occurs
    between area 01 an area XX this is posted trough the derived area YY
    (posting indicator 6).
    blaz

  • Create standard sap "SAVE" button along with ALV grid buttons

    I need to create a standard SAP "Save" button  in my ALV GRID display in the application tool bard
    I copied the PF-Status 'standard' from a SAP program and assinged it here.
    When i try to add the SAP save buttion by using this standard pf-status , its not getting displayed in the application tool bar.
    But in STandard TOOl bar (in menu painter ) , when i assign save its displayed in the screen .
    I need this to be displayed in the application tool ba
    Please suggest me how to do this.
    Thanks in advance.

    Hello,
      Application of ALV means the place where the buttons(standard for ALV) like sort,add,delete,copy etc are dipslayed.IF u need need to add a save button on the same toolbar/same place u need to copy the standard GUI status of standard ALV program .For that go to SE80 , give the program name as SAPLSLVC_FULLSCREEN
    In the GUI status u'll find the status named as STANDARD_FULLSCREEN ....Right click on it and give the "TO Program " as your program.Now once u activate ur program u'll find the same status there.
    add ur save button in the status by edidting it. Now u need to write the FORM ENDFORM for user command and assign the form name in caps to the USER_COMMAND parameter in the func module REUSE_ALV_GRID_DISPLAY.
    Hope this help.
    Regards,
    Neeraj

  • About the move corresponding

    hi,
           can anyone say about the diff... between the  move corresponding  and move statment..
    wat is the diff.. move corresponding and append stmt.. in which situation we need to use this....

    Hi
    Reward if help.
    MOVE-CORRESPONDING wa_tab1 to wa_tab2.************ End
    MOVE: wa_tab1-fld1 to wa_tab2-fld1,      wa_tab1-fld2 to wa_tab2-fld2,      wa_tab1-fld3 to wa_tab2-fld3,
    Assigning Values with MOVE
    To assign the value of a data object source to a variable destination, use the following statement:
    MOVE source TO destination.
    or the equivalent statement
    destination = source.
    The content of source remains unchanged, source does not therefore have to be a variable - it can also be a literal, a text symbol, or a constant. You must always specify decimal points with a period (.), regardless of the user’s personal settings.
    Multiple assignments
    f4 = f3 = f2 = f1.
    are also possible. ABAP processes them from right to left as follows:
    MOVE f1 TO f2.
    MOVE f2 TO f3.
    MOVE f3 TO f4.
    In the MOVE statement (or when you assign one value to another with the equal sign), it is not possible to specify the field names dynamically as the contents of other fields. If you need to do this, you must use field symbols .
    The source and target fields can be of different data types. The result of the value assignment depends on whether these data types are compatible and whether a type conversion can be performed. If there is no conversion rule between the data types in question, no assignment can be made.
    DATA: t(10)  TYPE c,
          number TYPE p DECIMALS 2,
          count  TYPE i.
    t = 1111.
    MOVE '5.75' TO number.
    count = number.
    Following these assignments, the fields t, number and count have the values ‘1111      ’, 5.75, and 6 respectively. When you assign the number literal 1111 to T, it is converted into a character field with length 10. When you assign number to count , the decimal number is rounded to an integer (as long as the program attribute Fixed pt. arithmetic has been set).
    Assigning Values Between Components of Structures
    The rules for value assignments between data objects also apply to structures. With the command
    DATA: struct1 TYPE structure,
          struct2 TYPE structure.
    struct1 = struct2.
    two structures of the same type can be assigned to one another without difficulty. Here, the entire source structure is seen as a unit and copied to the source structure. It is then possible to access the components individually again. If the structures in question are not compatible, see the conversion rules for structures.
    In practice, however, you will often only need to assign certain components of a structure to be certain components of another structure. ABAP has a special statement for this purpose:
    MOVE-CORRESPONDING sourcestruct TO destinationstruct.
    This statement assigns the contents of the components of structure sourcestruct to the components of the destinationstruct structure that have identical names.
    When it is executed, it is broken down into a set of MOVEstatements, one for each pair of fields with identical names, as follows:
    MOVE sourcestruct-comp1 TO destinationstruct-comp1.
    MOVE sourcestruct-comp2 TO destinationstruct-comp2.
    Any necessary type conversions are performed individually.
    DATA: BEGIN OF address,
            firstname(20) TYPE c VALUE 'Fred',
            surname(20) TYPE c VALUE 'Flintstone',
            initials(4) TYPE c VALUE 'FF',
            street(20) TYPE c VALUE 'Cave Avenue',
            number TYPE i VALUE '11',
            postcode(5) TYPE n VALUE '98765',
            city(20) TYPE c VALUE  'Bedrock',
          END OF address.
    DATA: BEGIN OF name,
            surname(20) TYPE c,
            firstname(20) TYPE c,
            initials(4) TYPE c,
            title(10) TYPE c VALUE 'Mister',
          END OF name.
    MOVE-CORRESPONDING address TO name.
    In this example, the values of name-surname, name-firstname and name-initials are set to 'Flintstone’, ‘Fred’, and 'FF'. name-title always has the value ‘Mister’.
    Append Structure->Append structures are used for enhancements that are not included in the standard. This includes special developments, country versions and adding customer fields to any tables or structures.
    An append structure is a structure that is assigned to exactly one table or structure. There can be more than one append structure for a table or structure.
    The following enhancements can be made to a table or structure TAB with an append structure:
    · Insert new fields in TAB,
    · Define foreign keys for fields of TAB that already exist,
    · Attach search helps to fields of TAB that already exist,
    These enhancements are part of the append structure, i.e. they must always be changed and transported with the append structure.
    Pls Reward if help.

  • VC - Report for charateristics with their corresponding BOM components?

    In our company, we define our finished products as configuration material.That means we have
    used the variant configuration(VC) in SAP.
    We have created super BOM for our finished products. And when our sellers create sales order
    in SAP ,they will choose the configuration,and after they choose that,the BOM for production
    will be formed.
    For example,just like computer as finished products ,customer may choose different
    configurations. For example ,hard disk ,customer may choose 120G or 200G.
    In SAP ,to realise that ,we will create one charateristic as HARD DISK, and it has two
    characteristic values:120G and 200G.
    And in our super BOM for computer ,we will write object dependency(OD) for two components:
    one is 120G hard disk material,we may write :TZ_HARD_DISK = '120G' ; the other is 200G hard disk material ,we may write: TZ_HARD_DISK = '200G". That means when customer create a order and choose 120G hard disk ,the 120G hard disk material will be a component in the BOM,and the 200G hard disk wiil not be a component in the BOM.
    My question is that there is correspondence relationship between charateristic and BOM component(object dependency as link), can we get a report or a list to show all the charateristic with their corresponding BOM components?
    By use CT11(find characteristics in object dependency) and CU04 (find object dependency with BOM component),we could find BOM component once a time.
    So there is a report to show all the charateristic with their corresponding BOM components?
    By ABAP development? Or there is standard report? Or ther is third party tools?
    Thanks for any reply!

    Are there any other experts who are reach in the Variant Configuration of SAP know?
    If there is a report to show all the charateristic of Variant Configuration with their corresponding BOM components?
    We are looking for the standard report.
    By use CT11(find characteristics in object dependency) and CU04 (find object dependency with BOM component),we could find BOM component once a time.
    Are there another TCODE or programme like CT11 but can find many characteristics in object dependency) once a time?By now ,use CT11, we only can find one characteristics in object dependency once a time?
    Only by ABAP development? Or there is standard report? Or ther is third party tools?
    Edited by: Fei Liu on Mar 17, 2009 7:19 AM

  • Dump while doing goods issue against order with movement type 261

    Hi Team,
    We are integrating Asset management process along with the goods issue against the order which is created with a business partner for movement type 261.
    when we try to complete the process the system gives us a dump as described below.
    please look through the dump and advice for the same.
    Short text
        The current application triggered a termination with a short dump.
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    Error analysis
        Short text of error message:
        System error in the FI/CO interface
        Long text of error message:
         Diagnosis
             Updating of the FI/CO interface was called with object type "MKPF"
             yet the checks were run for object type "AMBU".
         System Response
             Checking and updating must be for the same object type.
         Procedure
             It has to do with a system error from the calling applications.
        Technical information about the message:
        Message class....... "RW"
        Number.............. 103
        Variable 1.......... "MKPF"
        Variable 2.......... "AMBU"
       Variable 3.......... " "
       Variable 4.......... " "
    rigger Location of Runtime Error
       Program                                 SAPLMBWL
       Include                                 LMBWLU21
       Row                                     62
       Module type                             (FUNCTION)
       Module Name                             MB_POST_GOODS_MOVEMENT
    46    IF xmkpf-xabln IS INITIAL.                               "note 434093
    47        CALL FUNCTION 'MB_XAB_NUMBER_GET'.                   "note 434093
    48    ENDIF.                                                   "note 434093
    49
    50 ENHANCEMENT-POINT MB_POST_GOODS_MOVEMENTS_01 SPOTS ES_SAPLMBWL STATIC.
    51
    52 ENHANCEMENT-POINT MB_POST_GOODS_MOVEMENTS_02 SPOTS ES_SAPLMBWL.
    53    CALL FUNCTION 'MB_CREATE_MATERIAL_DOCUMENT_UT'
    54         EXCEPTIONS
    55           error_message = 4.
    56 *  As soon as we have started to put things into UPDATE TASK, we must
    57 *  ensure that errors definitely terminate the transaction.
    58 *  MESSAGE A is not sufficient because it can be catched from
    59 *  external callers which COMMIT WORK afterwards, resulting in
    60 *  incomplete updates. Read note 385830 for the full story.
    61    IF NOT sy-subrc IS INITIAL.
    >>>       MESSAGE ID sy-msgid TYPE x NUMBER sy-msgno WITH            "385830
    63                  sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    64 *     MESSAGE A263.
    65    ENDIF.
    66 * Optische Archivierung
    67 * Spaete Erfassung mit Barcode
    68 * Redesign of barcode handling -> note 780365
    69   PERFORM barcode_update(sapmm07m) USING xmkpf-mblnr
    70                                          xmkpf-mjahr
    71                                          barcode.
    72
    73   MOVE-CORRESPONDING xmkpf TO emkpf.
    74   CALL FUNCTION 'MB_MOVEMENTS_REFRESH'
    75     EXCEPTIONS
    76       error_message = 4.
    77    MOVE-CORRESPONDING xmkpf TO emkpf.
    ource Code Extract
    ine  SourceCde
      32 *    BKPF as well. There is no other way to forward XBLNR to FI as not
      33 *    every document is posted by MB_CREATE -> a new function module in
      34 *    MBWL for transferring the information, called by FI, meant to load
      35 *    the complete function group for all MBxx postings when this isn't
      36 *    required (Performance). Would be the better way to transport the
      37 *    information after switching off MBxx in later release.
      38 *    corresponding IMPORT ... FROM MEMORY ... can be found in
      39 *    AC_DOCUMENT_POST (FORM FI_DOCUMENT_PREPARE (LFACIF5D))
      40      l_mem_id = 'MKPF-XBLNR'.                                   " 641365
      41      EXPORT xblnr = xblnr_sd TO MEMORY ID l_mem_id.             " 641365
      42    ELSE.                                                        "1245374
      43      l_mem_id = 'MKPF-XBLNR'.                                   "1245374
      44      FREE MEMORY ID l_mem_id.                                   "1245374
      45    ENDIF.

    Couple of notes are mentioned (385830, 780365 etc) and check whether these notes are applied.  If so, check with the ABAPer and go through the source code corrections explained in the respective notes.
    You may also go through the following notes
    1)  Note 386656 - FBV4: RW103 'System error in the FI/CO interface'
    2)  Note 388316 - RW103 "System error in the FI/CO interface"
    3) Note 543463 - Inconsistent Posting in budgetary ledger and/or RW102/RW103
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • "Self-assigned IP address" won't connect to Internet

    I have two Macs connected to my DSL modem: a MacBook Pro (10.5.2) and a PowerBook G3 'Pismo' (10.3.9). Yesterday both were working fine, but just now when I started up the PowerBook it told me "Built-in Ethernet has a self-assigned IP address and may

  • Error in Outbound scenario : AE_DETAILS_GET_ERROR

    Hello Experts, Need your help urgently right now i am doing outbound scenario, in that R/3 -> XI -> Oracle. Here when i trigger 1 outbound IDOC then it is working fine... but when i try to send 100s of idocs at a time then half of them i getting thro

  • OdiStartScen in async mode: variables lost in execution queue

    I have the following case: - a scenario must be called for each row in a database table - this scenario has a variable, declared in the scenario parent package: variable values are read from the table - rows are more than the "maximum number of sessi

  • [Solved]Mount windows encrypted partition

    Hi, I have encrypted the Windows 7 system partition fully using truecrypt. In Linux when i try to mount that partition [/dev/sda1] it says "incorrect password of not a truecrypt partition". I am entering the same password which I use while booting in

  • I signed in for I tunes Switzerland. How can I get english spoken movies?

    I signed in for I tunes Switzerland, but I would like to download movies spoken in english. Is this possible? I tried to change  my page to USA  but I need then a new account. Do I have problems with two accounts when I  use my I Pad?