Popup with four buttons

Hi, I'm a newbie in ABAP and I want to create a popup with only four buttons (with my options), like a questionnaire, but without cancel button.
I see the function C102_POPUP_TO_CONFIRM, I want something similar but without cancel button.
can someone help me?
Thanks!!

Only a little doubt more
Why SPACE string don't work in this situation:
  CALL FUNCTION 'C102_POPUP_TO_CONFIRM'
    EXPORTING
     titlebar                    = 'title'
      text_question               = 'question'
     text_button_1               = 'text1'
  ICON_BUTTON_1               = ' '
  I_ICON1_INFO                = ' '
     text_button_2               = 'text2'
  ICON_BUTTON_2               = ' '
  I_ICON2_INFO                = ' '
     text_button_3               = 'text3'
  ICON_BUTTON_3               = ' '
  I_ICON3_INFO                = ' '
     text_button_4               = 'text4'
  ICON_BUTTON_4               = ' '
  I_ICON4_INFO                = ' '
  DEFAULT_BUTTON              = '1'
   DISPLAY_CANCEL_BUTTON       = SPACE
  START_COLUMN                = 25
  START_ROW                   = 6
IMPORTING
     answer                      = answer1.
Thanks for all!!

Similar Messages

  • Open LOV popup with a button click or image link click

    hi , a try the solution:
    11g: How to populate LOV from button click
    for open pòpup of lov , but don't works :
    first the others components block the submit of button
    i put the inmediate propertie but lov don't still open
    any ideas???

    Does this one help?
    Invoke lov popup window via keypress

  • I need to hide a popup with custom buttons

    When they click the button I want t he popup to cancel. THe button invokes a background process. How do I achieve this?
    The button has the download listener on it.

    Hi,
    You can bind the popup to the managed bean who invokes the process:
    RichPopup popup;
    public RichPopup getPopup() {
      return popup;
    public void setPopup(RichPopup popup) {
      this.popup = popup;
    ...And then put this code in the action listener:
    public void invokeProcess(ActionEvent actionEvent) {
      popup.hide();
    }Hope this helps.
    AP

  • How to create popup window with radio buttons and a input field

    Hi Guys,
    Can somebody give some directions to create a stand alone program to create a window popup with 2 radio button and an input field for getting text value. I need to update the text value in a custom table.
    I will call this stand alone program from an user exit. 
    Please give me the guidance how go about it or please give any tutorial you have.
    Thanks,
    Mini

    Hi,
    There are multiple aspects of your requirements. So let's take them one at a time.
    You can achieve it in the report program or you can use a combination of the both along.
    You can create a standalone report program using the ABAP Editor (SE38). In the report program you can call the SAP Module pool program by CALL Screen <screen number>. And then in the module pool program you an create a subscreen and can handle the window popup with 2 radio button and an input field for getting the text.
    For help - Module Pool programs you can search in ABAP Editor with DEMODYNPRO* and you will ge the entire demo code for all dialog related code.
    For Report and other Module pool help you can have a look at the following:
    http://help.sap.com/saphelp_nw70/helpdata/en/47/a1ff9b8d0c0986e10000000a42189c/frameset.htm
    Hope this helps. Let me know if you need any more details.
    Thanks,
    Samantak.

  • Popup with text area & ok/cancel button

    Hi all,
    My requirement is to display a popup with a text area in editable mode along with 'Confirm' and 'Cancel' button. If the user changes the text, and presses the 'CONFIRM' the text is to be saved in DB.
    How do i implement this? Should i use a FM or modal dialog box?

    You can use simple modal dialog box ..
    using below syntax :
    CALL SCREEN 1100 STARTING AT 1 1.
    Select modal dialog box ( Screen type).
    Thanks
    Seshu

  • I have a problem with navigation four buttons

    I have made four buttons.  And they work, but when I click again on button 1 all tree animations are playing!
    When I click again on number on the start animation is displayed.
    In the buttons I have set the animations for 2, 3 and for to hide.
    How is this possible?
    I have solved the problem

    Change the text in your array to the text you want:
    replace text1, text2, text3, text4 in the single quotes to the text you want.
    var  theText = ['simulatie van varuatie snelhied van de propeller.<br>Begin situatie: 0 omwentelingen per seconden T = oneindig 0 volt','replace','replace','replace'];
    sym.play();
    // use the original code fom above  with children()  and nothing in the parenthese.
    var buttons = sym.$("buttons").children();
    $.each(buttons,function(i){console.log(i,$(this));
              $(this).on("click", function(){
         sym.$('textField').html(theText[i]);
    theText[i] will be replaced with the values in the array   i = 0 will be theText[0] or the first text in the array, etc...
    If it does not work, please PM your file to me so I can correct it.

  • Control Buttons in message popup with Digital I/O

    In my Test system the   operator  can use only the Start Stop Quit buttons on the Panel.
    He  aint have any mouse
    That means I have to provide him wit all  the control power  thr' these 3 digital I/Ps
    There are many message popups in the SequentialModel.seq  file 
    The OPERATOR will  respond to them with the 3 H/W buttons.
    OK= Green
    Terminate = Red
    how can I assign my  Buttons to all  Popup messages on teststand Irrespective of their .(i.e handling them Individually) 

    My plan is to control the whole testsystem, with  Hardware buttons (On off S/Ws for Operator) (operator wont be using mouse- it takes timeto scroll & prod is slow).
    The H/W buttons r read thr   Labview. The file is a member function of the class that I call In teststand seq.
    I am trying to  read and respond to Teststand  dialogues thr'  the Operator Interface using these 3   buttons 

  • Popup window with radio button-urgent

    Hi..
    Is ther any functionmodule for dispalying a popup window with radio button ....

    Use This
    K_KKB_POPUP_RADIO2
    I_TITLE   ...                      This is the title                       
    I_TEXT1   ...                      first radio button                      
    I_TEXT2    ...                     second radio button                     
    I_DEFAULT     ...                  default                     
    reward if useful
    Amit Singla

  • Popup dialog with 3 button

    does anyone know any FM which provides popup dialog with 3 button?

    hi Oscar,
    you can try:
    POPUP_WITH_3_BUTTONS_TO_CHOOSE
    hope this helps
    ec

  • Popup dialog with 3 buttons to show internal table

    Hi,
    Is there any popup dialog that can show internal table and with 3 buttons?
    Just like the combination of POPUP_WITH_3_BUTTONS_TO_CHOOSE and POPUP_WITH_TABLE.
    Thanks in advance.

    hi,
    Use FM 'POPUP_TO_CONFIRM'.
    Check the below example code
    data parameters like spar occurs 0 with header line.
    data Name(75) type c.
    name = ' '.
    Data : v_ecc6_text type string,
    v_ecc6_title type string.
    DATA: L_SVAR(1).
    concatenate
    '1'
    '2'
    '3'
    into Name separated by space.
    move Name to parameters-value.
    move 'NAME' to parameters-param.
    append parameters.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    TITLEBAR = 'Hai'
    DIAGNOSE_OBJECT = 'ZDIALOG_TEXT'
    TEXT_QUESTION = 'Hello'
    DEFAULT_BUTTON = '1'
    IMPORTING
    ANSWER = L_SVAR
    TABLES
    PARAMETER = parameters
    EXCEPTIONS
    TEXT_NOT_FOUND = 1
    OTHERS = 2.
    Edited by: Raj on Jul 1, 2008 1:03 AM

  • Error after close popup with swfloader

    Hi all, hope some one could help me with this i get this
    error ( Error: Unable to load '' ) each time after i close a popup
    with a swfloader the error popsup when i click on the datagrid
    *****************************main mxml
    private function ShowPano():void
    var SWFLoaderInstance:Panoramica2 =
    Panoramica2(PopUpManager.createPopUp(this,Panoramica2,true));//
    instantiate and show the title window
    PopUpManager.centerPopUp(SWFLoaderInstance);
    SWFLoaderInstance.mainAppPano = this //Reference to the main
    app
    scope
    *******************************this is the mxml Panoramica2
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="doInt()"
    cornerRadius="10" width="600" height="450">
    <mx:Script><![CDATA[
    import mx.controls.PopUpMenuButton;
    import mx.managers.PopUpManager;
    import mx.collections.ArrayCollection;
    import mx.controls.Button;
    [Bindable]public var mainAppPano:Object = null;
    //called by the close event raised byclicking the close
    button
    private function closeWindow():void
    PopUpManager.removePopUp(this);
    }//closeWindow
    private function doInt():void
    PopUpManager.centerPopUp(this);
    ]]>
    </mx:Script>
    <mx:TitleWindow layout="absolute" right="10" left="10"
    showCloseButton="true"
    close="closeWindow()" top="10" bottom="10">
    <mx:SWFLoader
    source="{mainAppPano.datagrid.selectedItem.pano..src}"
    scaleContent="false"
    horizontalCenter="0" verticalCenter="0"/>
    </mx:TitleWindow>
    </mx:Canvas>
    ********************************xml structure
    <catalog>
    <libro>
    <name><![CDATA[<b>Biblioteca Central
    </b> ]]></name>
    <desc><![CDATA[Se inauguró el 20 de noviembre
    de 1978 ]]></desc>
    <imagen>FOTOS/est/Biblioteca Central Manuel Bartlett
    Bautista.jpeg</
    imagen>
    <pano nombrePano="Biblioteca Central Bautista">
    <src>FOTOS/Panoramicas/PanoZoom642007.swf</src>
    </pano>
    <ico>BOTONES/gifs/video.gif</ico>
    <video nombreVid="Biblioteca Manuel Bartlet">
    <src>VIDEOS/Biblioteca Manuel Bartlet.flv</src>
    </video>
    <audio/>
    <pie>Biblioteca Central Manuel Bartlett
    Bautista</pie>
    </libro>
    </catalog>

    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    var test = $x('P7_FLAG').value;
    if(test == '1')
    window.close();
    window.opener.doSubmit('REFRESH');
    </script>javascript does not wait for the current action to complete and then perform the next line.
    means in your function call
    doSubmit('SUBMIT');is triggered and it carry on's to next line that is
    $x('P7_FLAG').value;this will not be set because you are setting the value of P7_FLAG to 1 in plsql and trying to check in javascript, which will not work.
    what you need to do is amend your js function like below
    <script type="text/javascript">
    function saveChanges(){
    doSubmit('SUBMIT');
    </script>create a page branch to procedure and make it conditional to when P7_FLAG = 1
    and set the branch source to below
    htp.p('window.close();');
    htp.p('window.opener.doSubmit(''REFRESH'');');

  • Popup with open and save file option

    Hi,
    I have created a button on my page name as "Export File" and created a process and called on "EXPORT FILE" button. I am using utl file in this procedure and i want to download this file and file will be .ics file using for calendar.
    My page process code is
    begin
    pro_create_ical(:P6_START_DATE,:P6_END_DATE);
    end;when i click on export file button it should raise a popup with open and save file option.
    How i can do this?
    Thanks & Regards
    Vedant
    Edited by: Vedant on Jan 25, 2013 1:59 AM
    Edited by: Vedant on Jan 25, 2013 2:00 AM
    Edited by: Vedant on Jan 25, 2013 3:49 AM

    Shiv,
    Have you installed any new Software/Spyware/Virus Scanner etc.Check it out.It might have caused the issue for last 5 days.
    This issue is fixed in Latest Support Package Versions.
    Which Version of Support Package you are using?
    If EP6 <SP19 you will face this issue.
    Just upgrade it to EP6, Support Pack-19,this will be resolved.
    Upgrade of Support Pack wont take much time.you can get the document under http://service.sap.com/instguides
    Hope it helps
    Regards,
    Karthick Eswaran
    *Reward Points for helpful answers.

  • Popup with generic ALV to display all fields of a structure

    Hello WebDynpro Experts,
    I have developed a WebDynpro application using an ALV control to display all the search results in a table.
    The number of columns shown in this table is reduced by a default view, that is preset for all users.
    In the SAP GUI there is a standard feature to show all the details of a record in a pop up window.
    E.g. in WE02 you see a few fields in the ALV table, and when you click on the details button, you get a popup with all the fields of the selected line.
    Is there something similar in the ALV table for WebDynpro?
    I want to show all the fields of the selected structure in a generic table with two columns: Field label and value.
    Can anybody help?
    Regards,
    Jürgen

    Hello Jurgen,
                    When you select a particular row in ALV table, you can get the data in that row by using ONLEADSELECT
            method from used component(SALV_WD_TABLE).
                   And i Guess you can get all the field names of that structure from DD03L table and you can display them
            in a generic table.
        Regards,
        Harry

  • Popup with fixed window size

    Hey, i'm really stuck with this and keep hitting a dead end.
    i've got a button in my flash website and i want it to open a popup
    window of 600x400 pixels when clicked. The popup contains a
    background image of this size so i dont want any white space in the
    background. I've tried putting the following into the actions
    window with the button selected but nothing happens when i click
    the link in the website.
    on (release) {
    getURL ("javascript:openNewWindow('
    http://www.mysite.co.uk/support.html','thewin','height=400,width=600,toolbar=no,scrollbars =no');");
    If I attach a behaviour to the button to geturl, it works but
    brings up the page full size. I'm new to flash so am just going on
    scripts i'm finding on various websites. Is there a simple way to
    do this? Its pretty straight forward in Dreamweaver but i cant see
    where to specify popup dimensions in flash. Thanks, Dren

    I found a script that works. If anyone comes across this post
    this is what you need:
    on (release) {
    var jscommand:String = "window.open('
    http://www.yourdomain.com/yourpage.html','win','height=600,width=800,toolbar=no,scrollbars =no');";
    getURL("javascript:" + jscommand + " void(0);");
    }

  • Popup with the text "Security Breach" in Safari

    My son told me he saw a popup with the text "Security Breach" when visiting a website. He is concerned that his phone may be compromized. He is using Safari, iOS 6.0.1 on a iPhone 4S. The was a n OK button on the popup. He pressed it and the popup disappeared. Is there serious danger here?

    This may be caused by a problem with an add-on. Try the procedure in the [[Troubleshooting extensions and themes]] article.

Maybe you are looking for

  • Can I make a second libary on a second hard drive and how do I switch back and forth

    I woud like to creat a second libary for itunes on a second hard drive.  I am using the latest itunes and lion on my imac and how do I switch back and forth.

  • XML-IDOC to Plain File: File Receiver Cnt Conversion Problem Nested Stucts

    Hi all, I have an IDOC-XI-File scenario and I have a problem with the file receiver adapter and the content conversion parameters when the final data type has nested structures. Imagine that I have something similar to the following: My desire is to

  • Components of Sub Con PO : BAPI_PO_CREATE1

    Hi All,       I am trying to create a sub con purchanse Order using BAPI_PO_CREATE1. The problem that I am facing is that when dont pass the components (POCOMPONENTS) it picks up components form the BOM of material/plant combination. However I want t

  • Adding escalation step to n step workflow

    hi, i did the steps for adding escalation step to the n step badi but still i think it does not work as expected. any hints for implementing the escalation process to the n step workflow WS14000133. i'm aware of the deadline procedure but not quite s

  • About setSupressRows

    Hello When I use setSupressRows(DataDirector.ZERO_SUPPRESSION) (with other parameters - NA_ZERO_SUPPRESSION,NA_SUPPRESSION - the same) method on crosstab, based on cube with 4 dimensions, 2 are hidden, one on vertical edge and one as page item, then