Can we debug WAD queries as we do BEx queries in RSRT

Gurus,
I am working with a WAD report and want to test what value is being passed from the frontend to the query. Can I debug this in RSRT as we do a BEx query. If yes, how, if not, how can I debug my WAD queries and see what is the value being passed to a user exit from the WAD?
Thanks for your help.
Thanks,
Venkat

Hi Venkat,
you can set some parameters in url for web applications like
- debug=X (includes all JavaScript files directly in HTML result and displays additional information)
- trace=X (records an OLAP trace)
- snippet_operations= (disables snippet operations)
- javascript= (disables usage of JavaScript)
- no_session_cookie=X (forces session encoding with URL rewriting)
You should try debug=X and trace=X...
Take a look:
How to Debug a BEx Web Application NW 7.x Java
SAP Note Number: [1128976 |https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d31313238393736%7d]
[Tips & Tricks for SAP BI Web Applications|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/902c3e76-fc1c-2a10-c4ab-c734b06603ba]
This thread could be also helpful (setting breakpoints in bex web)
Re: User exit : RSRT - OK, error in BEx
Regards
Andreas

Similar Messages

  • Can we use multiple queries on one template

    Can we use multiple queries on one template

    Hi,
    if you're using data templates for your data set, you
    can put multiple queries in the XML data template.
    The queries may then be linked (or not) by the "link
    name" tag ...
    Grtz.Following you answer here...do you know eventually how/if possible to preview a report (with XMLP Desktop) that is using data templates for the data set?
    Thanks,
    Liviu

  • How can I debug a web application running on Weblogic 10.3

    Hello,
    I have inherited a NetUI Web Application developed using Weblogic Workshop and I can't manage to debug it. I have configure my server in Workshop and to debug it I right-click the project in Project Exporer and select Debug As -> Debug On Server, but this isn't working. The browser does open the application doesn't appear to be getting delpoyed.
    Can anyone help me out? I am using Weblogic 10.3 and Java 1.6.
    Thanks,
    Sean

    Hi Kal,
    The application is an enterprise application packaged as an EAR. if I right click on the project and click Debug As -> Debug on Server, the application appears in the Server Tab, but it does not start automatically. If I then manually start the server the application runs, but it does not stop at break points and I can not debug it.
    If I right-click on the web project that is packaged as part of the ear and select Debug As -> Debug On Server again the application is deployed, but I can't debug it. I don't get error messages, the application functions as normal but it does not stop at break points. When I attempt to debug the application via the Web Project, two browsers open automatically, both correctly displaying the application.
    Regards,
    Sean

  • How can i debug a rfc being called from sap

    hello Gurus,
    We made a RFC call from SAP r3 to sap grc nfe......we did not receive any data in sap grc .......we go to SM58 and there it gives
    the message "Name or password is incorrect (repeat logon)u201D.
    How can i find out where the data has stuck.
    Please help.
    BR
    Honey

    HI,
    please have a look at the link below..
    this may help u !!!
    [Re: how can i debug a rfc being called from .net connector (NCO) v2.0?;
    Best of Luck !!1
    Regards
    Ravi

  • How can I debug a routine created in Deletion of similar requests?

    Hello Experts,
    I need some help from you. I need to delete overlapping requests and the common
    settings you can set are not suitable, so I decided to write my own ABAP routine.
    But how can I debug a routine, which is implemented in the deletion of similar requests?
    Hope you can help me.
    Cheers
    Daniel Weilbacher

    Please go to the routine code..
    In the menu options..u will find an option for breakpoint--set..
    The line where breakpoint is set will get highlighted and u will also see a STOP symbol..
    then come out of routine..and then run the data load..
    this ABAP routine for overlapping request deletion runs before the scheduled data load..
    the run shud stop at the set breakpoint and show the routine code..in debugger mode..
    cheers,
    Vishvesh

  • How can I debug a sequence that has a subsequence is running in a separate thread?

    Hi,
    How can I debug a sequence that has a subsequence is running in a separate thread?
    I have to have a continues check for a  digital in signal to be able to terminate the sequence if a physical button is pushed.
    This is running in a separate thread, but this way I cannot debug the main sequence.
    Is there any workaround for this?
    Thanks,
    Andras

    This KB might help you:
    http://digital.ni.com/public.nsf/websearch/46D1E157756C37E686256CED0075E156?OpenDocument
    Let me know if this does not help.
    Allen P.
    NI

  • Can we debug the Html template in Internet service

    Hi ,
      I need to change the  name of a filed in srm portal "confirmation of good and service" for that i had a template but i am not able to find the label in that
    How can i find the label  ?
    can i debug the template
    help me
    thanks
    Channappa Sajjanar

    Hi Pradeep,
    Thanks for reply .Actually i found one solution which is as follow just  guide me is it correct or not?
    I gone to the screenpainter (se51) their i given the
    program name =SAPLBBP_PDH_SEARCH.
    screen number = 3001.
    in this screen only the speeling mistakes are found for the variable's
    Confirmatn Value : BBPS_SEARCH_SUBLIST_PO_WEB-VAL_CF and
    Calculatd : BBPS_SEARCH_SUBLIST_PO_WEB-QUAN_IV.
        So i just changed the spelling mistakes there in IDES SRM and they are reflection when i exceute the t-code BBPCF02 in SE80.
    now just tell me is the way i am going is correct or not ?
    what are the side effetcts of this?
    and is any way i can solve the proble  from the template?
    please give  your valuable sugetions i am very new to SRM.
    Regards
    Channappa Sajjanar

  • How can I combine two queries ? QoQ does not work

    I have one query where I just count the total qty coming in per month, something like:
    <cfquery name="qryIn" datasource="dbname">
    select count(orderNO) as totalIN,month
    where status = "IN"
    group by month
    </cfquery>
    I then have a second query to count the total qty going out per month
    <cfquery name="qryOut" datasource="dbname">
    select count(orderNO) as totalOut,month
    where status = "OUT"
    group by month
    </cfquery>
    I then use QoQ to combine both:
    <cfquery="qryTotal" dbtype="query">
    select
    totalIN,
    totalOUT
    from qryIN,qryOUT
    where qryIN.month = qryOUT.month
    </cfquery>
    The problem I am running into is that QoQ does not allow LEFT JOIN, so that if the month is in one query but not the other, it will not pick up that record. And that is throwing off my counts.
    How can I combine  both queries, and bypass QoQ to get a qty IN and qty Out value, per month ? and, for example, if qty in exists for one month and qty Out does not exists for that month, then qty Out will be zero for that month.
    I need this data to plot a chart.
    Thanks for any help provided.

    Do it in a single query to your database.  Here is part of it.
    select month
    , sum(case when when status = "IN" then 1 else 0 end) total_in

  • Can I access Webi queries and Xcelsius dashboards from SAP portal?

    Hello,
    Can I access Webi queries and Xcelsius dashboards from SAP portal?  And how?
    Thanks

    Portal Part 1
    /people/ingo.hilgefort/blog/2010/03/29/sap-businessobjects-enterprise-sap-enterprise-portal--part-1-of-4
    Portal Part 2
    /people/ingo.hilgefort/blog/2010/03/30/sap-businessobjects-enterprise-sap-enterprise-portal-part-2-of-4
    Portal Part 3
    /people/ingo.hilgefort/blog/2010/04/08/sap-businessobjects-enterprise-sap-enterprise-portal--part-3-of-4
    Portal Part 4
    /people/ingo.hilgefort/blog/2010/04/21/sap-businessobjects-enterprise-and-sap-enterprise-portal--part-4-of-4
    Ingo

  • Can we debug a workflow

    Hi All,
    I wish to know can we debug a workflow. If yes then how?
    Also if i want to know how the flow is going for the business process in question. I mean if it is stuck some where, then what is the way for it?
    Thanks in advance.
    Regards,
    Neha

    Hi Neha,
    Yes you can debug the WF to check the LOG in terms of Graphical Display and Technical details..!!
    Use the following transaction:-
    1> SWE4/SWELS -> EVENT TRACE ON/OFF (Switch On the Event Trace)
    2> SWEL -> DISPLAY EVENT TRACE
    3> SWUD -> WF DIAGNOSTICS
    4> SWPR -> WORKFLOW RESTART AFTER ERROR
    Enter the WF Number and Click on the LOG Icon.
    There you can see the Graphical Log of the WF to know where the WF is stuck.
    And You can also check the Technical Details of the WF there, to find which WF Container has what value.
    Let me know if you need any help on this.
    Regards,
    Kanika

  • Can we debug the USER EXITs

    Hi,
          This is Krishna. Can we Debug the User exits. If possible, how to debug and what r the user exits can we debug.
      If any one knows, pls help me.
      Thanx in advance.
    Regards,
    Krishna.

    Hi,
    Write one of these statements in ur user exit code.
    break-point
    or
    break <URID>
    Thanks
    mahesh

  • How can we Debug the workflow?

    Hi,
    How can we debug the workflow?
    Please help  me on debugging the workflow in step by step procedure?
    Early reply is highely appriciable.
    Regards,
    Chow.

    Hi,
    If you want to set breakpoints in method which is used in workflow task then it is possible
    till ECC5 am afraid about ECC6
    you can see the graphical view of workflow through transactions said by Kalpesh
    you can also use swwl (delete workflow) for viewing the container elements of the workflow.
    SWI2_ADM1:Workitem without agents
    SWI2_DIAG:Workflow with error
    these transactions are also helpful
    Thanks & Regards
    Hari Sankar M

  • How can I debug webdynpro java application?

    hi,
    How can I debug webdynpro java application?
    Thanks

    Check this document
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0cb32c5-36a7-2910-2c9b-ba4a5bbdbb56
    Also check this sdn thread Re: DeBugginng The WebDynPro Application particularly shailesh kumar posting
    /padmanaban
    Edited by: Padmanaban on Sep 26, 2008 1:55 AM

  • Can we debug the package pa_project_pvt.add_class_categories which is called in Pa_project_pub.create_project?

    We are trying to create a project using the api code pa_project_pub.create_project. But we are unable to create due to some unexpected error status flag when pa_project_pvt.add_class_categories is executed. We  tried by going through the code but it was in vain.
    So couple of questions from our side.
    1) Can we debug the package procedure pa_project_pvt.add_class_categories by any chance?
    2) If yes, then what is the debugging process?
    Any help in this regard would be helpful.
    Thanks in advance.

    Hi,
    you may try to enable debugging via Sysadmin responsibility by setting following profile options, either for a certain user (preferred) or a certain responsibility:
    - "FND: Debug Log Enabled" set it to yes
    - "FND: Debug Log Level" set it to 1 (but only temporarily, as it generates lots of loggings)
    - "FND: Debug Log Module" set it to "pa" or "PA"
    You'll have to log off and login to apps again for the profile options to come into effect.
    Before you start your process, have a look at fnd_log_messages table (write down last value LOG_SEQUENCE,
    so you can identify the loggings for your process easier) by filtering column log_sequence, module and user_id
    (which is the user_id coming from fnd_user table).
    Make sure that you set apps context (fnd_global.apps_initialize) correctly before the logic of your api call starts.
    Regards.

  • Bad news if I can't debug cfcs in a flex project

    I'm trying to debug a cfc in a flex project Coldfusion builder installed as a plugin is Flash builder 4
    But I'm getting a message saying:
    File does not belong to a coldfusion project. Apply Coldfusion nature to the project to which the file belongs.
    This is bad news if I can't debug cfcs in a flex project

    Here are the targets (simplified) that are specific to the cfml export.  The real build.xml reads a build.properties file for the variables, and main runs the flex build first:
    <!-- Refresh CFML -->
    <property name="SVN.USERNAME" value="MY SVN USERNAME"/><!-- change to your svn username -->
    <property name="SVN.PASSWORD" value="MY SVN PASSWORD"/><!-- change to your svn password -->
    <property name="SVN.PROJECT_URL" value="http://mysvnproject.com/trunk"/><!-- change to your svn url -->
    <property name="BUILD.EXPORT_DIR" value="c:/CFML/project/export/path"/><!-- change to your CFML project path -->
    <property name="DEPLOY_DIR" value="c:/flex/project/deploy/path"/><!-- change to your Flex project path -->
    <!-- runs the targets -->
    <target name="main" depends="export-cfml, copy-cfml"/>
    <target name="export-cfml" depends="find_revision, check-svn-build" unless="build.exists">
         <echo>Lates SVN build did not exist, export it</echo>
         <!-- export from svn -->
         <exec executable="svn">
              <arg line="export &quot;${SVN.PROJECT_URL}&quot; ${build.dir} -r ${revision.number} --username ${SVN.USERNAME} --password ${SVN.PASSWORD}"/>
         </exec>          
    </target>
    <!-- Get the latest revision number -->
    <target name="find_revision" description="Sets property 'revision.number' to the head svn revision">
         <!-- Use SVN to learn the latest revision number -->
         <exec executable="svn" outputproperty="revision.number">
              <arg line="info &quot;${SVN.PROJECT_URL}&quot;"/>
              <redirector>
                   <outputfilterchain>
                        <linecontainsregexp>
                             <regexp pattern='^Last Changed Rev' />
                        </linecontainsregexp>
                        <tokenfilter>
                             <replaceregex pattern='[\D]+([\d]+)' replace="\1" />
                        </tokenfilter>
                   </outputfilterchain>
              </redirector>
         </exec>
         <echo message="Current SVN Revision: ${revision.number}"/>
    </target>
    <!-- we only export from svn if we haven't already for current revision.number -->
    <target name="check-svn-build">
         <!-- setup the build dir name based on the latest revision number -->
         <property name="build.dir" value="${BUILD.EXPORT_DIR}/${revision.number}" />
         <available file="${build.dir}" property="build.exists" value="true" type="dir" />
         <echo>SVN build exists: ${build.exists}</echo>
    </target>
    <!-- we always copy from the latest svn export dir to the flex project -->
    <target name="copy-cfml">
         <echo>Copy CFML to Flex Project</echo>
         <!-- copy cfml to flex project -->
         <copy todir="${DEPLOY_DIR}/www">
              <fileset dir="${build.dir}"/>
         </copy>
    </target>
    Note: I quickly stripped out all "extra" stuff we do for our project, so this is untested and may contain typos.

Maybe you are looking for

  • TDS Provision - J1INPR - Profit Center in line item 0001 not defined

    HI SAP GURUS, When I am running j1inpr,  error of profit center not defined for line item 0001 is coming. Please help me to resolve the issue CHEERS

  • How to deploy the new VSM 1.3 appication on OAS Container for J2EE 10g

    I am trying to test the new VSM 1.3 sample application. But, am getting HTTP 404 - File not found I followed. http://otn.oracle.com/sample_code/tutorials/vsm1.3/over/setup.htm#OC4J Step 1: ======= I set the ennvironment variables Step2: ======= C> cd

  • WHERE vs JOIN    which is the best

    dear all I learned to make join between emp table and dept table using the where clause. Example : select e.ename,d.dname from emp e, dept d where e.deptno = d.deptno; One of my friends told me that join using where clause is not good in performance,

  • Firewire camera not found in MAX on Windows 7

    Hi all, Used to run a firewire camera on Windows XP with no problems. Using version 8.6 and do not want to change this if at all possible. New lab PC runs windows 7 and firewire camera not found in NI MAX. The drivers associated with the camera are N

  • Servlet can't get the correct timezone in NAS

    my servlet is using the Java TimeZone class to get the current date/time. however, the timezone retrieved is incorrect (GMT+0) -- not the same as the operating system (Unix) timezone. But the time stamp in the Nas logs displays the correct timezone (