Table for defect or damage code deletion field.

Dear All,
We have developed Z-Report in quality for recording defect.
I used viqmfe table for defect recording and field is fecod-damage code.
But my problem is after deleting defect in qa32,in z-report the defect is remain as it is.
I have already search defect deletion field, still ihave not got this field.
Pls suggest.
Thanks
Shabbir

Hi ,
Please checQMFE, QMSM,QMAA, QMIH & for all deletion indication entries
you need to get the corresponding flag for fiedl like  KZLOESCH .
Ramesh

Similar Messages

  • Tables for Defect type and its description while defect recording for a MIC

    Dear Experts,
    Kindly suggest the tables name  in  system by which we can get Defect type and its description that we have used while  performing defect recording for a MIC in system at the time of result reording for an inspection lot.
    Thanks in advance for your inputs ...
    Best regards ,
    Nitishj

    hii,
    Check
    QPAC - Inspection catalog codes for selected sets
    QPAM - Inspection catalog selected sets
    QPMK-CODEQUAL- Defect code grp for rejection at MIC level
    Link above table field name with QAVE for UD code & QAMR for Results recording
    Edited by: Lokesh K on Sep 29, 2010 10:43 AM
    Edited by: Lokesh K on Sep 29, 2010 10:45 AM

  • How to update LTDX table for ZReport of T-Code FBL5N

    Hi,
    We have copied report RFITEMAR(T-code FBL5N) to ZRFITEMAR(T-Code ZFBL5N), to meet some of our requirement.
    Now, It is not showing Layouts in F4 help of screen field "Layout" in ZFBL5N and also we are not able to set default variant for the same.
    I found the issue is, First it goes to table LTDX to search for any default/1SAP variant but it didn't find any entries in the table.
    If we can make this entry(Report: ZFITEMRA, Variant: 1SAP) in table LTDX, then issue can be solved. Please let me know if any other way is available for this type of issue.
    Thank you.

    Hi
    FI_ITEMS_DISPALY is used by FBL1N, FBL3N and FBL5N and now (in your system) ZFBL5N, but the problem is FI_ITEMS_DISPLAY expects to be called only by standard transaction so:
      if not is_u_variant-variant is initial.
    *   check existence of named variant:
        perform alv_variant_check changing x_varexist.
        if x_varexist is initial.
          message i000(msitem) with is_u_variant-variant.
        endif.
      else.
    *   check existence of default variant:
        perform alv_default_check changing x_varexist.
      endif.
      if x_varexist is initial.
    *   take 1SAP, if it exists:
        clear is_u_variant.
        case acctype.
          when 'D'.
            is_u_variant-report = c_program_ar.
          when 'K'.
            is_u_variant-report = c_program_ap.
          when 'S'.
            is_u_variant-report = c_program_gl.
        endcase.
        is_u_variant-variant = '1SAP'.
        is_u_variant-username = sy-uname.
        perform alv_variant_check changing x_varexist.
        if x_varexist is initial.
          clear is_u_variant.
        endif.
      endif.
    As you can see, the fm check if the variant exists and if you don't move any variant the fm check if a default variant exists, if both controls fail then fm overwrites the report name.
    So I believe you should create a default variant in order to avoid the fm overwrites the report name
    Max

  • How to find data base tables for a particular  trancation code

    Dear All,
    Is there any T.code for finding data base tables used in  a particular transaction code(Eg.: MM01).
    Regards,
    Satyapalli

    Hello Satya
    There is a very useful function module available for your requirement:
    <b>RS_PROGRAM_TABLES</b>
    Call this function module using:
    OBJECT_TYPE  = 'TRAN'       " transaction
    OBJECT_NAME = 'VA01'
    " PROGRAM  -> not required
    MONITOR_ACTIVATE = 'X'
    The function module will list you all DB tables touched by the transaction and shows whether they are read or updated (unfortunately, on ECC 5.0 this seems to be no longer the case. All tables are displayed as READ).
    Regards
      Uwe

  • Indentifying the R/3-tables for a corresponding T-Code(like me23n, xk03...)

    Hai
    Im a BW consultant. My client enters the vendor details data in XK03.
    How can i know that in which R/3-tables vendor details are stored. I knew that LFAI.
    But if i dont know the R/3-tables. And if i know only the Transaction Code in R/3. Then how can i know the corresponding R/3-table.
    can anyone please tell me
    i ll assing the points
    kumar

    Use transaction <b>ST05</b> sql trace.
    Jus swich on the trace for the transaction XK03 and run the transaction XK03.
    After finishing the trasnaction.. go to st05 and click on deactivate..
    then check the list..u will get the list of all R/3 tables used.
    OR
    run transaction XK03.. click on system>status->program
    double click on the program.. then clcik find and write SELECT...

  • Table for Profit center company code assignment

    Dear all,
    What is the table where we can see all company codes which are assigned to the concerned profit center?
    Can any of you help me on this?
    Thanks,
    Kumar

    Kumar,
    After you make company code assignment changes to a PC, but BEFORE you activate the PC, the data appears in table CMDT_PC_BUKRS .
    Once you activate the PC after making your changes, the data resides in table CEPC_BUKRS .
    Trust this helps.
    Regards
    Gulshan

  • Tables for Damage Codes, Cause Code & Defects

    Dear Masters,
    I require the tables that store the damage codes, cause codes and defects assigned to a particular maintenance notification.
    I require this in the form of printing a Maintenance order.
    This is a kind of urgent. Please do help. Thanks in advance.
    Chin2.

    Dear Friends,
    Thanks for your quick reply, I had my problem solved with your replies
    Thanks once again
    Chin2

  • Reference field and table for AUFK for F4 help in alv.

    Hi All,
       I need to put F4 help on ALV for order no (AUFK) what is the reference field and table for that?
      i tried giving field as aufk and table as ccss but its not working.
       ls_fcat-ref_field = 'AUFNR'.
        ls_fcat-ref_table = 'CCSS'.
    Thanks & Regards,
    Ruchi Tiwari

    Hi,
    Try this.
    Set the f4 help for the field in the fieldcatalog
      ls_fcat-f4availabl = 'X'.
    1. Create a event of ONF4 for the alv grid.
    2. Set the event handler.
    3. Append the field for the F4 help in the internal table and call the below method
        CALL METHOD g_mprn->register_f4_for_fields
        EXPORTING
          it_f4 = i_f4.
    4. create a class definition and implementation
        refer sample pgms (BCALV_F4, BCALV_GRID_EDIT_DELTA and BCALV_GRID_EDIT)
    Hope this may be helpful.
    Regards,
    Sharin.

  • Adding new field in the table for Output

    Hi ,
    I need to add a field catalogue as Payment method in the condition table for Output, but the payment method field does not exist in the table. Can this be done?
    regards,
    Ragu

    Hi Refer below link on sdn for adding new Field
    Adding New Field to Catalog
    Adding New fields to field catalog

  • Table for Transaction code and Table associated

    Hello Experts,
    Please let me know if we have some table where it stores the information of Table Assoicated to a transaction .
    ( In detail : That is we give a table name in the View when we create a transaction for SM30)
    Regards,
    Ratna

    Hello,
    You have to go the table TSTCP (table for parameter transaction).
    In the field PARAM, pass
    *Z_TABLE*.
    BR,
    Suhas
    Edited by: Suhas Saha on Jan 22, 2010 11:22 AM

  • Reg. table name, that contains data of deletion of PP & PM operations(point

    Hi all,
    Could any body tell me the table, that contains task list operation deletion data in PM terms of tcode IA01.
    or in case of PP u can see routing data operation.
    It's urgent.....
    Help me & have ur poinrts.
    Regards,
    pradeep phogat

    HI smith,
    Actually in tcode IA02, when we select an operation & make it delete...then in table PLPO i am getting no deletion field. Actually i am making a change BDC for changing the frequency of the operation. So in that i need to consider the deleted operation........
    Reply plesssssss

  • Tables for maintenace catelog

    hi experts,
    i want tables for maintenace catelog (damage,cause,task,etc)
    thanks,
    Utkarsh

    hi pete,
    thanks for reply ,
    can you give me tables for caractoristics for measuring points ,
    thanks
    utkarsh

  • Table for Assembly indicator checkbox in BOM

    Please inform me about Table for Assembly indicator checkbox in BOM
    Field name--- STLKZ.
    If table is not there then how to find if this field is checked or Not checked  in development program

    Dear Mayuresh,
    There is no table where in you can get this information which has got an assembly of its won.
    Either you can use CS11,CS12 or CS13 for limited level explosion or else to identify for which
    components an assembly exists for itself.
    Or else at Functional module level.
    Regards
    Mangalraj.S

  • Tables related to a t-code

    hi all,
    Is there any way to find the database tables for a specific t-code.
    Whenever i use F1 -> technical settings..i always end up in some structure...but hw do i knw the database table used to store the data for it.
    regards,
    johnson

    Hi,
    use SQL Tracer with which you can find out the Database tables  used in a Transaction.
    Just follow the steps to achieve your Requirement.
    Go ST05 and
    -click the activate trace button,then leave the transaction.
    -Run your program either via tcode or directly from SE38,
    -after completion of the program,
    -go back to ST05 and click the Deacivate Trace button. Now click the Display Trace button,
    -in the dialog, just click the green check.
    -The next screen is the trace, where it lists all of the database tables that were accessed during the time of the trace, including system tables.
    -The duration column will be important when looking for low performing SELECTs, the higher the number, the lower the performance,
    -Put your cursor on a line where the OP is "OPEN" and click Explain, here is some good information about the select statement, how the data was accessed, and with which index.
    Regards,
    Raj.

  • Header Table for G/L Code & Document Number related Fields

    Hi,
    Plz tell me the Header Table for the following Fields:---
    G/L Code
    Document Number
    Doc. date
    Posting Date
    Vendor Code
    Purchasing Document
    Tax Code
    Base Amount
    Tax Amount
    Vendor Inv. No.
    Please note that i want Header Table not Line item tables...
    Thanks...

    BKPF

Maybe you are looking for

  • Stop execution of a loop in an event structure

    I tried searching the forums to avoid posting a duplicate, but most I could not open most of the vi's as they were higher version. I put in a dummy while loop in an event structire i intend to use. Once I start executing the while loop, I am not able

  • Trying To Understand My Masters Situation

    I have over 40,000 photos managed by Aperture. They include a mixture of my old iPhoto library and purely Aperture images. They are managed as referenced masters. I wish to move the photos to a new hard drive and have come to a puzzling issue which I

  • Can't transfer my contacts from device to Lotus Notes Curve 8900

    Hope someone can help. I have 2 address book databases on my device. One is called Address Book (0 entries) and one Address Book-All (460 entries). I need these contacts to be transferred to my Lotus Notes Address Book. When I sync, the desktop messa

  • How can I open my books in iBook saying not formatted but is downloaded?

    Since my iPad was reset unable to open my books in iBook saying not formatted how can I open?

  • Discoverer PLUS integration in Portal

    Hi, I know that Discoverer viewer can be integrated within Portal fairly easily. But, i wanted to know how to integrate Discoverer Plus (witch offers more options) within Portal. Did anyone attempt that successfully? And how? Best regards