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

Similar Messages

  • 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

  • Error using migration assistant and time machine

    Daughter dropped water on our old macbook pro.  Got a new one and trying to restore using backups to our time capsule, but we are receiving this error using the migration assistant: "Make sure that all of your network devices are connected and turned on. It appears that some backups are already in use. If you don't see the backup you need, make sure it is not currently mounted by another machine and try again."
    any suggestions on how to transfer the data from time capsule to new macbook?

    Do you see the backups in the Select Your Disk window? 
    If so, can you connect to them?
    Make sure Time Machine is OFF on all Macs on your network.  If any backups are trying to run, cancel them.  If they won't cancel after a few minutes, see #D6 inTime Machine - Troubleshooting.
    Also be sure no other Mac is looking at them.  If you continue to get that message, disconnect all users, per #C12 in the same article.
    If none of that helps, the backups may be damaged (could have happened when the old Mac died).  Try to Repair them, per #A5 in Time Machine - Troubleshooting

  • Error using Richfaces Drag and Drop  support in JSF 1.1 application

    Iam using rich faces drag n drop support in my JSF application . The jsp works as expected but I get this weird exception while navigating through my pages.
    Scenario : User logs into the application , from the home page ---> when the user click on a button he is navigated to the jsp which has the drag n drop support. This was working fine till , I have added a menu_incl .jsp inthe sub view . The code snippet is as shown below :
    <body>
         <div id="wrap">
         <f:view>
         <f:subview id="menu">
              <jsp:include page="/search/incld/menu.incl.jsp" />
         </f:subview>
         <rich:dragIndicator id="indicator" />
         <h:form id="myfolder">
              <h:panelGrid columnClasses="panelc,panelc,panelc,panelc" columns="4" width="100%">
                   <!-- Panel for Queries -->     
                   <rich:panel style="width:133px">
                   <f:verbatim>
                             <div style="overflow-x: scroll; overflow-y: scroll; height: 400px;">
                   </f:verbatim>
                        <f:facet name="header">
                             <h:outputText value="Queries" />
                        </f:facet>
                        <h:dataTable id="querytable" value="#{dndBean.queryList}"
                             var="query" binding="#{workSpaceBean.queryData}" >
                             <h:column>
                                  <a4j:outputPanel style="width:100px;border:1px solid gray;padding:2px" layout="block">
                                       <rich:dragSupport dragIndicator=":indicator"
                                            dragType="Query" dragValue="#{query}">
                                            <rich:dndParam name="label" value="#{query.name}" />
                                       </rich:dragSupport>
                                       <h:commandLink value="#{query.name}"
                                       action="#{workSpaceBean.populateQuery}">
                                       </h:commandLink>
                                  </a4j:outputPanel>
                             </h:column>
                        </h:dataTable>
                        <f:verbatim></div> </f:verbatim>
                   </rich:panel>
    Now when I click on the button in my home page , and expect to be navigated to the page which has dran drop support components, I get the following error :
    Error Message: Duplicate component ID 'myfolder:querytable:_id34' found in view.
    Error Code: 500
    Target Servlet: Faces Servlet
    Error Stack:
    java.lang.IllegalStateException: Duplicate component ID 'myfolder:querytable:_id34' found in view.
    at com.sun.faces.application.StateManagerImpl.removeTransientChildrenAndFacets(StateManagerImpl.java:171)
    at com.sun.faces.application.StateManagerImpl.removeTransientChildrenAndFacets(StateManagerImpl.java:179)
    at com.sun.faces.application.StateManagerImpl.removeTransientChildrenAndFacets(StateManagerImpl.java:179)
    at com.sun.faces.application.StateManagerImpl.removeTransientChildrenAndFacets(StateManagerImpl.java:179)
    at com.sun.faces.application.StateManagerImpl.removeTransientChildrenAndFacets(StateManagerImpl.java:179)
    at com.sun.faces.application.StateManagerImpl.removeTransientChildrenAndFacets(StateManagerImpl.java:179)
    at com.sun.faces.application.StateManagerImpl.saveSerializedView(StateManagerImpl.java:86)
    at org.ajax4jsf.framework.ajax.AjaxStateManager.saveSerializedView(AjaxStateManager.java:90)
    at com.sun.faces.taglib.jsf_core.ViewTag.doAfterBody(ViewTag.java:170)
    Iam getting this error only when I include this jsp in the parent jsp :
    <f:subview id="menu">
              <jsp:include page="/search/incld/menu.incl.jsp" />
    </f:subview>
    Iam including the same way in all other jsps of my application , they are all working fine expect for this jsp which has ajax components (rich faces drag m drop support components ) .
    From the error I deduce that the view component is being generated twice , why is this so???
    I would appreciate if some one coulkd guide me through this .... I hope I was able to explain my issu properly , please let me know if it is now clear

    I've tinkered a bit with DnD before in the past. Actually, it's all related to the topic of Data Transfer. You have to provide a source and destination for the transferrable, and your transferrable object must provide the "data flavors" that it supports.
    In theory it doesn't sound too hard, and it works reasonably well within a java application, but to be honest your time might be better spent simply implementing cut n' paste, which is easier. Cut n' paste doesn't require all the fancy UI work, but does the job reasonably well.
    There's a DnD spec available on the documentation web-site, if you haven't already found it. I also discovered that the O'Reilly book (I think it's the AWT book, not the swing one) has a good chapter on data transfer that you might want to read.

  • I have photoshop cs4 getting 150:30 error, using macbook air and mountain lion  solution?

    i have a macbbook air(2013) using mountain lion  10.9.2  i have photoshop cs4 and now get error 150:30(license error),  i tried looking to delete flex net program but i don't seem to have it. how do i resolve this?

    Please refer:
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html
    Regards,
    Ashutosh

  • SSL error using Neutron API and CLI directly on controller nodes

    VIO 1.0 + NSX + vSphere 6.0
    I am trying to execute the following segment of code:
    139         credentials = get_credentials()
    140         neutron = client.Client('2.0',
    141                                 username=credentials['username'],
    142                                 password=credentials['password'],
    143                                 auth_url=credentials['auth_url'],
    144                                 tenant_name=credentials['tenant_name'],
    145                                 endpoint_url=credentials['url'],
    146                                 token=credentials['token'],
    147                                 insecure=True)
    148         response = neutron.list_ports()
    When I run the Python script, it errors out with the following:
    Traceback (most recent call last):
      File "getMACAddr.py", line 148, in <module>
        response = neutron.list_ports()
      File "/usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 111, in with_params
        ret = self.function(instance, *args, **kwargs)
      File "/usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 306, in list_ports
        **_params)
      File "/usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1250, in list
        for r in self._pagination(collection, path, **params):
      File "/usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1263, in _pagination
        res = self.get(path, params=params)
      File "/usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1236, in get
        headers=headers, params=params)
      File "/usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1221, in retry_request
        headers=headers, params=params)
      File "/usr/lib/python2.7/dist-packages/neutronclient/v2_0/client.py", line 1156, in do_request
        resp, replybody = self.httpclient.do_request(action, method, body=body)
      File "/usr/lib/python2.7/dist-packages/neutronclient/client.py", line 192, in do_request
        **kwargs)
      File "/usr/lib/python2.7/dist-packages/neutronclient/client.py", line 148, in _cs_request
        raise exceptions.SslCertificateValidationError(reason=e)
    neutronclient.common.exceptions.SslCertificateValidationError: SSL certificate validation has failed: [Errno 1] _ssl.c:510: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
    The /var/log/neutron/server.log file has the following corresponding entry for when the script tries to make the connection:
    2015-04-11 07:17:31.941 2096 INFO neutron.wsgi [-] (2096) accepted ('10.27.16.164', 34495)
    When I run the CLI from the same controller node, I get the error with or without the —insecure flag:
    root@controller02:/tmp# neutron port-list
    SSL certificate validation has failed: [Errno 1] _ssl.c:510: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
    root@controller02:/tmp# neutron --insecure port-list
    SSL certificate validation has failed: [Errno 1] _ssl.c:510: error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol
    If I run the neutron CLI command from my local Macbook Pro, it works just fine. That leads me to believe it is a communication error when the controller node tries to talk to itself. I have tried setting the OS_AUTH_URL and OS_URL to both the localhost IP and the 10-network IP address -- both result in the same error.
    Any ideas?
    Chris

    Hello Chris,
    Thanks for checking out VMware Integrated OpenStack and for sharing your concern.
    By default, VMware Integrated OpenStack uses a self-signed certificate, which will require the use of the OS_CACERT environment variable in your openrc file and when using the API.
    The better way to resolve this is to use a CA-signed certificate.  Fortunately, VMware Integrated OpenStack makes the CSR generation and signed certificate import process very easy.
    If this is production, of course, use a trusted Root CA.  If this is a Dev Lab, you can generate your own Root CA certificate and use it for testing.
    I wrote up a quick blog post on how to do this.
    Let us know if you have any further questions.
    Regards,
    Trevor

  • Error using JMS/AQ and Oracle9i

    I have managed to get a solution up and running using JMS/AQ inside the database and a servlet that consumes messages. But the database waited for 20-30 seconds before generating a response so I looked in the dump files and found:
    Tue Mar 26 15:00:00 2002
    Errors in file C:\oracle\admin\orcl\udump\orclS001.TRC:
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-22303: type "SYS"."AQ$_SIG_PROP" not found
    ORA-21522: attempted to use an invalid connection in OCI (object mode only)
    ORA-22303: type "SYS"."AQ$_SIG_PROP" not found
    ORA-21522: attempted to use an invalid connection in OCI (object mode only)
    ORA-03113: end-of-file on communication channel
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 3755
    ORA-06512: at line 1
    ORA-06512: at "SYS.DBMS_AQJMS", line 57
    ORA-06512: at line 1
    Tue Mar 26 15:00:15 2002
    found dead shared server 'S000', pid = (8, 40)
    found dead shared server 'S001', pid = (13, 34)
    found dead shared server 'S002', pid = (12, 30)
    Any ideas? The server uses 20-30 seconds on every SQL query when I am running my queue. I have used:
    AQjmsFactory.getTopicConnectionFactory("localhost", "ORCL", 1521, "thin");
    to set up the connection inside the DB. Is there another way of doing this? The code is running inside the DB.
    -Christer

    I tried your suggestion but then the code fails with:
    "ORA-14551 cannot perform a DML operation inside a query"
    It works if I don't use the default connection. My code looks like:
    try
    OracleDriver ora = new OracleDriver();
    //This one works
    //java.sql.Connection con = DriverManager.getConnection(url, "username", "password");
    //This one fails
    java.sql.Connection con = ora.defaultConnection();
    tconn = AQjmsTopicConnectionFactory.createTopicConnection(con);
    /* Create a Topic Session */
    tsess = tconn.createTopicSession(true, Session.AUTO_ACKNOWLEDGE);
    tconn.start();
    System.out.println ("Get the Topic...");
    topic = ((AQjmsSession)tsess).getTopic("TS","tstopic") ;
    System.out.println("Publish messages...") ;
    publisher = tsess.createPublisher(topic);
    txtmsg = tsess.createTextMessage() ;
    txtmsg.setText("Alarm") ;
    txtmsg.setStringProperty("alarmID", "12") ;
    publisher.publish(topic, txtmsg) ;
    txtmsg.clearProperties() ;
    tsess.commit() ;
    //tsess.close();
    //tconn.close();
    return "Success";
    } catch (Exception e) {
    System.out.println("ERROR");
    e.printStackTrace();
    return e.toString();
    }

  • Trying to sync Sharepoint calendar w/ Outlook for mac; Protocol Error; Used about:config and get same error.

    I'm trying to sync a Sharepoint calendar with Outlook on my mac. When I click on "Connect to Client", I get this error:
    Firefox doesn't know how to open this address, because the protocol (stssync) isn't associated with any program.
    I used the about:config instructions to create a new string:
    * Type about:config into the address bar and press Enter.
    * Right-click -> New -> Boolean -> Name: network.protocol-handler.external.foo -> Value -> true (Replacing foo with the protocol you're specifying)
    * Right-click -> New -> String -> Name: network.protocol-handler.app.foo -> Value -> /path/to/app (Replacing foo with the protocol you're specifying and /path/to/app with the path to the application you want to run.
    * Ensure network.protocol-handler.expose-all is set to true.
    The path I used (which opens Outlook if I click on the icon) is:
    /Applications/Microsoft Office 2011/Microsoft Outlook.app
    I'm still getting the same error message.
    Please help me to allow Firefox to open stssync pages so that I can sync my calendars.
    Thank you in advance.

    Straight from the Mothership:
    http://www.officeformac.com/ms/ProductForums/Office/6960
    NO SHAREPOINT INTEGRATION!
    To be considered a true business software, wouldn't this be a nice feature? Oh yeah, I left feedback and hope many others will as well.
    On 11/12/10 9:19 AM, [email protected] wrote:
    > How do I view SharePoint contacts in Outlook 2011? In windows the
    > "Connect to Outlook" button is highlighted, however on a Mac it is
    > greyed out and I can see no way to add them from Outlook.
    ''Currently, Outlook for Mac has no SharePoint integration.''
    Please be sure to let Microsoft know you'd like to see this feature in
    future versions by using the Help --> Send Feedback mechanism in any
    Office application.
    Hope this helps!

  • Error using App Builder and Application Loader

    Hello,
    we created many App's with the App Builder before and after the release of v27 we tried to update a couple of App's. So we get into the App Builder, changed the version from v26 to v27 (didn't changed anything else!!!) and rebuild the App. Now we want to use the Application Loader to upload the App to iTunes Connect, but everytime we receive this message:
    "The binary being analyzed must be an executable: /var/folders/9x/.../..._v27_distribution-viewer.zip/viewer.app/viewer"
    We rebuild the app several times, updated the App Builder but nothing works. Does anyone has an idea?
    Regards
    Sven

    Was the app updated from previous version to v27 or was created as a brand new v27 app?
    Is this same error happening for any other apps you are trying to submit?
    What is the version of application loader you are using to upload the distribution-viewer.zip?
    The latest version of application loader should be on is 2.8. If you are not, then upgrade to the latest version and try again. You can download the latest version from https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa

  • 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?

  • Utilizing SQ01 SQ02 for user report generation of production data

    I am interested in utilizing sap query transactions SQ01, SQ02, and SQ03 to create and customize end user reports that will be used  by our audit team to analyze SAP data in our production environment. My objective would be to have one person with authorization to run SQ01,02,03 and have that user create all the reports that would be required for the team to use. This way there isn't a bunch of users out there using SQ01 indiscriminately or perhaps not using it at all. I currently have authorization to run SQVI but it is limited. From what I understand there is more flexibility with SQ01 because they allow you to create calculated fields and offer more formatting options. Most of these reports would be related to finance, sales, vendor, customer, etc.
    My question is this. How do I create these custom queries and allow multiple users to access and run them? Are the queries created directly in production? Are they created in DEV and then tested in QA before being transported to Prod? I understand you can map an sap query program to a transaction and then add that to a role but isn't the program name generated by SQ01 different in every instance? I would like this code to be reproducible as I have 5 different SAP instances in which these reports would be used. Same reports, different data.
    I am looking to leverage the power of SAP query to produce meaningful reports for our team without having to use programmers to develop them from scratch. What is the optimal approach to doing this without creating a lot of hassles and without creating additional security risks?
    If I create a query based on SAP tables I have access to does the general user also have to have authorization to those tables in order for the query to run for them? In theory the entire team should have authorization to the same standard SAP tables because we all have the same roles assigned but I may have some additional tables assigned to me because I am the IT auditor. Just confirming.
    I appreciate any and all suggestions. I would like to proceed with the best solution as soon as possible.
    Thank you very much.
    Mark

    Hi Mark,
    It is best to create queries in dev rather than doing it in prd directly.
    Query user group can be used to control the access in production.
    You can have one query administrator with access to sq01,2,3 and sqvi who will assign query user group to respective users in prd so they can run these.
    BR,
    Mangesh

  • 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?

  • How to use the validations and exceptions  in BPEL

    Hi,
    How to use the validations and exceptions in BPEL.
    pls provide one sample example to give the exceptions and validations in BPEL

    Hi,
    For example you can create a simple BPEL Process and you can throw an error during running process. If input data is not valid and format is not correct you can throw error using throw activity and using catch activity you can catch particular error. The catch-all will handle all the error occurred with the scope.
    you can also refer faulthandling section in the link for more information related to exception handling.
    http://download-west.oracle.com/docs/cd/B31017_01/integrate.1013/b28981/faults.htm#sthref1188
    Regards,
    Deepa

  • 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.

  • Very Urgent..How to create a report Using SQ01 and Sq02.

    Hi Friends,
    It's very urgent.pl help  me in generating a report using SQ01 and SQ02.
    Help is appreciated.
    thanks In advance.
    Regards,
    Nanditha.

    Check out these links...
    http://www.insightcp.com/res_15.htm
    http://www.ams.utoronto.ca/Assets/output/assets/adhoc_2990830.pdf.pdf
    Also, do basic search in this forum...you will find a lot of threads related to this.
    SKR

Maybe you are looking for