Report which shows QA07 executed dats

Dear Experts,
After Running QA07
Need Report Which specifies the batches with  Retest date with in 60 Days .( This is for the Monitoring the BATCHES before QA07/ QA05.
Need Report which specifies the batches with Restricted Status Due To the Expiry DATE.
Is there any Standard Reports available . or Which Tables need to be Refer .
Regards
Sasikanth

Dear R.Brahmankar,
I am Trying the above Report as below .Please Guide me.
I need Report for the Batch Status ,  Not FOR the BATCH STOCKS.
In Order to get The report of the Restricted Status of the batches which are Because of the Expiry date( SLEDD)
We can use Table MCH1 .
And a Z-  Report need to be generated with the same table Data.
Any other table need to be considered ?
Please Suggest .
Regards
Sashi
Edited by: sasiaknth srinivas on Oct 22, 2010 11:12 PM

Similar Messages

  • Report which shows TECO orders by date

    Is there a report which shows by date which orders have been TECO ed. for example I would like to know which orders were technically completed on 5th of august by Plant
    thanks a lot

    John,
    I am not aware of such a report.
    Technical completion date exists in table AUFK (field IDAT2).  Easiest solution, for quick and dirty information, you could just browse the table using SE16.
    Next easiest solution would be to create a query.  I usually give the users a basic productionorder query when CO26 is not enough.  Create the infoset in SQ02.  Join tables AUFK, AFKO, and AFPO for basic production order data.  Then, create the query in SQ01 using the infoset you just created.
    If these solutions do not meet your needs, then you will have to commission a Z report.  Spec it out & hand it off to the ABAP developers.
    Rgds,
    DB49

  • A report which shows the purchase order MM and the linked vendor invoice

    Hi All,
    I wonder if ther's a SAP standard report which shows the purchase order MM and the linked vendor invoice (the FI document)  with the Net due date.
    Could anyone help me?
    Thanks
    G.Rossi

    Hi,
    ME80FN with PO History View
    ME2N with Scope of List "ALLES"

  • Can we create a report painter report which shows the details of CC/CE/IO?

    Hi,
    I am trying to create a report painter report which shows the details of cost elements,cost centers and internal orders in a single section.I am able to create reports with 2 characteristics (like CC/CE or IO/CE etc.) but not with 3 characteristics (CE/CC/IO)  which is my case.I am trying to get data something like below.Is this even possible using report painter?I will appreciate if any one could suggest how to do this.
    CE          CC                        IO                        Amt
    600000  8190001100           1100001                $1000
                                              1100002                $2000
                                              1100003                $3000
                                                                          $4000
    620001  8190001101           1100004                $6000
                                              1200001                $2500
    . . . . . . . .and so on
    Thanks,
    Saurabh.

    >
    But when i am using the same synonym in crystal report design, my report is working fine.. but the same synonym is available as invalid in database..
    >
    What does 'my report is working fine' mean? Are you saying that if you rerun the query it retrieves fresh data from the database?
    What does 'same synonym is available as invalide in database' mean? How are you determining this.
    Synonyms can be created for objects that do not yet exist.
    create synonym q for table_does_not_exist
    select * from user_objects where object_name = 'Q'
    SYNONYM_NAME,TABLE_OWNER,TABLE_NAME,DB_LINK
    Q,SCOTT,TABLE_DOES_NOT_EXIST,

  • A report which shows the vendor invoice and its purchase order MM

    Hi All,
    I wonder if ther's a SAP standard report which shows the vendor invoice (the FI document) and its purchase order MM.
    Could anyone help me?
    Thanks
    G.Rossi
    Edited by: Lakshmipathi on Aug 2, 2011 2:24 PM
    Thread Locked - Reason  Cross Posted

    Dear,
    you can use FBL1N,
    From there you can view following things:
    1. Vendor Invoice = Reference
    2. Document type = KR and RE for Invoices
    3. Po Number
    4. Amount
    you can enable there many fields as per your requirement.
    Hope this helps!!!
    Br,Vivek

  • How can I set screen saver clock which show time and date when all screen is black. Other phones have this option but I didn't find on iphone. Pl guide.

    How can I set screen saver clock which show time and date when all screen is black. Other phones have this option but I didn't find on iphone. Pl guide.

    HA!  I figured the find my iphone out!!!!! You can have more than one icloud account in "Mail, Contacts and Calendars".  So my husband's & kids' phone icloud account under "settings, icloud "is their individual @me.com account.  Set it to everything you want EXCEPT Find My Iphone.  Then under "settings, mail/contacts/calendars" you set up both accounts (your @me.com which may already be there), then add another with the main appleID and enable ONLY Find My Iphone.  Now when any of us log into Find My Iphone from any device with our main apple ID for the app store, all the devices show up!!!! YIPPEE.  I made my own day!
    I think the message I got previously was because I hadn't disabled the find my iphone on the @me.com account first.

  • How to create a report which shows leave entitlement balances on a eff date

    Hi,
    customer would like to get a report, or sql statement, which shows employees net entitlements for an accrual plan. Because it is a calculated amount, I am not able to get my own quick paint or standard report.
    Who can help?
    ruud

    You can do this in 3 steps.
    1) First of all you'll need a package that wraps one of the Oracle-delivered PLSQL procedures into a SQL-callable function:
    create or replace package xx_pto_balance AS
    FUNCTION get_net_entitlement
    (p_assignment_id in number
    ,p_plan_id in number
    ,p_calculation_date in date) return number;
    end xx_pto_balance;
    create or replace package body xx_pto_balance AS
    FUNCTION get_net_entitlement
    (p_assignment_id in number
    ,p_plan_id in number
    ,p_calculation_date in date) return number IS
    l_net_entitlement number;
    l_last_accrual_date date;
    BEGIN
    hr_pto_views.get_pto_ytd_net_entitlement
    (p_assignment_id => p_assignment_id
    ,p_plan_id => p_plan_id
    ,p_calculation_date => p_calculation_date
    ,p_net_entitlement => l_net_entitlement
    ,p_last_accrual_date => l_last_accrual_date);
    RETURN l_net_entitlement;
    END get_net_entitlement;
    end xx_pto_balance;
    2) Next you'll need to initialize your apps session (if calling from SQL):
    exec fnd_global.apps_initialize(<user_id>, <responsibility_id>, <responsibility_application_id>, <security_group_id>);
    insert into fnd_sessions values (userenv('sessionid'), trunc(sysdate));
    3) Then you can you use a SQL statement like this one (noting the call to the above package function):
    SELECT papf.employee_number
    ,papf.full_name
    ,pap.accrual_plan_name
    ,xx_pto_balance.get_net_entitlement
    (paaf.assignment_id
    ,pap.accrual_plan_id
    ,trunc(sysdate)) net_entitlement
    FROM per_all_people_f papf
    ,per_all_assignments_f paaf
    ,pay_element_entries_f pee
    ,pay_accrual_plans pap
    WHERE papf.person_id = paaf.person_id
    AND nvl(papf.current_employee_flag, 'N') = 'Y'
    AND paaf.assignment_type = 'E'
    AND paaf.primary_flag = 'Y'
    AND paaf.assignment_id = pee.assignment_id
    AND pee.element_type_id = pap.accrual_plan_element_type_id
    AND trunc(sysdate) BETWEEN
    papf.effective_start_date AND papf.effective_end_date
    AND trunc(sysdate) BETWEEN
    paaf.effective_start_date AND paaf.effective_end_date
    AND trunc(sysdate) BETWEEN
    pee.effective_start_date AND pee.effective_end_date
    ORDER BY papf.full_name;
    This gets the net entitlement for all employees' accrual plans. You can of course tweak this as you like.
    Don't expect this to be fast! In fact, expect it to be painfully slow: because balances are calculated on-the-fly and run Fast Formula it takes a couple of seconds per person, depending on your Fast Formula code. To improve performance these are some things you can do:
    a) Put the above SQL into a materialized view and refresh it regularly (eg, daily)
    b) Build a Concurrent Program that populates a 'snapshot' table of balances and then report off that
    c) Use the Accrual Plan Payroll Balance architecture to store entitlements in payroll balances and then retrieve the payroll balances
    I hope that helps.

  • How to hide the rows in report which there is no data

    Hi,
    I am using web I rich client Xi R3.1 version. In the report i am displaying data region wise and applied section on the column named 'business unit'. Now i see there is no data for some business units and dont want to show in the report. There are some columns like projectname, manager, status summary which i am displaying region wise for each business region now I dont want to display 'Enterprise Infrastructure services, Equities Technology and Fixed income Technology which there is no data. Could any one please tell how to achieve this.
    I am able to display not the empty rows by the following steps but i also do not want to show the names of business units on the report.
    > Select the block
    > Go to properties tab -> Display
    > Uncheck Show when empty option.
    Thanks in advance,
    Eswar
    Edited by: Eswar Rao on Mar 26, 2010 10:03 AM
    Edited by: Eswar Rao on Mar 26, 2010 10:04 AM

    hi Eswar,
    List the columns for which if there is no data, you want to suppress section details and section name.
    1) Select 'Section on: Field'. Go to Properties tab.
    2) Display -> 'Hide section when the following are empty' . click on the Right side drop down.
    3) select (Check Mark) the appropriate columns which you have listed.
    3rd step is very important as it will decide to display section name or not.
    Please try it again.
    --Vamsee

  • Standard report to show last transaction date posted to an asset

    Is there any standard report in asset accounting which shows- to view the last posting of transactions to an asset (if there were up or down movement on the asset values) excluding the depreciation posted.

    Try individual Asset transactions report , you can specify posting date ranges here and display report Asset wise -- S_ALR_87012048 - Asset transactions ,S_ALR_87012050 - Asset Acquisitions ,S_ALR_87012054 - Intracompany Asset Transfers ,S_ALR_87012052 - Asset Retirements
    Also check S_ALR_87012058 - List of Origins of Asset Debits .
    Lastly you can go with the Query SQ01 or SQVI reports.
    Regards
    Mukta

  • Report which shows the discounts taken

    Hi All
    Is there a report for AP which shows the list of invoices that we paid with a discount?

    This report will do you work, this is tab in layout, called cash discount, add that to display.
    Thanks
    Nishan dEv

  • Standard T-code of Fix Asset report which shows Quanity and Value

    Hi friends,
    Is it any T-code in SAP which shows Fix Asset with quality and value.
    regards
    Hemant Maurya

    Hi,
    All standard SAP asset reports show values for Eg.S_ALR_87011990. To display quantity you may create a sort variant with quantity as one of the fields through S_ALR_87009120. You can then run the above report i.e. S_ALR_87011990 with this sort variant to display quantities also along with values.
    regards,
    Swati

  • Can we fetch a report which shows the information carrying the emails sent and received by exchange servers?

    Can we fetch a report through scom 2007 r2 which shows the information carrying the emails sent and received  by exchange servers?

    Hi,
    Within the imported Exchange management pack, we have some default reports that could be run. Have your imported the proper MP to your management group, please check whether those default reports can achieve what you want.
    In addition, here is a powershell script to show total number of emails sent and received per user:
    Exchange 2007/2010 Email stats
    https://gallery.technet.microsoft.com/scriptcenter/bb94b422-eb9e-4c53-a454-f7da6ddfb5d6
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Report which shows Transaction code for each company

    Hi Experts
    There is a requirement for a report which must display the following
    Parameters
    Tcode : S_ALR_87013340
    User       Tcode                         Description      Profit Center         Profit Group    
    MEND    S_ALR_87013340      XXXXXXXXX        PCH00013534     PCGH232323
    How can I like profit center and profit group with t codes
    Regards
    Piroz

    Hi ,
    This is more over security related question.  I think you can use t-code SUIM to get that list.
    Regards,
    Naveen Veshala

  • Converted Crystal Statement Report not showing line level data properly

    Hi all,
    We have an issue with a Cystral-converted PLD Customer Statement layout behaving strangely when printing for a customer with multiple pages.
    When the statements are printed for a customer that has line level data which fills about an A4 page, this print absolutely fine; customer header data, line data etc. However, when we print for a customer that has more lines that can fit onto the one page, Crystal does the following:
    Page 1 - Customer Header info and column headers (OK); Line level info until bottom of page (OK)
    Page 2 - Customer Header info and column headers (MISSING); Line level info (ONLY ONE LINE APPEARS INDIVIDUALLY ON THIS PAGE BUT IS THE NEXT LINE CONTINUING FROM FROM THE PREVIOUS PAGE)
    Page 3 - Customer Header info and column headers (OK); Line level info until bottom of page (OK - CONTINUING FROM THE INDIVIDUAL LINE FROM THE PREVIOUS PAGE)
    Page 4 - Customer Header info and column headers (MISSING); Line level info (ONLY ONE LINE APPEARS INDIVIDUALLY ON THIS PAGE BUT IS THE NEXT LINE CONTINUING FROM FROM THE PREVIOUS PAGE)
    etc...
    So what basically seems to be happening is that every other page, Crystal just sticks in an individual line on it's own without any headers or anything OR other lines.
    Help please! Quite likely a 'Section Expert' issue but we don't know what setting could be causing this.

    Sounds like the report is trying to print multiple pages with blank pages in between, is the normal report ie details fit onto an A4 page printing with a blank back page?
    It will be page number resets and suppression of details on pagenumber = 2
    YOu need to go to section expert and go through each section noting what conditions have been suppressed and if any formula boxes are red then open and see what they do.
    Try turn conditions on and off and commenting out any formula conditiona and see what happens. By a process of elimination you should be able to work it out. However, you may have to stop the introduction of a blank page some how.
    Ian

  • Report which shows to which Financial Statement Version belong the account.

    Dear All,
    In transaction FSE3 I can see all accounts in Financial Statement Version, but I need vice versa:
    for given account I need to know if the account is in the Financial Statement Version (also which area of it).
    Is there any report to get this?
    Many thanks for Your help!
    Best regards,
    Maria

    the financial statement positions are stored in table FAGL_011ZC. The problem is that intervals are stored here, not single values. So, if you don't find a single value, it still can be contained in an interval. On the other hand one G/L account can be in any number of FSVs.

Maybe you are looking for

  • BaseFont and FontName must be equals?

    I have trouble with an PDF/A document and some readers we are using: - Acrobat (Reader) 9.X works fine - Acrobat (Reader) 6.X and our own inhouse reader have problems I tracked it down to the following part: 10 0 obj <</LastChar 255/BaseFont/TimesNew

  • Outlook 2010 - "Reply To" linking to wrong Exchange 2010 Internal Email Address

    Hi, One of my internal email users (Exchange 2010 Enterprise) compiled an email from within Outlook 2010 and sent it to a specific internal colleague with a CC to two other internal colleagues plus two external contacts. They all recieve the email su

  • Vmware-config-tools.pl doesn't work after installing vmi-enabled kernel in SUSE 10 SP 2

    I have recently updated my SUSE 10 SP2 to VMI enabled kernel download from Novell. Now I can't run vmware-config-tools.pl it is not finding C header files that match my running kernel. I get following error message "What is the location of the direct

  • Update 1.0.1 won't complete, won't install

    Hello forum I've bought an iPod nano 8 GB 3rd generation it's all good untill now. the issue here is that the new iTunes in Mac OS X cannot complete downloading the software update, just keeps stoping with the error message:- "There was a problem dow

  • Error message opening PDF

    "The document cannot be opened because it is corrupted or damaged".  I cannot open PDF's emailed to me on my Iphone which originate from Quickbooks on-line.  All other PDF's open fine on my Iphone.