IW32 - ERROR_READING_LST_BY_INDEX

Hi there,
               We are on ECC6, i have noticed that there is SAP note 424437 to fix the issue  in IW32 when you ERROR_READING_LST_BY_INDEX.
According to the solution, they say;
The program correction of this note is not required and is removed again from the system with note 427979. Implement note 427277 instead.
My question, Is SAP Note  427979 applicable in ECC6? If not, what is the note that needs to be implemented.
Regards,
Patrick

Hi,
None of the notes you mention are valid for ECC6.
Notes [1103052|https://service.sap.com/sap/support/notes/1103052] or [1588593|https://service.sap.com/sap/support/notes/1588593] maybe relevant. It is possible that the error is due to some data inconsistency not addressed by a particular note.
-Paul

Similar Messages

  • Error when printing work order with iw32

    Hello all,
    When i was printing work order using IW32, the order success to be saved but it can't be printed. And i get this error message :
    Express document "Update was terminated" received from author ...
    i check with T-Code SM13, and i found error on
    PM_ORDER_PRINT_CONTROL
    further, i go check to ABAP Short dump, and found the error analysis
    A RAISE statement in the program "SAPLSFES " raised the exception
    condition "CONTROL_FLUSH_ERROR".                                
    Since the exception was not intercepted by a superior program  
    in the hierarchy, processing was terminated.
    have anyone know the OSS or have some experience to solve this problem ? hope you can help me..
    thank you for your attention..
    Regards,
    Anggara Mahardika

    Hi
    Can u let  us know whether u are trying to Save the Print out on to ur Desktop ...  or using GUI_DOWNLOAD Fm in ur program ...
    surya

  • Bloqueio de reservas de materiais de contas razão especificas na transação IW32

    Gostaria de saber se é possível realizar o bloqueio de materiais de uma especifica conta razão, em reservas em ordens de serviço pela transação IW32.
    Estou com problemas no controle de custo de materiais que são utilizados pelo setor de produção, e estão na conta razão da manutenção. Para isso eu gostaria de bloquear somente as reservas de materiais da conta razão da manutenção.
    É possivel?

    Olá Rafael,
    Qual o centro de custo alocado ao material/equipamento?
    Na imagem está destacado o campo "componente"
    Os materiais nele inseridos serão reservados de acordo com o depósito configurado. Não seria melhor apontar um outro depósito?

  • Work orders and updating user status (via IW32)

    Hello All,
    I was given a design to create a program that will retrieve all open work orders. The program needs to check on all the purchase orders for that work order to check if order quantity matches the received quantity and the invoice quantity. If it matches, I will do an IW32 to change the user status to 'AIP' (All Invoices Paid). If there are no invoices or purchase orders, I will again, do an IW32 to change the user status to 'AIP'.
    And since this is my first time to work on a PM ticket, I'm not very familiar with the tables being used. I've tried looking for a list of PM tables. One table I got is AUFK (Order Master Data). I searched through the table and it has the fields for Sales Order Number (KDAUF) and Item Number (KDPOS). Is this the Purchase Order related to the work order? Also, is there a way I can see or verify it through a transaction? I tried looking into transaction IW33 but I couldn't find any Purchase Order Number there. Also, how do you know if a work order is open or not? Is there a field that indicates it?
    I was thinking if there are any BAPI's I can use to change a work order's user status instead of doing a CALL TRANSACTION 'IW32'? I saw a function module, RFC_CHANGE_PM_ORDER, that does a remote function call to IW32 but this has dialogs. I'd appreciate any input.
    Many thanks in advance!
    Regards,
    Kristine

    Hi
    You can use the BAPI - BAPI_ALM_ORDER_MAINTAIN to maintain orders.
    Given below few order related tables
    AUFK     -Production order headers
    AFIH     -Maintenance order header
    AUFM     -Goods movement for prod. order
    AFKO     -Order header data PP orders
    AFPO     -Order item
    RESB     -Order componenten
    AFVC     -Order operations
    AFVV     -Quantities/dates/values in the operation
    AFVU     -User fields of the operation
    AFFL     -Work order sequence
    AFFH     -PRT assignment data for the work order(routing)
    JSTO     -Status profile
    JEST     -Object status
    AFRU     -Order completion confirmations
    This may help you.
    Thanks & Regards,
    Govind.

  • BADI for storage location restriction in IW32

    Dear All,
    I am working on one scenario in this user has to get the error message :-
    1. Whenever he doesn't enter the Storage Location in Component Tab (in IW32) and also he should not be able to save the Maintenance Order.
    2. There is ZTABLE (ZTPM058) , if there is no entry of the Storage location in the ZTABLE then also he should get the error.
    I have used the BADI BADI_DI_PCS2_1 to do this but the problem is when the user enter the component manually then it works fine , but when he selects the component from List button (it is in the bottom of the component tab screen) , then this BADI doesn't work correctly.
    Basically when the user selects component from List  then it should first put data into the component tab and then give the error . but this is not happening.
    Please suggest what can be done.
    Below is the code that I have  written :-
    l_ucomm = sy-ucomm.
    if diad_resbd-MENGE is not INITIAL.
      SELECT SINGLE ingpr         "Plant Section
                    lgort         "Storage Location
              INTO  (l_ingpr,
                    l_lgort)
              FROM  ztpm058
             WHERE  lgort = diad_resbd-lgort
               AND  ingpr = diad_caufvd-ingpr.
      IF sy-subrc <> 0.
    if l_ucomm <> 'IMKL'. 
       CONCATENATE 'FOR ITEM NO'        diad_resbd-posnr
                   ', COMPONENT'                   diad_resbd-matnr
                  'AND PLANNER GROUP'       diad_caufvd-ingpr
                 'THERE IS NO STORAGE LOCATION'  diad_resbd-lgort INTO txtmgs SEPARATED BY space.
        clear l_ucomm.
        clear sy-ucomm.
        MESSAGE txtmgs TYPE 'E' .
        elseif l_ucomm = 'IMKL'. (OK CODE when user press List button)
             CONCATENATE 'FOR ITEM NO'       diad_resbd-posnr
                        ', COMPONENT'                   diad_resbd-matnr
                        'AND PLANNER GROUP'      diad_caufvd-ingpr
             'THERE IS NO STORAGE LOCATION'  diad_resbd-lgort
    INTO txtmgs SEPARATED BY space.
        clear l_ucomm.
        clear sy-ucomm.
        MESSAGE txtmgs TYPE 'W' .
        endif.
        endif.
        ELSE.
        message 'Please enter the Quantity' type 'W'.
        clear l_ucomm.
        clear sy-ucomm.
        endif.
    Thanks and Regards,
    Rachit Khanna

    Dear Rajesh Kumar Raju
    Go to IMG-->Logistics Execution >Shipping> Picking -->Determine Picking Location -->Define Rules for Picking Location Determination.  There you have to assign the MALA rule to your delivery type
    Also maintain in OMJ8 and in material master under MRP2 view the default storage location in the field "Prod. stor. location"
    thanks
    G. Lakshmipathi

  • Error while uploading the attachement in IW32.

    Hi,
    Getting the error message "Include file in PC application Try again?" in the message box "Read Error during PC Upload"
    while uploading the attachement in IW32.

    hello
    The issue is no application issue but BC one. are you using Office 2007 or 2003 or 2010?
    please first check the information from OSS note 1237688, and see if entries exist for the Office release document classes (for exmple docx, xlsx etc.) in OAD2.
    i hope can be any of help.
    Regards,
    Jane

  • Error while assigning fcode in enahncement screen in IW32

    Hi Experts,
    I have a very strange problem. I am enhancing the txn IW32. I have the screen exit where in I have added fields in the enhancment tab. Now, i have a situation where in i have three radio buttons and certain fields. On selecting one of the three radio buttons, some fields should be hidden. FOr this, i assigned FCODE to the radio buttons. But when the PAI of the screen is called after selecting the radio button, the control does not go back to PBO and i get an error saying "Requsting function PLP (my fcode) is not available here". THis error comes even for fcode of the push button i have created.
    I guess this has somthing to do with using fcode in screen exits. Pls help as this is an urgent requirement.
    Points shall be awarded for helpful answers.
    Thanks in advance,
    Karan

    clear the fcodes after using them, and see

  • Error while loading document when user executes IW32

    we have brand new laptops and desktops installed SAP GUI 6.40 patch level 27 and microsoft office 2003.when the user tries to execute IW32 and click on the long text button.when we try to change the editor it is giving ERROR WHILE LOADING DOCUMENT
    ERROR WHILE LOADING DOCUMENT
    message no .sofficeintegration142
    DIAGNOSIS
    An internal error occured in the SAP Document  Container Control while loading  a document
    PROCEDURE
    If the error recurs,enter a problem message.There are notes relating to how to create the log file using the report SAPROFFICEINTEGRATIONTRACE1

    Hi Rajanarenderreddy,
    Were you able to resolve your problem?
    If so how? We have a customer that is experiencing the same problem.
    Thank you for your feedback.
    Br,
    Tom.

  • CALL TRANSACTION AND SKIP FIRST SCREEN to specified tab in TCODE 'IW32'

    Hi,
    I am using CALL TRANSACTION AND SKIP FIRST SCREEN in ALV Grid Report to call IW32 tcode and it goes to tcode skipping the first screen. But it goes to the default header tab in the tab control. Whereas I wish to go to the specified tab 'OPERATIONS'.
    Can any one help me, as to how to resolve this issue ?
    Thanks in advance.

    Sridher,
    I have the similar requirement. but in my case its COSTS tab. Could you please provide the code you have used for this to work?
    I used standard "call transaction with mode 'E' ". This seems to be working but I am not pleased by my effort. Is there any proper way that you might have followed ?
    Greatly appreciated your help.
    Regards,
    Reddy

  • Transaction IW32.How to find out the person name.(Last changed By)

    Hi all,
    When i executed the transaction IW32.Its displays changed by and created by fields. please any body can tell me how to find out the person  name who had made last change with respect to the field changed by.
    Please tell me the table and field name for the field last changed by......
    Regards,
    Munna.

    hi,
    check the table AUFK field AENAM for the order number(AUFNR) in IW32..........

  • PM (T-code IW32) - Creation of purchase requisition permitted price=0$

    Hi,
    In IW32, we are able to enter a price of 0,00$ and save the purchase requisition. In ME51N, this action is not possible, we have to enter a price > 0,00$. Why are we able to save a 0,00$ purchase requisition using IW32, and not ME51N? We should not be able to create a 0,00$ purchase requisition in IW32 !
    IW32 procedure of PO creation:
    1. Run IW32
    2. Enter order number
    3. Go to «components» table
    4. DO NOT enter component, enter description, reqmnt qty, UM, IC, Plnt, OpAc
    5. Select the line item
    6. Click on the Purchasing button at the bottom left of the screen
    7. Enter Price = 0,00$, G/L account number, and save
    8. Quit IW32 transaction
    9. Go back in IW32, select the line item, click on the purchasing button, and there will now be a purchasing requisition number in the Purchasing Data table.
    10. Go in ME54N. You will now be able to release a 0,00$ purchase requisition....
    The system SHOULD NOT allow me to create and release a 0,00$ purchase requisition. How can I fix this?
    Thanks,
    Julien

    Hi,
    Go to SPRO > MM > Purchasing > Purchase Requisition > Define Screen Layout at Document Level > Here for Field selection key "ESTF" i.e. Requisition from prodn. order, mark field "Price and price unit" as required under selection group 'Quantity and price'.
    It will start asking Valuation Price during Order Creation for PR.

  • User Exit or BADI for Operation tab of IW32 Transaction

    Hi All,
    Currently I am working on the transaction IW32. I am looking for a user exit or BADI which can trace the item level changed data for operations.
    Thanks in advance.
    Regards,
    Rajesh

    hi,
    User Exit IWO10012.
    BADi's
    IWO1_ORDER_BADI
    IWO1_PREQ_BADI
    IWO1_SCREEN_MODIFY
    Hope this helps
    Regards,
    Shashank

  • BADI / user exit for Tcode IW32?

    Hi
    Are there any BADIs  / user exits for changing component data in Transaction IW32 for a maintainance order?
    regards
    cs

    Enhancement                                                                               
    IWO10012                                Maintenance order: Priority handling on central header                                                                               
    Business Add-in                                                                               
    IWO_UI_USEFLEX                          BAdI for Calling Up an Alternative UI                  
    I hope it helps.
    Best Regards,
    Vibha
    Please mark all the helpful answers

  • Fetch email address of user responsible in IW32

    How to fetch the email address of User responsible in IW32 transaction? OR What is the logic to get PERSNUMBER of a partner "User responsible"on the basis of work order number?

    First get the OBJNR from AUFK table
    Now go to table IHPA with the OBJNR value and PARNTER Function VU (VU is for User Responsible)
    Get the PARNR value from IHPA table.
    Now Go to Table USR21 with the PARNR from IHPA, as BNAME. Then you get the
    PERSNUMBER and 
    ADDRNUMBER 
    Now go to the Table ADR6 with the Above PERSNUMBER   and ADDRNUMBER , Get the email address .
    Thats all.

  • User Exit/ Badi/ FM for Tcode IW32

    Hi Experts,
    I have a requirement which i need to update the next line with the same part number concatenate with u201CNVu201D and in the quantity enter u201C-1u201D and  enter the item category as u201CLu201D.
    The scenario is this,
    In the service order (IW32) when ever a component is entered on a new line item, example below:
    RESBD-MATNR= spare part(Ex: 0614-2331) compponent
    System should update the next line with the same spare part number concatenate with u201CNVu201D
    Ex: 0614-2331NV
    and
    Required quantity (RESBD-MENGE) =-1
    Item Category(RESBD-POSTP) = L
    Plant(RESBD-WERKS)= US40
    has anyone done this before? Can you lend a hand? I just need the exit/ badi where the coding can be done.
    Thanks.
    Regards,
    Min Dee

    Hi,
    try this User Exit..
      Exit name    Short text
      IWO10012  Maintenance order: Priority handling on central header
    to find the user exits & Badi's for the T-code..
    go to table TSTC>enter T-code and execute> get the Program for the t-code..
    and go to-se38-->get the package attached to the t-code..
    next go to t-code Se15>expand the enhacement tab>enter package under userexit and
                                                         execute you will get the list of exits
                                                         available...
                                                      -->enter package under Badi's tab and
                                                         execute you will get the list of Badi's
                                                         available... 
    All the User exits are stored in Table MODSAP..
    Prabhudas

Maybe you are looking for