Pop up on clicking a button

Hi All,
Problem : There is a custom screen in a CRM Transaction. In the screen there is a table which displays data.and there are a few buttons which provides a few functionalities like delete records, display attachments etc. The functionality is provided in a CASE statement. The problem now is I need to provide a popup as soon as the user clicks on a button. this popup will display a list from a table.
I am not able give a popup when i click the button. this will be something like when i click a variant button on a report screen it displaying the list of variants and one of the variants being selected. How do i provide this funtionality it ?
Thanks,
Amit

hi,
chk a sample code.
report zsha_0001.
type-pools: slis.
data: begin of iku occurs 0,
      check type c,
      kunnr type kna1-kunnr,
      name1 type kna1-name1,
      end of iku.
data: ifldc type slis_t_fieldcat_alv .
data: xfldc type slis_fieldcat_alv .
select kunnr name1 into corresponding fields of table iku
        from kna1 up to 10 rows.
clear xfldc.
xfldc-reptext_ddic    = 'Customer'.
xfldc-fieldname  = 'KUNNR'.
xfldc-tabname   = 'IKU'.
xfldc-outputlen  = '12'.
append xfldc to ifldc.
clear xfldc.
xfldc-reptext_ddic    = 'Customer Name'.
xfldc-fieldname  = 'NAME1'.
xfldc-tabname   = 'IKU'.
xfldc-outputlen  = '30'.
append xfldc to ifldc.
call function 'REUSE_ALV_POPUP_TO_SELECT'
     exporting
          I_TITLE  = 'This is the message here'
*          i_checkbox_fieldname = 'CHECK'
          i_tabname            = 'IKU'
          it_fieldcat          = ifldc
     tables
          t_outtab             = iku
     exceptions
          program_error        = 1
          others               = 2.
check sy-subrc  = 0.
**********anothe sampel code**
CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
EXPORTING ENDPOS_COL = 41
ENDPOS_ROW = 10
STARTPOS_COL = 1
STARTPOS_ROW = 1
TITLETEXT = TEXT-202
IMPORTING CHOISE = SEL_ROW
TABLES VALUETAB = ITAB
EXCEPTIONS OTHERS = 99.
IF SY-SUBRC EQ 0 AND SEL_ROW > 0.
READ TABLE ITAB INDEX SEL_ROW.
REF_NAME = ITAB-TABNAME.
ELSE.
REF_NAME = SPACE.
ENDIF.
Regards,
Anver
<b><i>if hlped pls mark points</i></b>

Similar Messages

  • How to pop a virtual calendar with a click of button in swing applications

    How to pop a virtual calendar with a click of button in swing applications
    Does anyone knows how to pop up a virtual calendar in swing applications when there is a click of button. Do u have any components plug in tutorials or free java components download. Does java allows to used Microsoft calendar active x to plug into java applications. Thanks

    If you want a simple date picker, try this one
    http://forum.java.sun.com/thread.jspa?threadID=620699&messageID=3497753its a stand alone, but can be easily modified to include in a popup, and,
    instead of displaying the date:
    - passing the 'date picked' back to the calling object
    - close the popup

  • All of a sudden when i click any button or link a new window opens with an ad

    I have used Firefox for about 7 years. No issues...
    I recently installed Ghostery add on.
    The only way to describe it is:
    I go to a page..
    Click a link (or close to it) or enter or any other button/link that would take me to what I expect..
    BUT instead it opens a new tab to an advertisement site (quibids, P&G, many other random ads) - a few of them I blacklisted with BLOCKSITE (installed after the problem started happening) but several I can't because I would actually use them when I need to (ex: Vistaprint.com)
    When I go back to the original site and click the same link and click it again it works as intended.
    This happens across all sites that I am on...
    It is like there is a hidden link within the one I am clicking on.
    I have pop ups blocked in my browser but this gets around it somehow.
    Since GHOSTERY installed, some sites do not work correctly. If I click on a picture, or something that I want to expand it is as if I am doing nothing at all because it won't complete the action, the functionality is broken.
    I have white listed a couple sites but this is random and if I whitelist everything I come across then it opens me back to what I am trying to avoid..
    EXAMPLES:
    went on Heat.com, clicked the button to go to the White Hot Gear instead it opened a new tab brandonline.com
    was on LinkedIn and hit the comment button on a thread, then it opened a new tab vistaprint.com
    was on publix.com, hit the order refills button, then it opened a new tab premium-promos.net
    did a google search clicked on the link I wanted, it opened a new tab premiumgiftrewards.net
    EACH time I go back to the original site and click the same button/link/etc it takes me where expected.
    Thanks in advance for your help!

    Both Firefox and IE have the same problem. The cursor instead of being a finger when pointing to a link is still an arrow. However I can click anywhere on the page and an ad will pop up. I have eliminated all unwanted bars in Firefox, I ran Malwarebytes until it came out clean. I also have AVG which had detected a few items on it's own. But when I get into Firefox I still have exactly the same problem. Now it will not let me download Browser Safeguard. Usually after one click the pointer returns to normal for a few screens. When I try to click to download Browser Safeguard it keeps bringing up different ads or it tries to get me to upgrade Firefox or some other browser helper program which I know are all BS tactics to get me to load their junk again. PLease help I'm an engineer and pretty good with PCs but this one has me beat at least so far.

  • How to run a subVI without poping up normally, but when clicking a button, popup the front panel?

    I know pop-up the front panel of a subVi when called by selecting VI Properties>>Windows apperence.
    But what I need to do is: always run the SubVI inside the parent VI as the nornal subVI do without poping up. But when I click a button"show front panel", the SubVI popup the front panel.
    Is there anyway to do this?
    Thanks,

    ossoo,
             You can use a static VI reference to the subVI and then use the Front Panel Open invoke method to show the front panel when you want. I have attached two VIs that show this. I saved these VIs for LabVIEW 2009 so you should be able to open them up and run them in 2009 or later. Add.VI is the subVI that you are calling. The Caller.VI is just a While Loop that contiually calls the Add subVI. Inside of the While Loop is also a Case Structure with a Static VI Reference (you might need to change the path this is pointing to after downloading the VIs to your computer for this to work) and the Front Panel Open invoke method. You can run the Caller.VI and interact with the main Front Panel as normal and see the subVI but then you can click the Open subVI? boolean button and it will open the subVI's front panel. You can continue to interact with the main front panel and see the values update on the subVI's front panel as well. You can just close the subVI's front panel when you are done viewing it. Does this help?
    Grant H.
    National Instruments
    LabVIEW Product Marketing Manager
    Attachments:
    Caller.vi ‏19 KB
    Add.vi ‏23 KB

  • Pop-Up message with OK button in main page

    All,
    Below is my client's requirement....
    when ever user login into Oracle EBS, before going to Home Page a pop-message with OK button should display and user must and should click OK button to proceed further...
    I am planning to to extend the CO (OAHomePageCO) of /oracle/apps/fnd/framework/navigate/webui/HomePG ... is this is a correct approach or please provide your valueable inputs on this one...
    Thanks in advance

    All,
    any inputs on this requirement?

  • Xcode question. Need to open an app from clicking a button! Please help!!!!

    Hello, I am new to this forum so sorry if this is in the wrong spot. I'm trying to make a simple Xcode app, so that when people click a button, it will open another app, such as an AppleScript, which will run a code in Terminal. So for instance, click "Make my Mac speak" Then it would open the AppleScript and Terminal would pop open and run the code " say Hello, my name is Macintosh". Thats just an example of what I'm trying to do. Please can someone help me. I don't need help with the AppleScript part, just getting Xcode to open the AppleScript. Thank you!

    You want the Mac OS X Technologies Software Development 101 forum
    <http://discussions.apple.com/forum.jspa?forumID=728>
    Or Mac OS X Technologies Developer forum
    <http://discussions.apple.com/forum.jspa?forumID=727>

  • 3.1.3 double clicking home button when music is not playing

    Is the bug that double clicking home button while music is not playing didn't bring up the iPod control fixed? For me, it seems definitely a bug since it doesn't give anything good. Clicking home button once already terminates the application, why would anyone use double clicking to exit the application too?
    This is why I'm still using 3.0. Is this fixed in 3.1.3?

    Jeong-hun Sin, 3.1.3 has the same issue, and I do not think Apple is ever going to fix this issue. They still haven't even fixed the live updating playlist sort order issue...
    roaminggnome he's referring to a pop-up controls issue that has been talked about on this forum ever since the release of the 3.1 firmware.
    http://discussions.apple.com/thread.jspa?threadID=2151438
    In 3.0 and older versions, if you're in an app/game you can double-click the home-button to access the iPod pop-up controls to resume the playback of a song/podcast that had been previously paused/stopped.
    In 3.1, if a song had been previously paused you cannot launch the pop-up conrols to resume the playback of the song. You're forced to exit the app that you might be in (lets say safari, or a game), and then resume playback using the music app.
    Jeong-hun Sin, I upgraded to 3.1.3 a few days ago, and have found a few improvements:
    - Many 3D games are MUCH smoother/faster under 3.1.3, than 3.0. I downgraded back to 3.0 just to see if I was just imagining things, but games like Coconut-racer, and Asphalt 5 were not as smooth as they were under 3.1.3.
    - If you happen run apps that have live video streaming where the video playback controls do not appear (e.g the BBC world, Al Jazeera news, sure there's more), the iPod Touch no longer randomly reboots when using those apps.

  • HT201209 Trying to redeem a free download for a song from KLove. When I get into my acct & try to redeem it, it just keeps bringing up the "sign-in" box. When I click the button on KLove's webpage to redeem it takes me to that page but does the same thing

    Trying to redeem a free download for a song from KLove. When I get into my acct & try to redeem it, it just keeps bringing up the "sign-in" box. When I click the button on KLove's webpage to redeem it takes me to that page but does the same thing

    Get the redeem code from the KLove page:
    http://www.klove.com/music/store.aspx
    ...and enter it into the Redeem Code box in the iTunes Store.
    You will have to sign in to your iTunes account.
    It worked fine here.  If that doesn't work for you, let us know what went wrong.

  • Was typing an e-mail -trying to find "printer" - clicked SOME button now can't get back to my e-mail also top of page is missing/can't get to go down

    Went thru mozilla to business e-mail account/wanted to make a copy of notice to be sent/was clicking different buttons to find a "printer" all of a sudden the whole page went up and the top (bar,browser,everything disappeared) now can't find anything of mine only info to download mozilla??

    That was helpful but it didn't solve the problem. There were two red dots, now only one, though I copied and pasted the same password in both places. (I don't recall having to change the password in two places before).
    The red dot next to smtp.mail.me.com:(myname) disappeared
    The red dog next to smtp.me.com:(myname) is still there. It says, "trying to log in to this SMTP account failed. Verify that the username and password are correct."
    Thanks,
    Lizzy

  • I requested a repair, but there was an error after clicking the button with my credit card info. I was still charged, but the form email I received the next day had incorrect info about my iPod Touch problem. How can I contact CS w/o paying $19?!

    My iPod Touch battery is not working. I requested a repair through the Apple Support. On the final page, when I clicked the button that puts the info through with your credit card number, the resulting page gave an error (I wish I'd have saved it!). Anyhow, I checked my credit card and it was charged, so I assumed the repair request went through. The next day I received a form email saying my problem was with "Sync with iTunes (Not iCloud) - Data Backup/Migration (not iCloud)" instead of the battery repair. It also says for iPod customers, to send your iPod to Apple - but I had requested the "iPod Coffin" to be mailed to me so I could send it back. Obviously there was an error between the request and what was received, so I'd like to ask Customer Service about it. However, I can't find a way to contact them. When I replied to that form email, I recieved an automated reply saying emails there were not read. Anything online asks me to pay $19 and I don't have the correct issues to request an exception. The closest store is over an hour away or I'd simply go there to ask. What can I do?! Any suggestions you have are much appreciated. Thank you!
    PS - The form email also says if I wait 10 days the repair request will be canceled. Does this mean my credit card will be refunded for the $85 battery replacement charge if it is canceled automatically?

    Thanks, but I've been on the phone with AppleCare US (where I am and live) and AppleCare UK. They continue bouncing me back and forth without helping resolve the problem.
    Perhaps someones knows how to further escalate the issue at Apple?

  • How to call a swing form from another swing form by clicking a button

    i created a swing frame , this frame have a form and an internal form. in this form have 3 buttons OK , CANCEL , NEW. i created some other forms i.e OKFORM, CForm,NForm. i want to invoke the OkForm when i click OK Button, Similar implimentation for other buttons too. i want the button logic to invoke other form. please send reply ASAP.

    A great resource that has helped me and will probably help you is an article entitled [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html] . It will tell you how to formulate your questions so that the folks here will be better able to answer them.
    For instance, just what is a form?
    I notice that you've posted twice before and that both posts stimulated responses like mine, responses that asked for clarification, and that you never replied in either of the previous threads. Again, I urge you to read the link above ASAP, else you will find fewer and fewer people interested in helping you.
    Good luck.

  • Trying to makea report run when clicking a button on a form

    I am trying to run a report by clicking a button on a form (Forms 9i)
    I have modified the registry settings for FORMS90_PATH and REPORTS_PATH to include my development directory, and now at last the report is generating. However the command to display the form in a window is not doing anything at all - no error even. Can someone please help, the trigger code for my button is displayed below:
    DECLARE
         rep_result VARCHAR2(30);
    BEGIN
         SET_REPORT_OBJECT_PROPERTY('INVENTORY_REPORT', REPORT_FILENAME, :GLOBAL.project_path || 'Inventory.rdf');
         SET_REPORT_OBJECT_PROPERTY('INVENTORY_REPORT', REPORT_DESNAME, :GLOBAL.project_path || 'Inventory.htm');
         rep_result := RUN_REPORT_OBJECT('INVENTORY_REPORT');
         --MESSAGE('Rep result: ' || rep_result);
         WEB.SHOW_DOCUMENT('file:///' || :GLOBAL.project_path || 'Inventory.htm', '_blank');
         --WEB.SHOW_DOCUMENT('file:///C:\Temp\Dev\Inventory.htm', '_blank');
    END;
    thx
    adam

    Hi,
    may be this could be helpful for you:
    You have to include the following code to execute a report:
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status Varchar2(20);
    BEGIN
    repid := find_report_object(report_name);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,report_server_name);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := report_object_status(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    if rep_status = 'FINISHED' then
    WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    else
    error report not exists
    end if;
    END;
    Also you have to create the report server with the command:
    "rwserver - install service_name autostart=yes
    report server name must be the same that appears in the code above
    You must add the report to run in the REPORT object type in your .fmb and put there with the same name
    The report server to install ought to be the one and only in you network to avoid mistakes...

  • Double click Bookmarks button to open the Library window directly ("Show All Bookmarks" function)

    I have a number of folders in bookmarks, and I edit it frequently by clicking "Show All Bookmarks" and opening a Library.
    Previously, after clicking Bookmarks button, "Show All Bookmarks" appeared on top of the list, and now it's at the bottom.
    Please, add double click function on Bookmarks button so that it opens Library window directly.

    See also:
    *[[/questions/997080]] Is it possible to move "show all bookmarks" in the bookmark-menu to the top?

  • After updating to v. 24.0 (and restarting) ALL add-ons (regardless whether they work or not) are marked "(disabled)", and clicking Enable button does nothing

    After updating to v. 24.0 (and restarting, several times) ALL add-ons (regardless whether they work or not) are marked "(disabled)". I tried clicking "Enable" button for each add-on and nothing happened. There is only one add-on which is marked as incompatible with this version (but it was also incompatible with previous version, and so marked).
    Clicking "Update Add-ons", gives a short list of add-ons but "Install Updates" button is pale and doesn't work. I can only sort list by name or last update.
    Also, I disabled Ask Toolbar and that went well. When I click "Enable" button (button works ONLY for this add-on) it takes forever to get note: “Ask Toolbar will be enabled after you restart Firefox”, I used to get this info in seconds time before this update. (I do not really want Ask Toolbar, I just used it to see whether if I disable and then enable an add-on might do the trick.)
    Bottom line – I can not tell if add-on works (i.e. if it is enabled or disabled) unless I try using it.
    Even when I posted this question and installed Troubleshooter, it's also marked as "(disabled)"

    You're welcome
    Are this screenshots from an extension window because the built-in about:addons page looks different?

  • How can I pause a slide until the user clicks a button?

    I wish to pause a slide until the user clicks a button (which I've created out of a Smartshape). The thing is that I haven't added a click box object over the smartshape but have only set the smartshape properties to "Use as Button". If I were to add a clickbox object, I would get a "Pause project until user clicks" in the options section of the properties. However in using a smartshape as a button, I cannot find this option. I am using Captivate 6. Seems strange as I would have expected to see the same checkbox option even if I were to use a smartshape as a button but I dont. Can't someone help me and let me know if I'm missing something.
    Of course I could use a clickbox over my smartshape to achieve what I want, but I want to avoid thsi for two reason:
    I want to avoid adding another object when I dont need it.
    My smartshape is a right arrow (indicating "Begin"), and I dont want a squarish click box sitting on top of a triangle because that just shows the hand pointer even if the cursor isn't exactly over the arrow button because it enter the clickbox area.
    Thanks,
    Sean

    Select the Smart Shape button , go to Properties > Timing accordion > Pause After and set the number of seconds from the beginning of the slide for it to pause.

Maybe you are looking for