CMD for Buttons in BEx (wanting to execute RRI)

Hey,
Just wondering if anyone can tell me if I can execute other CMD's other than those available from the drop down in the button wizard!?
I am wanting to have a button that essentially calls the same as the GOTO>R/3 Transaction from the context menu.  I can do this in the web application but not sure if I am missing something in the BEx.
Is it CMD=RRI ???
Cheers

Hi Allie,
Analyzer 7.0 was developed on the same .net runtime as 3.5 the WAD. Therefore you can find that some of the commands that are used in 3.5 are available in Analyzer. RRI seems to be one of those that is recognised but doesn't really work this now (I'm using FEP1100 / SP11). I have pointed the button to the command range that contains the following:
DATA_PROVIDER         1             DATA_PROVIDER_1
CMD                             1             RRI
RRI_RECEIVER             1             Query name you have set-up in RSBBS
but I either just get a message 'jump cannot be executed' or a dump for my trouble.
I would suggest you either:
1. Set-up as above and raise an OSS, because whatever else happens you should not get a crash or
2. Use the std functioanlity and set-up via RSBBS and use the context menu which works fine
3. use the following workaround to have the query fill an empty DP that you can place in the workbook
- create 'empty' dataprovider (e.g. DATA_PROVIDER_2)
- use following code to reset DATA_PROVIDER_2
DATA_PROVIDER     1     DATA_PROVIDER_2
CMD                     1     RESET_DATA_PROVIDER
RQV                     1     
PROFF                     1     
INFOCUBE     1     Infocube technical name
QUERY                     1     Query technical name
You could have the last part of the statement in the worksheet with the command range of the button pointing at it, so the user could choose which query filled the DATA_PROVIDER_2. Also, you could start getting really fancy - e.g. if it has variables to fill then you could add VARIABLE_SCREEN   1   'X' to pop-up the variable screen.
Hope that helps,
Rgds, Keith

Similar Messages

  • I want to execute selection screen by pressing enter button

    Hi,
    I have a requirement like after giveing values in selection screen I want to execute it by pressing enter button not by pressing execute button.
    Please give some sample code if u have any solution.
    Thanks & Regards
    Venkatrami Reddy B

    Hi,
    You can achive this.
    You just need to do all your coding under even AT SELECTION-SCREEN OUTPUT.
    But you have to put a check also say counter.
    Define a variable of type integer and then put the check on the mail block of code (whole program eccept selection screen) as mentioned below.
    IF lv_count > 1.
    program lines..
    ENDIF.
    lv_count = lv_count + 1.
    Regards,
    Raj Gupta

  • Executing javascript code for button click

    in my application i have report page where i am displaying table data when i click a button it selects first row and returns it using htp.prn() now i m getting that record in jvascript now i want to execute this java script code when the button is clicked i tried using onClick attribute but it didn't work can anyone tell me how to do it?

    Hi,
    I think this is related to Application express, right ?
    You could post your question in Application Express forum
    Oracle Application Express (APEX)
    Also please give more detail about your issue. Post e.g. code (pl/sql & javascript) you try to use.
    Also if you setup sample about your problem to http://apex.oracle.com will help others to help you.
    Help us to help you =)
    Br, Jari

  • I want to make the keyboards numerical keys shortcuts for buttons.

    I want to make the keyboards numerical keys shortcuts for buttons, without a modifier key is this possible ? e.g. press '1' on the keyboard button 1 is pressed on the GUI.

    The number keys are not valid hot keys for our controls. The easiest workaround would be to use fhe F keys instead (F1 for button 1, etc.) However, if you are set on the number keys you could implement this with a panel callback. You could have a panel callback that monitors all keypress events and then, depending on the key pressed, calls the code that would be called with a button press of the button for that key.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • How can i use Button in BEx  7.0

    Dear Folks,
    Could you help me please ..
    In BI 7.0, for BEx analyzer i see we can use button, combo box, analysis grid.
    If i have a requirement like this:
    1. I have sales report, where it has information about sales person.
    2. And i want to filter that report with the sales person that i choose from combo box.
    For that requirement, i tried to :
    1. I Create a query to Sales info-provider for displaying sales.
    2. I Create a query to either to MD Sales person / Sales info-provider in order to get Sales persons data.
    3. I assign point no 1 to Analysis Grid.
    4. I assign point no 2 to Combo box.
    My questions are:
    a. Is my techniques correct ??
    b. How can i use button to execute filter into the corresponding report ???
    c. Is there any tutorial regarding this ?? Could you share it to me please ..
    Really need your guidances..
    regards,
    Niel..

    Hi Niel,
    You can use the method you specified.
    In Bex Analyzer you have design mode where you can have the following items Button, Analysis Grid and Combo box.
    To work with the button you need to use the Command Wizard which consists of pre-defined functions, out of those select the one which suits your requirement and supply the parameters. As it is done thorugh a Wizard it would be easy to do.
    Also,
    The Button Name displays the name of the button, which is generated automatically and is unique. This name is used on the BEx Analyzer Design Toolbar menu to refer to a particular instance of the button.
    · Range u2013 Manipulate coordinates for a cell or cells in this field to move or resize the button.
    · Button Text - The text (caption) you want to display on the button. You can use this to describe the command the button executes.
    · Command Range (optional) - Specify a three-column range of cells in the worksheet that contains command parameters. In these cells, you provide the same parameters (Name, Index, and Value) as in the Static Parameters, but in the worksheet these can be variable, changing during
    navigation based on query results or on a value you manually specify.
    Button in Bex analyzer
    Regards,
    Neelesh Jain.

  • Button in Bex Analyser 7.0 - problem with setting up Static Parameters

    Hello,
    I know a similar problem has been discussed here already, but I am still having problems with setting up Static Parameters of my Button in BEx Analyser 7.0, so that I can pass Variable values from that button to my query.
    This is what I do - in Static Parameters of my Button I set the following values:
    Name                          Index          Value
    DATA_PROVIDER        0               DP_1
    CMD                             0               PROCESS_VARIABLES
    SUBCMD                      0               VAR_SUBMIT
    VAR_NAME                 0               0RMA_FIP
    VAR_VALUE               0               004/2010
    As a result, I would like the value 004/2010 to be passed to variable 0RMA_FIP (which is mandatory) and the query to be executed with that value. For some reason, however, the value is not passed correctly, and instead the variable is filled with a blank or not filled at all, and I am getting a message "Specifiy value for variable Fiscal year/period". What do I do wrong?
    Just to give you a broader picture - I would like to later use this logic to pass more than one variables into a query, including a hierarchy node, and read the values from an Excel worksheet - however, after many attempts to do so, I started playing with just one variable to figure out what the problem was.
    I have already seen the following two threads and SAP notes on passing variable values from the button:
    Re: Button in BEx Analyzer 7.0
    Re: How to set variables values via VBA.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0881371-78a1-2910-f0b8-af3e184929be?quicklink=index&overridelayout=true
    Can anyone please advise?
    Cheers,
    AL

    I managed to figure it out myself!
    Instead of VAR_VALUE I need to enter VAR_VALUE_EXT, and it works fine.
    I will mark this thread as "answered".

  • Hi i want to execute bapi two times with different paramters....Possible

    Hi,
    i want to execute bapi twice times.Possible please explain where i put which code.Means i put bind code at doinit() method of conpopnent controller and execute bapi code in doinit() iof view. But for second time where i put bind and execute code. 
    Regards,
    Gurprit
    Edited by: GURPRIT BHATIA on Dec 17, 2007 1:24 PM

    Hi Gurprit,
    For executing the bapi second time, you can put the execute bapi code in the action of the button which is on your form. You need not write the bind code again.
    Bye
    Ankur

  • How to find the objects that are used for a particular BEx query

    Hi ,
    I am preparing the inventory for BEx queries. Means for a particular BEx query I want to know the correcsponding
    1. Selection screen variables
    2. Characteristics
    3. Restrcited, Calculated and normal key figures.
    I have checked all the BEx query related tabe but unable to find the proper relation between these tables to get the desired output.
    Can you help for table joins to get the output as mentioned above.
    Thanks in advance.
    Regards,
    Sai

    Hi,
    you want find the total information about query details use the T  CODE - RSRTQ.
    give the proper selection then execute.
    please find the doc.
    RSRTQ – Query Definition – Multipurpose T-Code on BEx Queries
    Thanks,
    Phani.

  • Button in bex analyzer workbook

    Hello all
    I am trying to customize a button in bex analyzer workbook (BI 7).
    I want to insert a planning sequence into the button. As far as i know (and as i did ), if the sequence contain variables, i should see in the static parameters : VAR_NAME_1 and VAR_VALUE_1, and so on.
    For some reason i dont have the VAR_VALUE_1 part, and if i try to write it i get error.
    What is the reason for this?
    Best
    Yuval

    Once I am adding VAR_VALUE_1 to the static parameters, the system generates two messages error:
    Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    System error in program SAPLRRS2 and form GET_SID-1
    Best Regards,
    Hanit

  • Hi i want to execute 3 reports  at one click without user interaction

    hi Friends,
    Hi i want to execute 3 reports with one click ie  by putting radio button when we click on this this wants to execute all 3 reports with out user interaction pls try to understand and provide the solution pls
    Thanks & Regards
    Mohan  Reddy

    Hello,
    To achieve this you can use the SUBMIT command after an user action.
    Example
    The program report1 has a stand-alone selection screen with the screen number 1100. In the program report2, an internal table with row type RSPARAMS and a ranges table are filled for this selection screen. These are transferred at SUBMIT together with a single condition.
    Program accessed
    REPORT report1.
    DATA text TYPE c LENGTH 10.
    SELECTION-SCREEN BEGIN OF SCREEN 1100.
      SELECT-OPTIONS: selcrit1 FOR text,
                      selcrit2 FOR text.
    SELECTION-SCREEN END OF SCREEN 1100.
    Calling program
    REPORT report2.
    DATA: text       TYPE c LENGTH 10,
          rspar_tab  TYPE TABLE OF rsparams,
          rspar_line LIKE LINE OF rspar_tab,
          range_tab  LIKE RANGE OF text,
          range_line LIKE LINE OF range_tab.
    rspar_line-selname = 'SELCRIT1'.
    rspar_line-kind    = 'S'.
    rspar_line-sign    = 'I'.
    rspar_line-option  = 'EQ'.
    rspar_line-low     = 'ABAP'.
    APPEND rspar_line TO rspar_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'H'.
    APPEND range_line TO range_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'K'.
    APPEND range_line TO range_tab.
    SUBMIT report1 USING SELECTION-SCREEN '1100'
                   WITH SELECTION-TABLE rspar_tab
                   WITH selcrit2 BETWEEN 'H' AND 'K'
                   WITH selcrit2 IN range_tab
                   AND RETURN.
    Regards.

  • I want to execute the executable file(ex: Microsoft Word, SapGui, etc)....

    Dear...
    On EP screen I want to execute the executable file(ex: Microsoft Word, SapGui, etc) by clicking button.
    Is this possible?
    If I can execute the executable file by clicking button, please give me how to do this.
    thanks,
    sangyuun.

    Hi Sang Yuun,
    like I already said. It would make little sense to provide a button or the like on a portal page. That is because you do not know if the user that clicks the button actually has the application (in your case MS Word) installed on his computer.
    There are three ways of starting an application like Word:
    1. Start it on you local PC.
    2. Start it from a file server via the Network.
    3. Start it on a remote computer in a remote session.
    Where is the Word Application located/installed that you plan to start your way?
    I am not aware of other ways - i.e. via an Internet Server. Word is not behaving like a Java Applet that you can start via the Internet (clicking on a link or a button).
    The Portal is accessed by using a Browser. If at all available, you would need to run a web version of MS Word. It don't believe a Word Version like this is available - contrast this with Outlook. but for that you need a Mailserver Web Extension.
    I hesitate a guess - but I don't think it is possible what you are planning. Any other takers?
    Also think this way - If a user is accessing your Portal and opens a Web page containing a button that starts an application on his computer - that page would most likely be regarded as hostile. Most security features would possibly classify this as a remote attack on the computer ... I let you think about what would happen next.
    Hope this helps.
    Wolfgang

  • I want to execute UNIX COMMAND in ABAP

    Hi All,
    I want to execute a UNIX XOMMAND sh <scriptname> <filename> to replace divsion codes.in ABAP.
    But, I came to know that we can't (2) or try the following program but unfortunately the command CALL SYSTEM is not supported by SAP. If you are on R/3 2.1 - 2.2x you can get some idea's from the program SAPMSOS0.
    REPORT ZUNIXCOM .
    DATA: U_COMMAND(200).
    Table for system messages
    DATA: BEGIN OF RT OCCURS 100 ,
    LINE(100) ,
    END OF RT .
    START-OF-SELECTION .
    MOVE 'unix command' to U_COMMAND .
    REFRESH RT.
    CALL 'SYSTEM' ID 'COMMAND' FIELD U_COMMAND
    ID 'TAB' FIELD RT-SYS .
    LOOP AT RT.
    WRITE : / RT-LINE .
    ENDLOOP. 
    So please can u help me how to call a unix command from ABAP. it is very urgent. I want complete details and all possible solutions
    <removed_by_moderator>
    Thanks,
    gyanaraj
    Edited by: Julius Bussche on Aug 26, 2008 11:29 AM

    Selvaraj Gyanaraj wrote:>
    > So please can u help me how to call a unix command from ABAP.
    I was about to help you.
    >it is very urgent.
    I changed my mind.
    >I want complete details and all possible solutions
    I'm glad I changed my mind.
    >Points are surely rewarded.
    Too late.

  • TS1538 Hi technical support Team of  Apple  I am sorry but this time  I am very disappointed with IPhone and  IOS 7.1, actually I have IPhone 5,5S both and I was trying to Restore  my Phone for sell Because I want to by IPhone 64 Gold but unfortunately   

    Hi technical support Team of Apple  I am sorry but this time  I am very disappointed with IPhone and  IOS 7.1, actually I have IPhone 5,5S both and I was trying to Restore  my Phone for sell Because I want to by IPhone 64 Gold but unfortunately    both phone stuck on recovery mode with error 1, and 3
    I got Error 3 on IPhone 5 and error 1 In IPhone 5s , I did lot of try as I can my level best , like Update iTunes, stop all security, change cable even change computer format my laptop and install everything fresh in window   I did try to with Mac of my friend,
    Change Internet connections try with DFU mode, Make DFU file Also with redsnow   everything I did
    Whatever on internet information like go to  cmd and run as administrator  to make change hosts file
    Like ipconfig/flushdns everything  everything  what I can….  but I dint get good results and  good information about this error
    Somebody told me this is hardware problem, I make change my battery and charging connector too.
    I don’t know what to do next.. because  I don’t leave any experiment on my stuck phone..
    Note : one  is big issue that apple support team  is also and giving good answer
    I am in Saudi Arabia so I don’t  have any nearest store of Apple.. even Saudi Is Big Consumer of IPhone
    Its Really Bad its big Loss of Money I can’t afford more , Now will not Buy Any IPhone  in future if I don’t get solution..
    Thank You..

    What the **** is this taht you will not provide any service due to just a bit jailbreak..
    we are not much tecnical person.. and mostly consumer dont have good idea about Jailbreak. make your device  much better secure from hacker and jailbreak please we cant afford much money please give me any solution i ll not do jailbreak again please  

  • How to find function code for buttons on toolbar in oops alv

    Hi experts,
    I want to remove some buttons from toolbar in oops alv, i know the procedure like get function code and pass the value in a table and pass that table to IT_TOOLBAR_EXCLUDING of
    method set_table_for_first_display but I WANT TO KNOW HOW TO FIND FUNCTION CODE FOR BUTTONS ON TOOLBAR IN OOPS ALV

    Hi Prakash,
    -->First you have to set the pf status in your alv program by,
    {FORM pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'FIRST'.
    ENDFORM.                    "PF_STATUS}
    -->Pass this Subroutine name in the Function module, Reuse_alv_grid_display's parameters i.e,
          i_callback_pf_status_set          = 'PF_STATUS'}
    *-->Then doble click on that pf status,
    From the menu bar, select Extras->Adjust Template->List Viewer,
    This will give you the existing statndard gui status of the program*
    ->Then catch that function codes in the User command Parameter of the Function module Reuse.. i.e,
          i_callback_user_command           = 'COMM'
    And make a subroutine of the name 'COMM'i.e,
    FORM comm USING ucomm LIKE sy-ucomm selfield TYPE slis_selfield.
      DATA: okcode TYPE sy-ucomm.
      okcode = ucomm.
      CASE okcode.
        WHEN 'REF'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            titel         = 'MANSI'
            txt1          = 'CREATED BY'
            txt2          = SY-UNAME
          TXT3          = ' '
          TXT4          = ' '
    endcase.
    Hope it helps you
    Regrds
    Mansi

  • Through Java code I want to execute a exe file which is in aJar file

    I am having some classes and an exe file in a directory. I have made them in to a Jar file. In a class file which is in that jar file i want to execute a Exe file which is also resides in that jar file. Is it possible to exexute that EXE file?
    For Example....
    1. Im having a directory named CLIENT.
    2. In that directory I have 10 clss files and an EXE file.
    3. These class files and EXE files are ziped in to a Jar file.
    4. I have to give the Jar file to my client.
    5. He can put that Jar file where ever he installed my product may be C driver or D drive like that
    Now the problem is...
    I want to execute the Exe File from one of the class where both the exe file and class file resides in the Jar file
    This is my requirment
    Can anyone Help to me to solve this problem?
    Thanks in Advancd
    Ibram Shah.A.M
    ([email protected])

    The answer is to extract the EXE into a temp directory, execute it, and delete it when you're done. For example:
    //This is the path *inside* the JAR file!
    InputStream in = getClass().getResourceAsStream("/resources/myprog.exe");
    OutputStream out = new FileOutputStream("myprog.exe");
    File file = new File("myprog.exe");
    int data;
    while((data = in.read()) >= 0) out.write(data);
    in.close();
    out.close();
    //Execute the EXE here using java.lang.Runtime.exec()
    if(file.exists()) file.delete();
    ...

Maybe you are looking for

  • Add a new device to family sharing

    Bought a New  iPod touch for my son, he's already a Family member, how to set it up?

  • Role of a ABAPer in workflow

    I am very new to workflow concept. Please can anyone explain me ABAPer role in creating or customizing workflow. My doubt is ..whether ABAPer will create jobs, positions, task or Basis people? At what stages there will be interaction with the functio

  • Bean problem: No interface classes found

    Hi ; I try to create a adapter . according to tutorial "How To Create Modules for the J2EE Adapter Engine" https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f013e82c-e56e-2910-c3ae-c602a67b918e&overridelayout=true Although I did all steps in it

  • Virtual Key Figures in RSR_OLAP_BADI COMPUTE Method not recalculated

    Hi, Please clarify why is the COMPUTE METHOD of RSR_OLAP_BADI not always  triggered or executed. For instance, my query is drilled down by customer and material by default. Upon opening the query and after entering the appropriate selections, the vir

  • Second Stage Dealers

    This is a big issue with regards to the SME markets in India. The SMEs make purchases of materials in the retail market, where the Excise duty is not transferred as a percentage of order value. It could be equal to 16.48% (which is the current ED rat