BAdI SMOD_RSR00004 for Jump Query

Hi,
I have to create a jump query to an R/3 transaction. The I/O 'Object key' in the BW corresponds to the r/3 field OBJKY of the NAST table. After trying out all the possibilities/ assignments in RSBBS also its not working.
Can anybody pls guide me how to implement BADI for this jump query(RRI for Transaction).
Thanks in Advance,
Sandy.

Hi Sandy,
What is the problem you are experiencing exactly?
What I had to do was in the Assignment Details choose Type "3 Table Field" for the infoobject in the query you want to pass to the transaction then fill in the field name for the source table and the fields data element and domain values.
You will also need authorisation to transaction RSRR_WEB in the source for this to work.
Hope this helps.
Cheers
Craig

Similar Messages

  • BAdI SMOD_RSR00004 for Jump from BW Query to R/3 transaction

    Hi,
    I have to create a jump query to an R/3 transaction. The I/O 'Object key' in the BW corresponds to the r/3 field OBJKY of the NAST table. After trying out all the possibilities/ assignments in RSBBS(BW) also its not working.
    Can anybody pls guide me how to implement BADI for this type jump query(RRI for Transaction).
    Thanks in Advance,
    Sandy.

    Hi Gurus, Any help on this pls...

  • New browser window for Jump Query

    Hi SAPGuru,
         I have main Query with three jumps Query (QA, QB, QC). I created web template with main query and three other web templates for jump query. All are working fine. When I am running main query template and trying to jump from main query to “QA” web template. Its open a new browse window that’s fine. So now I have total two browsers are open. Now when I try to jump from main query to “QB” that web template is showing in the browser window which is shown by “QA”. Means it’s overwrite “QA” query with “QB” query in browser.
         I need to open a new browser window when I jump from main query to child query. In short I like to open one browser for main query and three another browsers (QA, QB, QC) to jump query so, I can compare all query with different browser window.
             Am I missing something in web template side or IE’s option side?
             Thanks in advance...

    Check the RRI_DISPLAY_TARGET property of the web template. make sure you do not have this set to open in the QA window.
    Thanks.

  • BAPI for jump query(T. code RRI) and Exceptions

    Is there any BAPI is avaliable for jump query and Exceptions in BW System?
    Thanks,
    Rohan

    Hi Sanjay,
                      There is a 2 BAPI's for loading Catalogs
    1)  BAPI_QPGR_REPLICATE - to create Code group
    2)  BAPI_QPGR_SAVEREPLICA - to create Codes
    Thanks,
    Shobha

  • Authorization issue for Jump query from Summary to Detail

    Hello Gurus,
    I am facing an interesting issue in Jump query authorization.
    I have a query on a summary cube which has Company code as a authorization relevant object .From this query I launch a query on detail cube.This details cube has company code and customer as authorization relevant objects.Customer is present in free characteristic for this query.Summary cube doesnt have the customer object at all.
                     When the user drillsdown on the Customer level in the details query he get the authorization error.After this if he just refreshes the query it works fine .
                       Can anybody please suggest any innovative workaround for this issue.
    Gautam

    Hello Gurus,
    I am facing an interesting issue in Jump query authorization.
    I have a query on a summary cube which has Company code as a authorization relevant object .From this query I launch a query on detail cube.This details cube has company code and customer as authorization relevant objects.Customer is present in free characteristic for this query.Summary cube doesnt have the customer object at all.
                     When the user drillsdown on the Customer level in the details query he get the authorization error.After this if he just refreshes the query it works fine .
                       Can anybody please suggest any innovative workaround for this issue.
    Gautam

  • RRI - pulling all customers info for jump query

    Folks,
    I have created a RRI from query Q1 (Order information for all customers) to query Q2 (Detailed Invoice information at Customer level) also I have created a Variable on Customer in query Q2. My intention is when I right click on the customer from query Q1,  I wanted my jump query to display only Invoice detail information for that customer _intead it is showing for all customers._
    If I executed my Q2 seperately with a selected customer then I can only seeing Invoice detail information for that customer.
    Please share your thoughts...
    Thanks,
    KK

    Hi Kumar,
    What U r done is correct but u want under each customer order drill down to all invoices, anyway by using rsbbs u r getting the second query .aginn that variables also excutes in q2 . but u want drilldown particular to the customorder. pls try with  in second query on customer order number create the heirarchy with invoices and keep nodedisplay level as 1 in charactarstic properties of customer order number, because in ordertype drilldown given for oredrs it is also RRI report only I think It will Works pls try.
    Thanks
    k.sathish

  • Getting runtime erro for Jump query

    Hi,
    A particular user is getting runtime error while doing Jump query, all others are able to do the same for the same query,
    any solution pls
    Regards
    RKR

    Hello,
    What is the runtime error that the user gets?
    Also is it analyzer based or web based report.
    In case of Web Report, check which IE version he is on...
    Regards,
    Shashank

  • Simple link for jump query

    We have a BI web app for grant financial data that currently uses jump queries (RRI).  However, our users really dislike having to right click to get the context menu and select the 'goto' option.  Right-clicking in web apps is not an intuitive action.  Is there a way to make the field a simple link so that a single click takes them to the related query?
    Thanks in advance for you help,

    you could declare the entire table within a href tag and use the web api cmd 'RRI'.
    ie
    A  href="<SAP_BW_URL  DATA_PROVIDER='DP' cmd='RRI' rri_receiver='your rri id number'>">
    <object>
    </object> /A
    Now all the user does is left click on the table / graph to jump.

  • Bad SQL for JDO query

    Kodo JDO EE 2.3 RC1 (with InstantDB on JBoss 3.0 on JDK 1.3.1 on Mac
    OS X 10.1.5) generates wrong SQL for a JDO query with a parameter.
    Essentially (unimportant details omitted) I have the following:
    2 associated persistence-capable classes
    public class Person
         private String name;
    public class Issue
         private int id;
         private Person owner;
    both with application-managed identity (Person by name, Issue by id),
    both in the same package. I want to search the database for all Issues
    owned by a certain Person. My code looks like this:
    @pre p is persistent
    Collection findByOwner(Person p){
         // pm is the PersistenceManager
         //TODO pm.newQuery(Issue.class, filter) does not work with Kodo 2.3 RC1
         Extent extent = pm.getExtent(Issue.class, true);
         Query query = pm.newQuery(extent, "owner==person");
         query.setClass(Issue.class);
         query.setIgnoreCache(true);
         query.declareParameters(Person.class.getName() + " person");
         return (Collection)query.execute(p);
    and produces the following SQL statement
    SELECT t0.IDX, t0.JDOCLASSX, t0.JDOLOCKX, t0.NAME_OWNERX FROM ISSUEX
    t0, PERSONX t1 WHERE (t1.NAMEX = NULL AND t0.NAME_OWNERX = t1.NAMEX)
    which is wrong because the actual p.name, which is definitely not nil,
    got lost, and is even rejected by the database*, probably because
    NAMEX is the primary key and cannot be NULL.
    I am pretty sure that this used to work correctly with Kodo 2.2.4. Can
    anyone tell me what I could be doing wrong? I will provide the full
    source code at request.
    Thanks,
    Jakob
    * SQLException:
    Don't understand SQL after: "WHERE"
    Expected: "{" found: "NULL"

    This issue has been resolved in internal builds.
    Some tangential notes about the code below:
    - in our latest version, we no longer require extents when executing
    queries (the candidate class is sufficient).
    - I'm a little concerned about where the 'pm' variable came from in
    Issue.findByOwner(). If that's a member variable, you'd be better off
    doing 'JDOHelper.getPersistenceManager (this)' instead of caching it on
    your own -- this way, you'll avoid any potential issues with somehow
    using the wrong PM or something.
    - Given that all the info is stored in the database already, I'd suggest
    making the relation a bidirectional one, so that you can just traverse
    from Issue to Person without needing to do a query. This will be faster,
    as we will be able to leverage our PM and PMF caches rather than needing
    to execute a query against the data store.
    -Patrick
    Jakob Spies <[email protected]> wrote:
    Kodo JDO EE 2.3 RC1 (with InstantDB on JBoss 3.0 on JDK 1.3.1 on Mac
    OS X 10.1.5) generates wrong SQL for a JDO query with a parameter.
    Essentially (unimportant details omitted) I have the following:
    2 associated persistence-capable classes
    public class Person
    private String name;
    public class Issue
    private int id;
    private Person owner;
    both with application-managed identity (Person by name, Issue by id),
    both in the same package. I want to search the database for all Issues
    owned by a certain Person. My code looks like this:
    @pre p is persistent
    Collection findByOwner(Person p){
    // pm is the PersistenceManager
    //TODO pm.newQuery(Issue.class, filter) does not work with Kodo 2.3 RC1
    Extent extent = pm.getExtent(Issue.class, true);
    Query query = pm.newQuery(extent, "owner==person");
    query.setClass(Issue.class);
    query.setIgnoreCache(true);
    query.declareParameters(Person.class.getName() + " person");
    return (Collection)query.execute(p);
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Jump Query asking for Sign on again in Portal

    Hi All,
    I have a jump query (target is a URL not a web template) and when we click on goto/xyz_report the system is asking login again. On other reports when the target is a web template the system follows the SSO (we have SSO on the portal and once you are in the portal you will not be asked for login again).
    Any idea if the problem is because the target is an url or any other settings i have to watch for...
    Please help.
    Thanks and Best Regards,

    so target is also a BW application (http://servername.companyname.com:7990/sap/bw/BEx?sap-lang"
    ) right?
    you logged into system A, ran a webtemplate and jump target is another webquery/template in the same system, but its again throwing login window? - is my understanding right?
    Can you confirm this
    Regards
    Raja

  • Multiple value selection from a base query to jump query in Web

    Hi ,
    System info
    SAP BW 3.5               level-9
    PI_BASIS -2004_1_640     level-8
    SAP_ABA  -640            Level-11
    SAP_BASIS-640            Level-11
    We have an inventory query with Profit Center,Plant & Material as characteristic. When we run the query, for example we get 10 materials for a plant. We want to keep those materials as filter value for material & want to jump to another query. The Jump query will only execute for those selected materials.
    We can able to do the above scenario in BW BEx analyzer but we are not able to do in the web. Any input to resolve the issue are welcome.
    example
    Query A
    Profit Center     Plant  Material
    PC12345          P542     M1
    PC12345          P542    M2
    PC12345          P542    M3
    PC12345          P542     M4
    PC12345          P542     M5
    PC12345          P542     M6
    PC12345          P542     M7
    PC12345          P542     M8
    PC12345          P542     M9
    PC12345          P542     M10
    Select M1 to M10 & right click "Keep filter value"
    Then remove Material from the drilldown.
    The query looklike this:
    Query A
    Material M1....M10
    Profit Center     Plant 
    PC12345          P542     
    Then right click on P542 "Goto" jump query B.
    Query B get executed on those selected materials(M1...M10) as we have a material variable in query B which is mandatory.
    In a nut we are selecting more then one value & going to another query.
    Regards
    Mahendra

    when u select KEEP FILTER VALUE at tat instance u can select only 1 value
    HOW DID U SELECT   M1 & M10 bot within one hit.
    instead of using this option.... did u try restriction
    wat i mean is when u know before hand that u need only m1 & m10
    remove material first from the display
    it will automatically reside in Free chars
    right click material and hit RESTRICT
    select m1 &  m10
    hit okey
    now u will see desired result...
    now try jump query...
    try removing the material variable from query b , just for experiementing purpose
    and then repeat above exercise...
    let us know how u go with it

  • BEx Query Designer Jump Query Error

    Creating a jump query from BW (nw2004s) to R3 (6.20).
    Services in SICF activated
    webgui, system and shuffler all published to internal.
    Table TWPURLSVR maintained on the R3 side.
    The query logs into the portal, but upon attempting to do a dispaly w/in the query receive the following:
    Business Server Page (BSP) Error
    What happened?
    Call of BSP page terminated due to error.
    Note
    Following error text processed in system:
    BSP Exception: the Application Name ! in URL /sap/bc/bsp/rsrr_web/!?okcode=ENTR&G_S_WEB-DEST=TW1C100&G_S_WEB-HANDLE=45FDQG3EXVLGC22F7ZTBYNX6I&client=100&language=EN&logingroup=SPACE is invalid.
    Error Type:
    Your SAP Business Server Pages Team
    Any suggestions appreciated!

    Whats your R/2 WAS version?
    Delete the entries from the TWPURLSVR table and maintain it in RSBBS_RSRR_URL where you can store the full URL and dont have to worry about the different fields.
    If 620 then you will need a standalone ITS and the URL can be maintained in the format below.
    http://<server port>/scripts/wgate/webgui/!?client=100&transaction=RSRR&
    For WAS 640 and above.
    http://<server port>//sap/bc/gui/sap/its/webgui?

  • Authorization issue during Jump Query in BI

    Hi,
    We are facing an issue in BI system, whr user is trying to use and query and jump query [also called, report to report interface (RRI) ]
    But user is getting authorization error while jumping from main query to the other query?
    Could you please help on how to identify what authorization is missing?
    Thanks,
    Umesh C

    Characteristic     Content(in SQL Format)
    0COMP_CODE
    0CREDITOR
    0TCAACTVT
         ( 0COMP_CODE < '0104'
    OR 0COMP_CODE > '0105'
    AND 0COMP_CODE < '0110'
    OR 0COMP_CODE > '0111'
    AND 0COMP_CODE < '0129'
    OR 0COMP_CODE > '0130'
    AND 0COMP_CODE < '0147'
    OR 0COMP_CODE > '0149'
    AND 0COMP_CODE < '0215'
    OR 0COMP_CODE > '0216'
    AND 0COMP_CODE < '0234'
    OR 0COMP_CODE > '0235'
    AND 0COMP_CODE < '0253'
    OR 0COMP_CODE > '0254'
    AND 0COMP_CODE < '0297'
    OR 0COMP_CODE > '0298'
    AND 0COMP_CODE < '0304'
    OR 0COMP_CODE > '0305'
    AND 0COMP_CODE < '0325'
    OR 0COMP_CODE > '0331'
    AND 0COMP_CODE < '0400'
    OR 0COMP_CODE > '0401'
    AND 0COMP_CODE < '0403'
    OR 0COMP_CODE > '0405'
    AND 0COMP_CODE < '0407'
    OR 0COMP_CODE > '0408'
    AND 0COMP_CODE < '0411'
    OR 0COMP_CODE > '0412'
    AND 0COMP_CODE < '0414'
    OR 0COMP_CODE > '0415'
    AND 0COMP_CODE < '0422'
    OR 0COMP_CODE > '0424'
    AND 0COMP_CODE < '0480'
    OR 0COMP_CODE > '0481'
    AND 0COMP_CODE < '0483'
    OR 0COMP_CODE > '0485'
    AND 0COMP_CODE < '0500'
    OR 0COMP_CODE > '0503'
    AND 0COMP_CODE < '0505'
    OR 0COMP_CODE > '0508'
    AND 0COMP_CODE < '0510'
    OR 0COMP_CODE > '0513'
    AND 0COMP_CODE < '0515'
    OR 0COMP_CODE > '0516'
    AND 0COMP_CODE < '0518'
    OR 0COMP_CODE > '0523'
    AND 0COMP_CODE < '0525'
    OR 0COMP_CODE > '0526'
    AND 0COMP_CODE < '0528'
    OR 0COMP_CODE > '0529'
    AND 0COMP_CODE < '0530'
    OR 0COMP_CODE > '0532'
    AND 0COMP_CODE < '0537'
    OR 0COMP_CODE > '0538'
    AND 0COMP_CODE < '0540'
    OR 0COMP_CODE > '0545'
    AND 0COMP_CODE < '0547'
    OR 0COMP_CODE > '0548'
    AND 0COMP_CODE < '0550'
    OR 0COMP_CODE > '0551'
    AND 0COMP_CODE < '0553'
    OR 0COMP_CODE > '0555'
    AND 0COMP_CODE < '0557'
    OR 0COMP_CODE > '0558'
    AND 0COMP_CODE < '0560'
    OR 0COMP_CODE > '0561'
    AND 0COMP_CODE < '0568'
    OR 0COMP_CODE > '0569'
    AND 0COMP_CODE < '0573'
    OR 0COMP_CODE > '0577'
    AND 0COMP_CODE < '0579'
    OR 0COMP_CODE > '0582'
    AND 0COMP_CODE < '0585'
    OR 0COMP_CODE > '0586'
    AND 0COMP_CODE < '0590'
    OR 0COMP_CODE > '0594'
    AND 0COMP_CODE < '0602'
    OR 0COMP_CODE > '0603'
    AND 0COMP_CODE < '0618'
    OR 0COMP_CODE > '0626'
    AND 0COMP_CODE < '0635'
    OR 0COMP_CODE > '0637'
    AND 0COMP_CODE < '0642'
    OR 0COMP_CODE > '0644'
    AND 0COMP_CODE < '0648'
    OR 0COMP_CODE > '0649'
    AND 0COMP_CODE < '0690'
    OR 0COMP_CODE > '0691'
    AND 0COMP_CODE < '0731'
    OR 0COMP_CODE > '0733'
    AND 0COMP_CODE < '0790'
    OR 0COMP_CODE > '0791'
    AND 0COMP_CODE < '0824'
    OR 0COMP_CODE > '0825'
    AND 0COMP_CODE < '0870'
    OR 0COMP_CODE > '0871'
    AND 0COMP_CODE < '0895'
    OR 0COMP_CODE > '0896'
    AND 0COMP_CODE < '0912'
    OR 0COMP_CODE > '0913'
    AND 0COMP_CODE < '0962'
    OR 0COMP_CODE > '0963'
    AND 0COMP_CODE < '1006'
    OR 0COMP_CODE > '1007'
    AND 0COMP_CODE < '1010'
    OR 0COMP_CODE > '1011'
    AND 0COMP_CODE < '1024'
    OR 0COMP_CODE > '1029'
    AND 0COMP_CODE < '1055'
    OR 0COMP_CODE > '1056'
    AND 0COMP_CODE < '1058'
    OR 0COMP_CODE > '1061'
    AND 0COMP_CODE < '1097'
    OR 0COMP_CODE > '1100'
    AND 0COMP_CODE < '1108'
    OR 0COMP_CODE > '1109'
    AND 0COMP_CODE < '1112'
    OR 0COMP_CODE > '1124'
    AND 0COMP_CODE < '1126'
    OR 0COMP_CODE > '1136'
    AND 0COMP_CODE < '1138'
    OR 0COMP_CODE > '1139'
    AND 0COMP_CODE < '1172'
    OR 0COMP_CODE > '1175'
    AND 0COMP_CODE < '1179'
    OR 0COMP_CODE > '1181'
    AND 0COMP_CODE < '1200'
    OR 0COMP_CODE > '1224'
    AND 0COMP_CODE < '1228'
    OR 0COMP_CODE > '1229'
    AND 0COMP_CODE < '1231'
    OR 0COMP_CODE > '1234'
    AND 0COMP_CODE < '1236'
    OR 0COMP_CODE > '1237'
    AND 0COMP_CODE < '1325'
    OR 0COMP_CODE > '1326'
    AND 0COMP_CODE < '1503'
    OR 0COMP_CODE > '1504'
    AND 0COMP_CODE < '1651'
    OR 0COMP_CODE > '1663'
    AND 0COMP_CODE < '1667'
    OR 0COMP_CODE > '1675'
    AND 0COMP_CODE < '1677'
    OR 0COMP_CODE > '1683'
    AND 0COMP_CODE < '1686'
    OR 0COMP_CODE > '1688'
    AND 0COMP_CODE < '1700'
    OR 0COMP_CODE > '1704'
    AND 0COMP_CODE < '1707'
    OR 0COMP_CODE > '1720'
    AND 0COMP_CODE < '1727'
    OR 0COMP_CODE > '1731'
    AND 0COMP_CODE < '1788'
    OR 0COMP_CODE > '1796'
    AND 0COMP_CODE < '1800'
    OR 0COMP_CODE > '1801'
    AND 0COMP_CODE < '1889'
    OR 0COMP_CODE > '1895'
    AND 0COMP_CODE < '1905'
    OR 0COMP_CODE > '1906'
    AND 0COMP_CODE < '1910'
    OR 0COMP_CODE > '1912'
    AND 0COMP_CODE < '1920'
    OR 0COMP_CODE > '1926'
    AND 0COMP_CODE < '1976'
    OR 0COMP_CODE > '1977'
    AND 0COMP_CODE < '2001'
    OR 0COMP_CODE > '2003'
    AND 0COMP_CODE < '2006'
    OR 0COMP_CODE > '2019'
    AND 0COMP_CODE < '2205'
    OR 0COMP_CODE > '2208'
    AND 0COMP_CODE < '2300'
    OR 0COMP_CODE > '2307'
    AND 0COMP_CODE < '2315'
    OR 0COMP_CODE > '2325'
    AND 0COMP_CODE < '2365'
    OR 0COMP_CODE > '2366'
    AND 0COMP_CODE < '2380'
    OR 0COMP_CODE > '2381'
    AND 0COMP_CODE < '2394'
    OR 0COMP_CODE > '2395'
    AND 0COMP_CODE < '2453'
    OR 0COMP_CODE > '2454'
    AND 0COMP_CODE < '2489'
    OR 0COMP_CODE > '2493'
    AND 0COMP_CODE < '2500'
    OR 0COMP_CODE > '2505'
    AND 0COMP_CODE < '2565'
    OR 0COMP_CODE > '2566'
    AND 0COMP_CODE < '5154'
    OR 0COMP_CODE > '5155'
    AND 0COMP_CODE < '5208'
    OR 0COMP_CODE > '5210'
    AND 0COMP_CODE < '5301'
    OR 0COMP_CODE > '5302'
    AND 0COMP_CODE < '5502'
    OR 0COMP_CODE > '5503'
    AND 0COMP_CODE < '5507'
    OR 0COMP_CODE > '5508'
    AND 0COMP_CODE < '5592'
    OR 0COMP_CODE > '5593'
    AND 0COMP_CODE < '5595'
    OR 0COMP_CODE > '5596'
    AND 0COMP_CODE < '5916'
    OR 0COMP_CODE > '5917'
    AND 0COMP_CODE < '5922'
    OR 0COMP_CODE > '5923'
    AND 0COMP_CODE < '5992'
    OR 0COMP_CODE > '5993'
    AND 0COMP_CODE < '6731'
    OR 0COMP_CODE > '6732'
    AND 0COMP_CODE < '7000'
    OR 0COMP_CODE > '7001'
    AND 0COMP_CODE < '7483'
    OR 0COMP_CODE > '7484'
    AND 0COMP_CODE < '8000'
    OR 0COMP_CODE > '8004'
    AND 0COMP_CODE < '8008'
    OR 0COMP_CODE > '8009'
    AND 0COMP_CODE < '8036'
    OR 0COMP_CODE > '8042'
    AND 0COMP_CODE < '8050'
    OR 0COMP_CODE > '8051'
    AND 0COMP_CODE < '8059'
    OR 0COMP_CODE > '8060'
    AND 0COMP_CODE < '8100'
    OR 0COMP_CODE > '8102'
    AND 0COMP_CODE < '8748'
    OR 0COMP_CODE > '8750'
    AND 0COMP_CODE < '9101'
    OR 0COMP_CODE > '9124'
    AND 0COMP_CODE < '9126'
    OR 0COMP_CODE > '9131'
    AND 0COMP_CODE < '9133'
    OR 0COMP_CODE > '9148'
    AND 0COMP_CODE < '9152'
    OR 0COMP_CODE > '9167'
    AND 0COMP_CODE < '9169'
    OR 0COMP_CODE > '9170'
    AND 0COMP_CODE < '9173'
    OR 0COMP_CODE > '9178'
    AND 0COMP_CODE < '9183'
    OR 0COMP_CODE > '9186'
    AND 0COMP_CODE < '9188'
    OR 0COMP_CODE > '9199'
    AND 0COMP_CODE < '9202'
    OR 0COMP_CODE > '9204'
    AND 0COMP_CODE < '9206'
    OR 0COMP_CODE > '9222'
    AND 0COMP_CODE < '9224'
    OR 0COMP_CODE > '9225'
    AND 0COMP_CODE < '9228'
    OR 0COMP_CODE > '9230'
    AND 0COMP_CODE < '9232'
    OR 0COMP_CODE > '9237'
    AND 0COMP_CODE < '9239'
    OR 0COMP_CODE > '9262'
    AND 0COMP_CODE < '9264'
    OR 0COMP_CODE > '9269'
    AND 0COMP_CODE < '9271'
    OR 0COMP_CODE > '9274'
    AND 0COMP_CODE < '9276'
    OR 0COMP_CODE > '9288'
    AND 0COMP_CODE < '9291'
    OR 0COMP_CODE > '9311'
    AND 0COMP_CODE < '9313'
    OR 0COMP_CODE > '9314'
    AND 0COMP_CODE < '9316'
    OR 0COMP_CODE > '9339'
    AND 0COMP_CODE < '9502'
    OR 0COMP_CODE > '9503'
    AND 0COMP_CODE < '9505'
    OR 0COMP_CODE > '9508'
    AND 0COMP_CODE < '9512'
    OR 0COMP_CODE > '9515'
    AND 0COMP_CODE < '9521'
    OR 0COMP_CODE > '9523'
    AND 0COMP_CODE < '9525'
    OR 0COMP_CODE > '9526'
    AND 0COMP_CODE < '9529'
    OR 0COMP_CODE > '9531'
    AND 0COMP_CODE < '9540'
    OR 0COMP_CODE > '9541'
    AND 0COMP_CODE < '9543'
    OR 0COMP_CODE > '9545'
    AND 0COMP_CODE < '9550'
    OR 0COMP_CODE > '9551'
    AND 0COMP_CODE < '9557'
    OR 0COMP_CODE > '9558'
    AND 0COMP_CODE < '9565'
    OR 0COMP_CODE > '9566'
    AND 0COMP_CODE < '9568'
    OR 0COMP_CODE > '9570'
    AND 0COMP_CODE < '9585'
    OR 0COMP_CODE > '9587'
    AND 0COMP_CODE < '9592'
    OR 0COMP_CODE > '9596'
    AND 0COMP_CODE < '9610'
    OR 0COMP_CODE > '9612'
    AND 0COMP_CODE < '9618'
    OR 0COMP_CODE > '9619'
    AND 0COMP_CODE < '9688'
    OR 0COMP_CODE > '9689'
    AND 0COMP_CODE < '9790'
    OR 0COMP_CODE > '9791'
    AND 0COMP_CODE < '9916'
    OR 0COMP_CODE > '9917'
    AND 0COMP_CODE < '9922'
    OR 0COMP_CODE > '9923'
    AND 0COMP_CODE < '9992'
    OR 0COMP_CODE > '9993' )
    AND NOT 0COMP_CODE IN ('#','0001','0100','0107','0120','0126','0138','0145','0152','0171','0175','0180','0181','0188','0195','0197','0200','0206','0213','0221','0229','0232','0240','0244','0247','0257','0261','0263','0265','0267','0280','0285','0290','031
    AND ( 0CREDIT
    OR = '#'
    OR 0CREDIT
    OR BETWEEN '#'
    AND '0000199999'
    OR 0CREDIT
    OR BETWEEN '0000300000'
    AND '9999999999' )
    AND 0TCAACTVT = '03'
    Characteristic     Content(in SQL Format)
    0COMP_CODE     I BT 0104 0105
    I BT 0110 0111
    I BT 0129 0130
    I BT 0147 0149
    I BT 0215 0216
    I BT 0234 0235
    I BT 0253 0254
    I BT 0297 0298
    I BT 0304 0305
    I BT 0325 0331
    I BT 0400 0401
    I BT 0403 0405
    I BT 0407 0408
    I BT 0411 0412
    I BT 0414 0415
    I BT 0422 0424
    I BT 0480 0481
    I BT 0483 0485
    I BT 0500 0503
    I BT 0505 0508
    I BT 0510 0513
    I BT 0515 0516
    I BT 0518 0523
    I BT 0525 0526
    I BT 0528 0529
    I BT 0530 0532
    I BT 0537 0538
    I BT 0540 0545
    I BT 0547 0548
    I BT 0550 0551
    I BT 0553 0555
    I BT 0557 0558
    I BT 0560 0561
    I BT 0568 0569
    I BT 0573 0577
    I BT 0579 0582
    I BT 0585 0586
    I BT 0590 0594
    I BT 0602 0603
    I BT 0618 0626
    I BT 0635 0637
    I BT 0642 0644
    I BT 0648 0649
    I BT 0690 0691
    I BT 0731 0733
    I BT 0790 0791
    I BT 0824 0825
    I BT 0870 0871
    I BT 0895 0896
    I BT 0912 0913
    I BT 0962 0963
    I BT 1006 1007
    I BT 1010 1011
    I BT 1024 1029
    I BT 1055 1056
    I BT 1058 1061
    I BT 1097 1100
    I BT 1108 1109
    I BT 1112 1124
    I BT 1126 1136
    I BT 1138 1139
    I BT 1172 1175
    I BT 1179 1181
    I BT 1200 1224
    I BT 1228 1229
    I BT 1231 1234
    I BT 1236 1237
    I BT 1325 1326
    I BT 1503 1504
    I BT 1651 1663
    I BT 1667 1675
    I BT 1677 1683
    I BT 1686 1688
    I BT 1700 1704
    I BT 1707 1720
    I BT 1727 1731
    I BT 1788 1796
    I BT 1800 1801
    I BT 1889 1895
    I BT 1905 1906
    I BT 1910 1912
    I BT 1920 1926
    I BT 1976 1977
    I BT 2001 2003
    I BT 2006 2019
    I BT 2205 2208
    I BT 2300 2307
    I BT 2315 2325
    I BT 2365 2366
    I BT 2380 2381
    I BT 2394 2395
    I BT 2453 2454
    I BT 2489 2493
    I BT 2500 2505
    I BT 2565 2566
    I BT 5154 5155
    I BT 5208 5210
    I BT 5301 5302
    I BT 5502 5503
    I BT 5507 5508
    I BT 5592 5593
    I BT 5595 5596
    I BT 5916 5917
    I BT 5922 5923
    I BT 5992 5993
    I BT 6731 6732
    I BT 7000 7001
    I BT 7483 7484
    I BT 8000 8004
    I BT 8008 8009
    I BT 8036 8042
    I BT 8050 8051
    I BT 8059 8060
    I BT 8100 8102
    I BT 8748 8750
    I BT 9101 9124
    I BT 9126 9131
    I BT 9133 9148
    I BT 9152 9167
    I BT 9169 9170
    I BT 9173 9178
    I BT 9183 9186
    I BT 9188 9199
    I BT 9202 9204
    I BT 9206 9222
    I BT 9224 9225
    I BT 9228 9230
    I BT 9232 9237
    I BT 9239 9262
    I BT 9264 9269
    I BT 9271 9274
    I BT 9276 9288
    I BT 9291 9311
    I BT 9313 9314
    I BT 9316 9339
    I BT 9502 9503
    I BT 9505 9508
    I BT 9512 9515
    I BT 9521 9523
    I BT 9525 9526
    I BT 9529 9531
    I BT 9540 9541
    I BT 9543 9545
    I BT 9550 9551
    I BT 9557 9558
    I BT 9565 9566
    I BT 9568 9570
    I BT 9585 9587
    I BT 9592 9596
    I BT 9610 9612
    I BT 9618 9619
    I BT 9688 9689
    I BT 9790 9791
    I BT 9916 9917
    I BT 9922 9923
    I BT 9992 9993
    I EQ #
    I EQ 0001
    I EQ 0100
    I EQ 0107
    I EQ 0120
    I EQ 0126
    I EQ 0138
    I EQ 0145
    I EQ 0152
    I EQ 0171
    I EQ 0175
    I EQ 0180
    I EQ 0181
    I EQ 0188
    I EQ 0195
    I EQ 0197
    I EQ 0200
    I EQ 0206
    I EQ 0213
    I EQ 0221
    I EQ 0229
    I EQ 0232
    I EQ 0240
    I EQ 0244
    I EQ 0247
    I EQ 0257
    I EQ 0261
    I EQ 0263
    I EQ 0265
    I EQ 0267
    I EQ 0280
    I EQ 0285
    I EQ 0290
    I EQ 0319
    I EQ 0323
    I EQ 0335
    I EQ 0362
    I EQ 0431
    I EQ 0439
    I EQ 0447
    I EQ 0467
    I EQ 0472
    I EQ 0487
    I EQ 0534
    I EQ 0564
    I EQ 0588
    I EQ 0597
    I EQ 0600
    I EQ 0605
    I EQ 0610
    I EQ 0613
    I EQ 0617
    I EQ 0630
    I EQ 0632
    I EQ 0639
    I EQ 0646
    I EQ 0647
    I EQ 0650
    I EQ 0651
    I EQ 0652
    I EQ 0653
    I EQ 0654
    I EQ 0655
    I EQ 0656
    I EQ 0658
    I EQ 0659
    I EQ 0660
    I EQ 0661
    I EQ 0665
    I EQ 0666
    I EQ 0668
    I EQ 0669
    I EQ 0670
    I EQ 0671
    I EQ 0672
    I EQ 0673
    I EQ 0677
    I EQ 0681
    I EQ 0684
    I EQ 0686
    I EQ 0694
    I EQ 0697
    I EQ 0703
    I EQ 0705
    I EQ 0710
    I EQ 0718
    I EQ 0722
    I EQ 0737
    I EQ 0747
    I EQ 0752
    I EQ 0753
    I EQ 0754
    I EQ 0755
    I EQ 0756
    I EQ 0757
    I EQ 0758
    I EQ 0759
    I EQ 0760
    I EQ 0761
    I EQ 0782
    I EQ 0797
    I EQ 0808
    I EQ 0810
    I EQ 0816
    I EQ 0819
    I EQ 0827
    I EQ 0834
    I EQ 0835
    I EQ 0836
    I EQ 0837
    I EQ 0840
    I EQ 0849
    I EQ 0860
    I EQ 0864
    I EQ 0865
    I EQ 0868
    I EQ 0907
    I EQ 0928
    I EQ 0935
    I EQ 0946
    I EQ 0959
    I EQ 0965
    I EQ 0977
    I EQ 0990
    I EQ 1000
    I EQ 1013
    I EQ 1015
    I EQ 1020
    I EQ 1044
    I EQ 1046
    I EQ 1050
    I EQ 1052
    I EQ 1067
    I EQ 1069
    I EQ 1074
    I EQ 1085
    I EQ 1087
    I EQ 1089
    I EQ 1092
    I EQ 1102
    I EQ 1103
    I EQ 1105
    I EQ 1106
    I EQ 1141
    I EQ 1166
    I EQ 1170
    I EQ 1184
    I EQ 1187
    I EQ 1239
    I EQ 1314
    I EQ 1402
    I EQ 1562
    I EQ 1597
    I EQ 1689
    I EQ 1690
    I EQ 1691
    I EQ 1692
    I EQ 1693
    I EQ 1694
    I EQ 1695
    I EQ 1696
    I EQ 1705
    I EQ 1706
    I EQ 1725
    I EQ 1733
    I EQ 1745
    I EQ 1751
    I EQ 1754
    I EQ 1803
    I EQ 1819
    I EQ 1887
    I EQ 2005
    I EQ 2185
    I EQ 2201
    I EQ 2330
    I EQ 2332
    I EQ 2339
    I EQ 2354
    I EQ 2368
    I EQ 2372
    I EQ 2397
    I EQ 2437
    I EQ 2439
    I EQ 2458
    I EQ 2512
    I EQ 2613
    I EQ 2800
    I EQ 2801
    I EQ 2802
    I EQ 2803
    I EQ 2805
    I EQ 4528
    I EQ 5106
    I EQ 5110
    I EQ 5130
    I EQ 5183
    I EQ 5185
    I EQ 5189
    I EQ 5196
    I EQ 5203
    I EQ 5212
    I EQ 5230
    I EQ 5240
    I EQ 5242
    I EQ 5244
    I EQ 5265
    I EQ 5269
    I EQ 5273
    I EQ 5276
    I EQ 5286
    I EQ 5292
    I EQ 5306
    I EQ 5413
    I EQ 5425
    I EQ 5427
    I EQ 5510
    I EQ 5513
    I EQ 5523
    I EQ 5543
    I EQ 5551
    I EQ 5565
    I EQ 5572
    I EQ 5576
    I EQ 5587
    I EQ 5926
    I EQ 5930
    I EQ 6737
    I EQ 6747
    I EQ 6982
    I EQ 7481
    I EQ 7749
    I EQ 8006
    I EQ 8007
    I EQ 8200
    I EQ 8579
    I EQ 8644
    I EQ 8655
    I EQ 8739
    I EQ 8765
    I EQ 8766
    I EQ 8767
    I EQ 8821
    I EQ 8823
    I EQ 8923
    I EQ 8925
    I EQ 9050
    I EQ 9051
    I EQ 9055
    I EQ 9180
    I EQ 9347
    I EQ 9351
    I EQ 9354
    I EQ 9360
    I EQ 9361
    I EQ 9364
    I EQ 9413
    I EQ 9425
    I EQ 9427
    I EQ 9489
    I EQ 9500
    I EQ 9510
    I EQ 9518
    I EQ 9533
    I EQ 9536
    I EQ 9548
    I EQ 9554
    I EQ 9561
    I EQ 9572
    I EQ 9574
    I EQ 9576
    I EQ 9581
    I EQ 9601
    I EQ 9604
    I EQ 9606
    I EQ 9616
    I EQ 9634
    I EQ 9675
    I EQ 9683
    I EQ 9699
    I EQ 9707
    I EQ 9722
    I EQ 9741
    I EQ 9890
    I EQ 9926
    I EQ 9930
    I EQ 9976
    I EQ 9982
    I EQ 9999
    I EQ :
    I EQ AT01
    I EQ AU01
    I EQ BE01
    I EQ CA01
    I EQ CH01
    I EQ DE01
    I EQ DK01
    I EQ ES01
    I EQ FR01
    I EQ GB01
    I EQ HU01
    I EQ IT01
    I EQ JP01
    I EQ NL01
    I EQ NO01
    I EQ SE01
    I EQ SG01
    I EQ TEMP
    I EQ TMPN
    I EQ US01
    I EQ ZA01
    0CREDITOR     I BT 0000000000 0000199999
    I BT 0000300000 9999999999
    I EQ #
    I EQ :
    0TCAACTVT     I EQ 03
         Not Authorized Selection is not authorized     
    All Authorizations Tested
      Message EYE007: You do not have sufficient authorization 
      No Sufficient Authorization for This Subselection (SUBNR)

  • How to monitor the values transferred to the jump query in a debug mode?

    Dear experts,
    There is a problem in the interface of two qeuries. In the first query, the infoobject is defined as a global filter with a constant. I added this infoobject in the interface via RSBBS.
    Nevertheless, if i run the jump query, the value in this InfoObject is not taken into account by the jump query.
    Does anybody know whether there is a method to debug (monitor) the values tranferred to the jump query? For example, in the transaction RSRT or others.
    Thanks in advance!

    in RSRT- EXECUTE+DEBUG => breakpoint in RRI transpormations
    also see the note 1053310
    Regards, Ragz

  • RSBBS Jump Query -- Assignment Details

    Hi , I went RSBBS Jump Query --> Assignment Details --> InfoObject is Company Code so I (select type "Variable") --> Field Name I tried both Info Object Name("0comp_code")and Variable of Infoobject "0comp_code" is "ZS_CC" Manual entry variable for choosing NYLP OR NYPLP So i tired putting that in Field Name --> Selection Type (E Single Value). But it did not work and reciever query still show me the both NYLP AND NYPLP COMPANY CODE. reason I think of is use of Structure Company code in Receiver query and not the same Variable ("0comp_code")ZS_CC which is used in Sender query. I cannot change the same beacuse of reconicillation issue between two report
    Please let me know if I am doing any thing wrong or is there any other way to resolve this quick.
    thanks
    soniya

    I didn't understand your question, i think you can do this way.
    RSBBS Assign your Sender Query and receiver query. In Receiver query i think you have company code then create a variable and should be replacement path and  specify the sender query In the next screen in the query option. Then you should be getting only those values for that company code. When u drill down. It should work, wait for others opnion.
    Regards
    Kunal

Maybe you are looking for