SMOD_RSR00004~EXIT_SAPLRSBBS_002

Folks,
I'm trying to add a new entry into C_THX_MAPPING table in
EXIT_SAPLRSBBS_002 via E_THX_MAPPING table but it gets deleted in the downstream(PERFORM map_by_exit_apply).
Has anyone successfully added a new entry?
Thanks.

Hello, Dieter! Did you find something usefull? I even can't catch a break-point!

Similar Messages

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

  • 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

  • Retrieving Sender Query Details in via BADI (SMOD_RSR00004)

    Hi SDN Community,
    thanks to a posting by Jim, i have got some of the information i require from the below code.
    *     Jim Langerhuizen / July 6 2007
    *     Replace Controlling Area 1000 with hard coded values Z001 and Z002 for Report
    My question is how do i ABAP syntax to populate temporary table
    l_s_table with the I_S_RKB1D_SENDER table.  (this is found when i double click on i_thx_receiver) in the last line of code below.
    I wish to then recoginised the fields that contain.  do you know the syntax and fields:
    - Sender Query name
    - Structure element that is drilled down by the user in the query
    Thank you  in advance
    Simon
    DATA:
    l_s_thx_mapping type rsbbs_sx_map_by_exit,
    l_s_range type RRRANGESID,
    l_s_table type RSR_S_RKB1D.
    DATA:
    CompID type RSZCOMPID.
    FIELD-SYMBOLS:
    <l_sx_mapping> TYPE rsbbs_sx_mapping.
    *     Map 0CO_AREA 1000 to Z001 and Z002
    *     In the source query all profit centers are with controlling area 1000
    *     while in the target query they are split over controlling area Z001 and Z002
    read table i_thx_receiver with key fieldnm = '0CO_AREA'
    assigning <l_sx_mapping>.

    We have taken the approach of customer exit variables in the target query, and specifying variables to catch the required values via the RRI.

  • 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

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

  • 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

  • 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

  • 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

  • Error in planning modeler

    Hi All,
    While creating filters in planning modeler ,I am getting an error saying that  'Syntax error in program SAPLXRSR  ., error key: RFC_ERROR_SYSTEM_FAILURE ' . I am using planning modeler through remote connection. can any one provide  reason and solution for this error?
    Thanks in Advance,
    M.Reshma.

    Hi Reshma,
    the "program" SAPLXRSR includes several user exits. Please take a look at the dump in the back end and check your user exits.
    - EXIT_SAPLRRS0_001
    - EXIT_SAPMRSRU_001
    - EXIT_SAPLRRS2_001
    - EXIT_SAPLRSBBS_001
    - EXIT_SAPMRSRU_999
    - EXIT_SAPLRSBBS_002
    - EXIT_SAPLRSSBR_001
    One of them seems to have a syntax error. Could you check this?
    Regards Matthias Nutt
    SAP Consulting Switzerland

  • 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

  • Custom RRI

    Hi there
    I need to implement custom RRI
    If I select material1 (query1) recepient query 2 should show material 2
    (I know it soubds stipid but its just test example)
    I know where to put ABAP code (se19 , create BAPI based on SMOD_RSR00004) but I dont know what I need to do
    Can somebody  type a code for me?
    Where I should put a restriction that my code is valid for queries 1 and 2 only?

    no answer

  • RRI - Problem

    Hi experts,
    from a report, call different Reports dependent of the value of characteristic (this reports are different in structures)
    i have WAD1 and WAD2 ( WAD1 call to WAD 2, this call i do with RSBBS Query -> WAD)
    WAD 2 = Analysis Item_1 ( Hidden )+ Analysis Item_2(Hidden)
    so, dependent of the values, change the parameters to Visible!
    But for this, i need, get the values of the characteristic or values of the variable with JavaScript...
    how to do this?
    or other idea ?
    i hope some idea..
    from now, Thanks very much.
    Renato
    Regards!

    Hi Sachin,
    If you use same variables in the child query, the values get passed automatically with or with out adding the variable names in 'Assignment Details' of RSBBS setting. Otherwise implement RRI BADI using SMOD_RSR00004.
    Regards,
    SRK

Maybe you are looking for

  • Transferring apps with with purchases on them.

    I plan on getting an ipad soon and was wondering if I buy stuff on apps like ibooks, marvel, or DC on my iphone currently will the books and comics transfer over to the ipad as well or is it stuck on that one device? Also what about games? I have Fin

  • What is LabVIEW MathScript​?

    The subject of this forum, LabVIEW MathScript, is a new feature for LabVIEW 8 that adds math-oriented, textual programming to LabVIEW. MathScript joins graphical dataflow programming as another means to define the custom software you develop using La

  • Service sapdp01 timed out

    Hi people, Firt my apologizes if this is not the corresponding forum to post this error. I didn't know where i should post it. When i try connect through sap logon i have this error: Connection  to host XXXXX service sapdp01 timed out. In services fi

  • Multi-select drop-down

    Hi, I'm using Jdevelopre 11112 and JHS 11.1.1.2.29, I need to have a multi select Drop-down. is there a way to have multi-selection choise in drop-down? thanx in advance

  • Lion won't run from usb hard drive

    I downloaded Lion yesterday.  Took 7 hours, from 5:30pm to 12:30am.  I bought a new 500GB USB hard drive to load it on.  I had previously upgraded the SL OSX per instructions.  The Lion install went fine.  It told me to reformat the drive, which I di