Difference bet SQVI & SQ01,SQ02, SQ03

Hi all
What is difference been SQVI  and SQ01,SQ02, SQ03????
I hve alredy developed report using sqvi,
Please tell me about sq01,sq02, sq03??????
Regds
ss

Hi
SQVI is user specific whereas SQ01... are not user specific.
You write a qurey in SQVI and it is accessible only for you.
But the other way in SQ01...
Good Luck
Hari

Similar Messages

  • Export & import of query (SQ01/SQ02/SQ03)

    Hi,
    How to export/import SAP Query (SQ01/SQ02/SQ03) without any transport request.
    waiting for ur reply.
    Thanks in Advance,
    Pranab

    Hi,
    If you dont want to create any transport request number then you need to download/upload the query instead of import/export.
    Please follow the below steps for downloading/uploading the query
    (Go to the system from where you wnat to export the query)
    1. Goto transaction SQ02.
    2. Click on ' Transports' icon (CTRL+F3).
    3. In 'Transport action' select 'Download'.
    4. Select 4th radio button 'Transport Queris'.
    5. Enter the name your user group and query and click on execute.
    6. Give the file name and location where you want to save the query backup and click on save.
    (Now goto the system where you want to import your query)
    1. Goto SQ02 and click on 'Transports' .
    2.  In 'Transport action' select 'Upload' and click on execute.
    3. Enter/select the name of the file which you have downloaded before and click open.
    Please let me know if this is helpful.
    Regards,
    Priya Bhat

  • Infoset Queries SQ01/SQ02/SQ03

    Hi Experts,
    I am designing query using SQ01/SQ02/SQ03 where I will input either installation or rate category (both present in table EANLH). But problem here is Installation is key field for EANLH while tariff type is not. Therefore, it returns multiple rate category for single installation. Now within these multiple rate category I need to retrieve only the latest rate category (this table does contain date field BIS & AB - Date fields by using which I can select latest record).
    But my problem here is how to do this in Infoset Queries? Where I need to make changes or do some config?
    Please let me know.
    Thanks.

    Yes, but I am not able to figure exactly how to implement it? I mean I can do this same code in SE38 where I know names of the internal tables. But when in SQ02 we can't modify/read system tables (I found name of the system tables using report generated by SQ01). So how you will access them, then how you will reflect our changes in output ALV grid?
    Example:
    Data:
    Rate Cat.      Installation     Date
    71     60000984     20/10/2009
    71     60000984     20/12/2009
    71     60001101     10/09/2009
    78     60000310     10/09/2009
    78     60000315     10/09/2009
    83     60000297     10/09/2009
    so in this case I want output:
    Rate Cat.      Installation     Date
    71     60000984     20/12/2009
    71     60001101     10/09/2009
    78     60000310     10/09/2009
    78     60000315     10/09/2009
    83     60000297     10/09/2009
    You will see 71     60000984     20/10/2009 is not the latest one, therefore I don't want that row. I can do the ABAP logic for this, but exactly what and how to implement in SQ02?

  • Question in SAP QUERY- SQ01,SQ02,SQ03

    Hi SAP QUERY Experts,
    I have a question for the query. Is it possible using a interface parameter for report-to-report interface? I mean when I double click on one the data record of query, I want to transfer the key information of this record to the query or report or transaction as parameters. Is it possible? If yes, could you tell me how?
    This is on SQ01, SQ02,SQ03
    Thanks and Regards
    Saravana

    hi all,
    i am having one abap standard query, i have to modify that one and i have to include another colum which needs the requirment.
    07 Depreciation /SAPQUERY/AM07 ADA FIAA - DEPRECIATION
    the above i mentioned is the query, how ever i tryed this standared to copy but i am not able to connect infoset and all stuff.
    pls guide me how to insert additional colum in that standard report or query.
    pls guide me
    thanks and regards,
    sai

  • Use of SQ01, SQ02, SQ03

    Hai All,
             May i know that what is the use of SQ01 , SQ02, SQ03.How to use this ? How to create it ? Can we write our requirement in this ( addition to generated one )?
    Plz rely .
    Thanks & Regards
    Prashanth
    Message was edited by: Prashanth Konda

    Check this link
    www.sappoint.com/abap/ab4query.pdf
    Example
    To write ur requirement choose the option
    Data retrieval by program in SQ01.
    First Step is to create a dictionary structure . Include all the fields in this structure that you want to output.
    Then create a report program having the following structure .
    Report XXX .
    TABLES tab . Declare the already created dictionary structure also here.
    Parameters x . Define parameters here
    Select-Options:…….
    DATA :…..
    DATA : BEGIN  OF itab OCCURS xxx
                   END OF itab. Structure tab to hold the records to be evaluated.
    *<Query_head> This comment must always appear after your data declarations
    Code to define the table itab
    Loop to retrieve each record and place it in itab.
    SELECT,DO, LOOP ,….
    If necessary , code to format data
    *<Query_body> This comment must always be the last statement in the loop.
    End of loop
    ENDSELECT , ENDDO, ENDLOOP ,…
    Following is an example report program. Here youtput_struct is the dictionary structure.
    REPORT  yqueryprg                                .
    TABLES: bkpf,youtput_struct.
    DATA : BEGIN OF itab OCCURS 0,
           belnr LIKE bkpf-belnr,
           gjahr LIKE bkpf-gjahr,
           monat LIKE bkpf-monat,
           bukrs LIKE bkpf-bukrs,
           END OF itab.
    SELECTION-SCREEN BEGIN OF BLOCK input WITH FRAME TITLE text-t01.
    PARAMETERS: p_code LIKE bkpf-bukrs.
    SELECTION-SCREEN END OF BLOCK input.
    *Query head
    <Query_head>
    Start-of-selection.
    SELECT belnr gjahr monat bukrs FROM bkpf INTO TABLE itab
    WHERE bukrs = p_code.
    LOOP AT itab.
      CLEAR youtput_struct.
      MOVE itab TO youtput_struct.
    Query body
    <Query_body>
    ENDLOOP.
    Save and Activate this report.
    Then go to SQ02 transaction to create an infoset.
    Select the option Data retrival by program
    Enter datastructure name
    Choose External program name as your report name.
    Infoset ->Generate.
    Go to SQ03 to create a user group.
    Enter user group name and click on Create button.
    Enter description and save it in your development class.
    In the next screen , click on ‘Assign Infosets’ button.
    Here you select the infoset that you have created
    Save it.
    Go to SQ01. Select the user group that you have created.
    Then enter the query name and create. It will show the list of infoset that you have created. Choose the infoset you want.
    Choose BasicList Button.
    In the right side of the screen you adjust the output field width, background color etc.
    Go back and select the menu option Query -> Generate Program.
    Then Execute this Query.

  • SQVI SQ01 SQ02 transaction codes

    hi all,
    i am a trainee in SAP HR Payroll. I am required to use the SQVI SQ01 SQ02 t-codes to generate information for the user. i have tried to browse through these myself. but not sure if doing it the correct manner. any kind of documentation or tips would be very helpful.
    regards,
    kaustubh

    first go to Sq02
    On the left hand side there is a field by the name of infoset.
    Give any appropriate name. Then click on create button.
    then a screen will appear , write the name. In data source field click on Logical Database . Here you have to select PNPCE, PAP, PNP according to your requirement.
    If you want to create Query on anything related to applicant select PAP. If ur query is based on Master data select PNPCE.
    After selecting click on tick mark (green in colour) which is given below. A screen with different folders of infotypes will appear. Select the required infotypes which you want accoridng to your requirement. Then click on tick mark again.
    Then click on generate button (red & white in colour) (3rd button from the left). A screen will appear with the name
    create object directory entry. Here you have to click on local object button.. you will now see that the system haas generated a Message saying "Infoset------- generated.
    In sq02 there is a button with the name Role/User Group Assignment . Assign the user group out here.
    Then go to SQ01, click on infoset query. Select ur user group. You can see the name of the query which you have created.

  • Interactive report using Infoset quiereis with SQ01,SQ02,SQ03.

    Hi,
             I have to create a report by using the infoset query with SQ01,SQ02 and  SQ03 Tcodes. But problem my requerment is that I have to create one interactive report with these quereis.
    Can any body tell me how to create this interactive report using infoset quereis OR are there any standard quereis which are having interactive nature.
    Pleas send me the solution and thanks in advance.
    regards,
    J.

    Yes, but I am not able to figure exactly how to implement it? I mean I can do this same code in SE38 where I know names of the internal tables. But when in SQ02 we can't modify/read system tables (I found name of the system tables using report generated by SQ01). So how you will access them, then how you will reflect our changes in output ALV grid?
    Example:
    Data:
    Rate Cat.      Installation     Date
    71     60000984     20/10/2009
    71     60000984     20/12/2009
    71     60001101     10/09/2009
    78     60000310     10/09/2009
    78     60000315     10/09/2009
    83     60000297     10/09/2009
    so in this case I want output:
    Rate Cat.      Installation     Date
    71     60000984     20/12/2009
    71     60001101     10/09/2009
    78     60000310     10/09/2009
    78     60000315     10/09/2009
    83     60000297     10/09/2009
    You will see 71     60000984     20/10/2009 is not the latest one, therefore I don't want that row. I can do the ABAP logic for this, but exactly what and how to implement in SQ02?

  • Help On SQ01,SQ02,SQ03 & SQVI

    Dear All,
    Can any body tell me where can i find tutorial or any help menu or suggest any book so that i can learn the above things.
    Please help me.
    With regards
    Ranjith Singh

    check out this link...
    http://www.experts-exchange.com/Applications/SAP/Q_21316169.html
    in case that requires a login, try the other one..
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci1073812,00.html?FromTaxonomy=%2Fpr%2F283958
    cheers,
    Ram
    Message was edited by: Ram Manohar Tiwari

  • SQ01, SQ02 & SQ03

    Hi,
    I am creating user groups (SQ03), infosets (SQ02) and reports (SQ01) for different departments which may access the same infosets but have their own reports. The trouble I'm having is that no matter what user logs in to SQ01 they have access to run ALL SQ01 reports regardless of whether they are members of that user group or not.
    Is there a process or a particular order in which you create the user groups, infosets and reports so that any user can only access reports belonging to their user group?
    Thanks,
    Conor

    Hi,
    Generally QUERY's are User Specific (Pertaining to USER GROUP).
    Where as Reports are Global to all, Unless you restrict them with some Explicit Authorizations.
    check this link for Authorization:
    Authorisation check in ABAP Query..

  • SAP Query-SQ01,SQ02,SQ03

    Hi,
    One query was created in Development client and a transaction code was created for the same and transported to QA & production. But I am unable to see the same in QA cliet or production client. this was done by SAP implementation team and i do not know what mode of transportation they had used.
    When i run the transaction code for this query in QA client it says the user Group has not been created. After analyzing the same in two clients we found that in Global area everything is same in these two clents but in Standard area the User Group is not showing.
    Can anyone give some clue as to how to rectify this issue..is it an issue related to transport or do we have to manually create in each client.
    Also let me know what is the difference between Standard area and Global area??
    Regards,
    SAPFICO

    Hi,
    sorry for using google to find the answer to your question. I must be afraid you do it next time yourself
    [Transporting Query Objects|http://help.sap.com/SAPHELP_NW70EHP1/helpdata/EN/d2/cb467f455611d189710000e8322d00/content.htm]
    [Query Areas|http://help.sap.com/saphelp_nw04/helpdata/en/7f/af0c36932211d194f60000e82de14a/content.htm]
    Kind regards,
    Clemens

  • Transport request for SAP Query - SQ01, SQ02, SQ03

    Hi Experts,
      I have a doubt, Whether we can have request for SAP Query which have created from Transaction SQ01.If Yes then How to do that....?
    Thanks in Advance,
    Chetan Joshi

    Hi,
    Use the program RSAQR3TR
    Thanks
    Naren

  • SAP Query (SQ01/SQ02/SQ3)

    Hi Experts,
    I have created query (SQ01/SQ02/SQ03) to display below fields: Hazard Code, Device Location Number, Hazard Code Description, Loc. Created by, Loc. Created on Date.
    Now in the output list I want to display a summary of all the count of records by the key characteristic for the query. For example, the Device Location by Hazard Codes query should give us a summary of the count of all device locations per each hazard code.
    Practical Scenario:
    Device Location Hazard Code
    40002748              01
    40002751              05
    40002481              07
    40002746              04
    40002749              04
    40002994              01
    Then in this case it should either display additional third column or additional row saying:
    Device Location Hazard Code
    40002748              01
    40002994              01
    Total Hazard Count: 2
    40002746              04
    40002749              04
    Total Hazard Count: 4
    40002751              05
    40002481              07
    or
    Device Location Hazard Code Total Count
    40002748              01                
    40002994              01                 2
    40002746              04
    40002749              04                 2
    40002751              05                 1
    40002481              07                 1
    I checked statistic tab present in SQ01 also URL [http://help.sap.com/erp2005_ehp_02/helpdata/en/d2/cb4256455611d189710000e8322d00/frameset.htm] but still I am not able to figure out how to display this data.
    Please let me know.
    Thanks

    Hi,
    If you're getting the output in ALV Display, you can simply click on the location column & then click on the Sub-Total button on the ALV toolbar, it will sort all the records according to the location (1 or 2 or...) & give you the total/count of the particular location.
    For any further clarification, let me know.
    Prateek

  • Convert query made u200Bu200Bin SQ01, SQ02 and SQ03 for a transaction set

    Hello people, how do I create a transaction for a report I did in queries with the transaction SQ01, SQ02 and SQ03? ...
    hugs

    Hi Stelio Mucavele
    i had the same issue resolved by below steps
    1>go to SQVI t code and  enter your query name and press enter
    2>In the menu path select Quick view--> additional functions-->Generate Program
    3>After Generating the program In the menu path select Quick view--> additional functions-->Display report Name
    4>Now in se38 enter the report name in Program field and execute
    5>You will get the Initial Selection screen of the report . Go to Menu of System -->Status
    6> Note down the Program name and Screen number
    7>Go to SE93 and Create a Z tcode for the query, Enter the description  and importantly you have to select the 2nd Option radio Button Program and Selection Screen (Report Transaction) and Press enter
    8>In the next screen enter the Report name In Program field and enter the screen number
    9>In the classification Section select Professional user  Transaction
    10>In GUI support section select all the options  i.e SAPGUI for HTML,Java,Windows
    and save
    the system will ask for Package select your package if not there then select local object
    now execute the Z tcode your report will run sucessfully
    Regards
    Vijay hebbal

  • Difference b/w RSQ02,SQ01,SQ02

    Hi,
    what are the difference betwween the transcation codes in infoset like RSQ02,SQ01,SQ02,..
    what are uses for tihs t-codes,
    regards,
    goodyear..

    Hi dear,
    take a look to this link http://help.sap.com/saphelp_erp2004/helpdata/en/f6/c39138e4a0341fe10000009b38f8cf/content.htm
    so you can better understand what's the relationship between infoset (SQ02), query (SQ01) and so on...
    then take a look to 486789 'Recommendations for using InfoSets in the BW' also...
    Hope it helps!
    Bye,
    Roberto

  • Errors using SQ01 SQ02 and SQ03

    Hi ... I have an ECC 6.0 system with NW 7.0 ... our functionals people have to use the SQ01 SQ02 and SQ03 transactions to create an user groups for querys managment ... but in our production system I received the message "Changes to Repository or cross-client Customizing are not permitted"  , obviously our client is closed because its a production system.
    I don't have idea how to resolve this issue ?  I don't know if this issue is about basis or functional problem?
    Can anyone help me?
    Regards
    Subject modified
    Do not use CAPITALS on the subject
    Read the "Rules of Engagement"
    Edited by: Juan Reyes on May 25, 2010 4:08 PM

    Thanks Gagan
    It's working .... just I Inserted parameter AQW as 'blank' in the user parameters and that's all. I didn´t have to open the client in the scc4.
    sq01 sq02 and sqo3 are working
    thanks a lot for your note
    regards

Maybe you are looking for

  • RandomAccessFile problem

    hello all i am trying to write random access file read/write class but test program is not goin through try statement at all and giving me "file can not be written" message. i am getting 3 arrays from VisualAid class which is working fine. Code is gi

  • User Exit/Badi for CATS

    Hi Experts, Our requirement is to trigger an email notification to the Employee after his time sheet is approved using the CATS approval WF. We are using the portal to raise the time sheet and approve the same. We want to determine a User Exit/ Badi

  • E-mac 120V pluged into 220v power loine

    Just brought my US made E-mac to China and pluged it to the wall without even thinking ...after all it is a Mac.....ha.. it blew the house fuse and the computer smells .I did not even start the machine....it is just a fuse or a big deal...help. Jonat

  • Deleted messages remain in inbox

    This morning I received four email messages from the same person. One appeared in my inbox 3 times, the other 3 appeared 9 times. When I deleted them the content disappeared but the subject and sender's name etc remained in my inbox list. After delet

  • Change hdd2 to the primary boot drive

    My Pavillion has two hdd. I have cloned the boot drive (1) to the secondary drive (2). Now I want to move drive 2 into the primary drive bay as the boot drive. What is required to accomplish this. Are there bios settings to change or pin settings on