RS_BBS_BADI / RSR00004

Hello,
I am trying to use the RRI interface for passing variables Company code, fiscal Year and Fiscal period from a Query to R/3 transaction. The Company code data is passing pefectly fine but the Fiscal year and Fiscal period values are not getting passed. Have tried to debug in RSRT. I am trying to see if RS_BBS_BADI can be used.
   Does anyone have documentation of RS_BBS_BADI , or how exactly can this be used ?
What is the diff between SMOD_RSR00004 and RS_BBS_BADI.
I am not very clear on this.
Thanks in advance .
Jagruti

Refer to SDN Post
Report Report Interface with BAdI RS_BBS_BADI

Similar Messages

  • RS_BBS_BADI

    Hi,
    I tried to use this BADI for mapping a sender variable value to a receiver variable.
    I found an Know-How Enhancements PDF documantation which this BADI is written at, but its doesn't contain useful details.
    Can you describe this BADI usage example for yours?
    Can you provide any other related documentation?
    Thanks,
    Shani

    Hello Shani Bashkin 
    You don't need EXIT_SAPLRSBBS_001, you need EXIT_SAPLRSBBS_002
    Here goes:
    You go to se18 select SMOD_RSR00004 then you go to Implementation->Create
               then you create a BADI implementation with the name Z*something_something. The system then brings you to the SE19 definition of BADI implementaition you there see both of the RSBBS exit, in methode form EXIT_SAPLRSBBS_001
    EXIT_SAPLRSBBS_002
    You select the second one EXIT_SAPLRSBBS_002 double click on it, it brings u to abap code Method .....End method U then insert this code and adapt it to your usage. Activate everything, go to smod find the exit RSR00004 activate everything there with the magic WAND, got o rsrt generate and debug, u then should pass in that code and then use some imagination, thats all folks!!!!
    DATA: I_THX_MAPPING_WA TYPE LINE OF RSBBS_THX_MAPPING,
          E_THX_MAPPING_WA TYPE LINE OF RSBBS_THX_MAP_BY_EXIT,
          I_RANGE TYPE RRRANGESID,
          I_DATE LIKE SY-DATUM,
          E_TT(2).
    DATA: l_s_thx_mapping type rsbbs_sx_map_by_exit,
          l_s_range       type RRRANGESID.
    FIELD-SYMBOLS:
          <l_sx_mapping>  TYPE rsbbs_sx_mapping.
    IF I_S_RECEIVER-RONAM = 'IW29'.
    read table i_thx_mapping ....
    PS: You need to Have ITS installed and configured and your web server maintained for BW to R/3 connect

  • Jump query exit (rsr00004)

    Hi,                                                   
    When we try to execute a query jump (drill-down;report-to-report) between two queries, the code in this include(ZXRSRU05) is not executed.                                                                      
    Our goal is to do a jump and intercept a specific characteristic value and change it.
    For example:we drill down on 0CO_AREA=t100
    Tnk

    Could someone help us.
    I'm having the same problem, I have QueryA and QueryB in queryB exists a variable exit that read data from VariableA but is not running.
    After the jump, the queryB calls again to put the date. bringing the value date of the initial query screen QueryB.
    Recalling
    QueryA puts months and years in a initial screen.
    QueryB read the month and year of the query and makes the range of the past twelve months.
    Regards
    Felipe Campos

  • Badi RS_BBS_BADI

    Hi Experts,
    I am using this BadI to jump from one BEx query to other one. However I am able to open the target query in WEB but how can I call it in BEx (like a regular jump without BAdI)?
    Thank you for your support
    Aban

    Hi,
    You can use  Tcode RSBBS to call it in BEX.
    Info: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/607e63d5-b56f-2c10-718f-8e33a08baa89?quicklink=index&overridelayout=true
    Regards
    CSM Reddy

  • Business Explorer - BADI

    I need a BADI to work for the BW - R/3 RRI, and I found one BADI called RS_BBS_BADI (replacement of RSR00004). I have used SE19, created some lines of code and i've set one break point and activated it, but when i run the query it don't stop in the break point in any moment, i've tried normal breakpoint, http breakpoint, a infinit cycle, a 0 divison to give a dump and nothing appens, it seems that the program is not passing in the BADI.
    Has anybody experience with implementing this BADI?Some way to debug it?Some code for example?
    Thanks,
    Ricardo

    I dont have idea about Bi 7.0 ..
    If its bw 3.X i jusz used rrmx --->>excel ->addins-->>queries --->pop up window --->here we need rfs object S_RFC
    Finally rrmx tcode and general roles which has S_RFC  autorisation object and the query .
    Regards,
    Naveen

  • Variable Value for BADI

    Hello Forum
    We have an issue with BADI implementation.
    We have a key figures in query are restricted to a user exit variable for calendar month (as current month and previous month) and fetches results.
    Now due to some requirement we need to check if the "Cal Month" determined is current month or the previous month and return a value.
    We have implemented a BADI for the same reason to determine this however can anyone please let us know how can we use the value of a user exit variable in the query can be used in BADI ?
    Thanks & Regards
    Ashish

    Hello Shani Bashkin 
    You don't need EXIT_SAPLRSBBS_001, you need EXIT_SAPLRSBBS_002
    Here goes:
    You go to se18 select SMOD_RSR00004 then you go to Implementation->Create
               then you create a BADI implementation with the name Z*something_something. The system then brings you to the SE19 definition of BADI implementaition you there see both of the RSBBS exit, in methode form EXIT_SAPLRSBBS_001
    EXIT_SAPLRSBBS_002
    You select the second one EXIT_SAPLRSBBS_002 double click on it, it brings u to abap code Method .....End method U then insert this code and adapt it to your usage. Activate everything, go to smod find the exit RSR00004 activate everything there with the magic WAND, got o rsrt generate and debug, u then should pass in that code and then use some imagination, thats all folks!!!!
    DATA: I_THX_MAPPING_WA TYPE LINE OF RSBBS_THX_MAPPING,
          E_THX_MAPPING_WA TYPE LINE OF RSBBS_THX_MAP_BY_EXIT,
          I_RANGE TYPE RRRANGESID,
          I_DATE LIKE SY-DATUM,
          E_TT(2).
    DATA: l_s_thx_mapping type rsbbs_sx_map_by_exit,
          l_s_range       type RRRANGESID.
    FIELD-SYMBOLS:
          <l_sx_mapping>  TYPE rsbbs_sx_mapping.
    IF I_S_RECEIVER-RONAM = 'IW29'.
    read table i_thx_mapping ....
    PS: You need to Have ITS installed and configured and your web server maintained for BW to R/3 connect

  • Report-Report Passing Values with SMOD_RSR00004

    Hi,
    I operated the BADI SMOD_RSR00004 which suppose to help in mapping values from a sender report to a receiver report.
    I didn't succeed to see in a debug mode the sender query's time characteristic value I used.
    I mean that all the rows/columns characteristics of the sender query are available on the BADI method in a debug mode, but the column time characteristic of the sender query is not.
    Also, does anyone know how should I enter the values I mapped to the export parameters in the method.
    I found a good documentation here:
    RS_BBS_BADI documentation,
    But my problems I presented here has no solution mentioned there.
    Best Regards,
    Shani Bashkin

    Hi again,
    Does anyone have any idea for solving this problem???
    Thanks,
    Shani Bashkin

  • RRI.............

    Hi,
    As per our discussion, I am sending you my requirement.
    call me if you feel any problem in this. My No. is : 610 733 7334.
    My Requirement is :
    In BW, I need to create a Jump query in RRI from Report to R/3 Transaction.
    Here  Sender value is i.e from Query i.e. Insurance Object (actually in BW this the combination of Business Partner and Contract).
    So I want to pass this value to R/3 Transaction FPL9.
    But the passing value has to be segregated as Business Partner and Contract. at BW level only, and has to go to FPL9 Transaction as parameter values.
    For that I identified, that need to write User Exit, but for RRI, SAP has moved this User Exit to BAdi.
    Now I created a BAdi, which  is (Custom) ZRS_BBS_BADI ( Original SAP one is : RS_BBS_BADI).
    It has Custom Class is ZCL_IM_RS_BBS_BADI (Original : CL_IM_RS_BBS_BADI)
    Inside the class we have 2 methods :
    1) EXIT_SAPLRSBBS_001
    2)EXIT_SAPLRSBBS_002
    Q) Here in Which one we need to write code? what?
    Pleae suggest me entire solution.
    Thanks & Regards
    Sunil Kumar Pitta
    610 733 7334
    [email protected]
    [email protected]

    Hi Ashwin, Thanks for your suggestion.
    Here the thing is I am able to pass asingle parameter value like BP or some thing from any other query or this query. But my requirement here is , I need to take  a single value, that is Insurence Object (this is the combination of Business Partner and contract), now I need to seggragate the sigle value of Insurence object as BP and Contract and have to pass to R/3 transaction FPL9.
    I can pass single vale to R/3 transaction. BW jump query setup will take care about passing the single values.
    Now we need to segragate the sender value to 2 values for reciever.
    Guide me the code for this.
    Thanks
    Sunil

  • Own report type (RRI) is not visible in Ta. RSBBS

    Hallo all,
    when I try to implement the BAdI RS_BBS_BADI in the ERP target system according to help http://help.sap.com/saphelp_nw70/helpdata/en/45/e6caeadaf96976e10000000a1553f6/frameset.htm , the then created "Own report type" isn't shown in the appropriate drop down box in BW Ta. RSBBS . We want to realize with it a RRI to SAP-GUI via method IF_RS_BBS_BADI_HANDLER~CALL_SAPGUI under BW 7.3.
    I wonder if the implemtation of inteface IF_RS_BBS_BADI_HANDLER has to be replicated from ERP to BW?
    Any hints are welcome!
    Best regards, Martin

    Hi. I tried it, but it did not help. :(
    It is strange. Before I had the error in log:
    Unable to rename '/appl/ucm_cluster/server/weblayout/resources/schema.work' to '/appl/ucm_cluster/server/weblayout/resources/schema' while publishing schema.
    When I looked into the 'schema' dir there was old doctypes in js file
    In 'shcema.work' which was supposed to be renamed to 'schema' there was my correct document type in js file.
    Now in /server/weblayout/resources/schema/views/doctypes/all.js file there is only my correct document type but i still have in gui the old wrong doctypes! :(

  • Exit_saplrsbbs_002

    Hi all,
    What is the purpose of user exit <b>Exit_saplrsbbs_002</b>. I read somewhere it is called before jump into R/3.
    Please let me know role of this user exit.
    Thanks and Regards
    Satish

    hi,
    check this
    RRI passing variable values
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/59069d90-0201-0010-fd81-d5e11994d8b5
    Exit RSR00004 has been replaced with BADI SMOD_RSR00004.

Maybe you are looking for

  • Photoshop Album in iTunes nicht sichtbar

    Hallo Ich habe Photoshop Elements 11 installiert. Früher konnte ich mittels itunes meine Photoshop Alben auf mein iPad synchronisieren. Nun sind diese Alben im iTunes aber nicht mehr sichtbar (Ausgewählte Alben ist grau hinterlegt und kann nicht ange

  • How can I get these two results in two different columns?

    SELECT COUNT(attr_id) FROM pv_attribute WHERE port_id = 322; SELECT COUNT(attr_id) FROM pv_attribute WHERE port_id = 323; How can I get these two results in two different columns? Thanks

  • Weblogic server is not responding

    Hi Friends, I installed weblogic server 10.3 on Rec Hat Linux 5. My hardware configuration is 3 GB RAM , 150 GB hard drive, pentium 4 , DELL OPTIPLUX DX520. 32 Bit OS. I installed weblogic on this ,created a domain, and started the weblogic server. C

  • Upgrading Mac Pro (Rev1) Video card to 8800GT - Win XP OK?

    Hi all, I have a Rev1 Mac Pro with the ATI X1900 graphics card. I'd like to order the Apple upgrade to the Nvidia 8800GT for better performance running games in Windows. Currently, I have an XP SP3 Boot Camp partition. I've read some posts about prob

  • Hindi font on Nokia 5800

    The font is not displayed in a readable manner. It overlaps, not with another consonant, but the vowel. This problem is rectified in Opera Mobile browser but every other application has the fault. With over six FW updates, the phone has still some bu