Freely Programmed help in Pop Up Window

Hi,
  Is it possible to display the data of freely programmed help in the pop up window.
Thanks
Raghavendra

Hi Thomas,
   I agree that by using Freely Programmed help the data will be displayed in a seperate window. I want to display the data in a window( of type Pop Up) because i am displaying table control with 3 fields on clicking f4 and it has 2 buttons Ok and Cancel. But if there are 50 entries the user needs to scroll down to click on Ok. If the window is of type pop up Ok button will be embedded in the window instead of on view.
Thanks
Raghavendra

Similar Messages

  • How to display check box in the search help restriction pop-up window

    Hi Experts,
    I have created one searc help with dialog value restrictions. Search help contains 4 fields.
    Out of which one field has length one character.
    As oon as user press on F4 on particular field, it will display pop-up window with restrictions and displayed 4 fields.
    I would like to show that field ( one character length field) as check box in search help restrictions pop-up window.
    Pls help me ,... How can we acheive this..
    Thanks
    Raghu

    Ur Exact Requirement,
    Types : begin of itab,
         fields type c,
         Check type c,(For Check Box)
         end of itab.
    data it_tab type standard table of itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_input-low.(If it is in select-options)
      CLEAR  v_input.
      GET CURSOR FIELD s_input VALUE  v_input.
      CALL FUNCTION 'AIPC_CONVERT_TO_UPPERCASE'
        EXPORTING
          i_input  = v_input
          i_langu  = sy-langu
        IMPORTING
          e_output = v_input.
      CLEAR s_input-low.
      IF v_input NE '' .
        IF v_input NE '?'..
          v_input1-sign = 'I'.
          v_input1-option = 'CP'.
          v_input1-low = v_input.
          APPEND v_input1.
        ENDIF.
      ENDIF.
    SELECT DISTINCT   Field
                      FROM Table
                      INTO TABLE it_tab
                      WHERE field IN v_input.
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
              EXPORTING
                i_title                 = 'Select Colors'
               i_selection             = 'X'
                i_zebra                 = 'X'
                i_screen_start_column   = 5
                i_screen_start_line     = 5
                i_screen_end_column     = 30
                i_screen_end_line       = 12
                i_checkbox_fieldname    = 'CHECK'
                i_tabname               = 'IT_TAB'
                i_scroll_to_sel_line    = 'X'
                it_fieldcat             = it_fieldcat1
                i_callback_program      = sy-repid
                i_callback_user_command = 'USER_COMMAND1'
              IMPORTING
                es_selfield             = selfield
              TABLES
                t_outtab                = it_tab
              EXCEPTIONS
                program_error           = 1.
    Cheers,
    Naveen

  • Freely programmed help in ALV

       HI:ALL
          How to achieve  Freely programmed help in ALV?

    Hi,
    On APPLY buttton action, write the below code
    *Fire the event to indicate that data selection is done
    wd_comp_controller->fire_vh_data_selected_evt( ).
    wd_comp_controller->value_help_listener->close_window( ).
    *Raise Event
       cl_fpm_factory=>get_instance( )->raise_event_by_id( EXPORTING   iv_event_id   = '<custom event name>').
    And in PROCESS_EVENT of your webdynpro component(where Freely Programmed search help is implemented) write the code as per your requirement to set the values back to the table.
    CASE IO_EVENT->MV_EVENT_ID.
              WHEN '<CUSTOM EVENT NAME>'.
                        write code as per your requirement.
    ENDCASE.
    Thanks
    KH

  • Freely Programed Help for select-option field

    Hi,
    how can i set freely programmed help for select option field, i mean while adding selection field what are the parameters that are important for freely programmed help.
    i have implemented iwd_value_help in one component comp1 and declared the usage of comp1 in comp2 where i actually defined the usage of select-option component.
    i used parameter   i_value_help_type = if_wd_value_help_handler=>co_prefix_appldev while adding selection field, however when i presss F4 icon, the following message is coming
    View WD_VALUE_HELP does not exist within the component WDR_SELECT_OPTIONS
    Please suggest where i am doing wrong??
    Edited by: kranthi kumar on Dec 29, 2010 6:19 PM

    >
    kranthi kumar wrote:
    > Hi,
    >
    > how can i set freely programmed help for select option field, i mean while adding selection field what are the parameters that are important for freely programmed help.
    >
    > i have implemented iwd_value_help in one component comp1 and declared the usage of comp1 in comp2 where i actually defined the usage of select-option component.
    >
    > i used parameter   i_value_help_type = if_wd_value_help_handler=>co_prefix_appldev while adding selection field, however when i presss F4 icon, the following message is coming
    >
    > View WD_VALUE_HELP does not exist within the component WDR_SELECT_OPTIONS
    >
    > Please suggest where i am doing wrong??
    >
    > Edited by: kranthi kumar on Dec 29, 2010 6:19 PM
    Hi Kranthi,
    Please help me to understand your design.
    Why would you like to create a Freely programmed value help for select-option?. why not use wdr_select_option directly ?

  • F4 help for pop up window

    Hi guys,
                 for pop up window i need f4 help..... actually wt the task is if i  give the program name, that program contents have to save in a text file... for that i need to specify the path ie., where i have to save the text file...
                i have done some coding on it i dont weather the function module i used is correct? and for that i need f4 help....
             so plx tell me how to use f4 help for the function module and also wt is the exact function module for pop up window....
    here is the code.............
    REPORT  ZTEST_DOWNLOAD.
    PARAMETERS :  P_PROG(30) TYPE c.
    DATA: ITAB TYPE TABLE OF STRING.
    READ REPORT P_PROG INTO ITAB.
    CALL FUNCTION 'RSO_DIRECTORY_POP_UP'
    IMPORTING
      E_DIRECTORY       =
    EXCEPTIONS
       FAILED            = 1
       CANCELLED         = 2
       OTHERS            = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    START-OF-SELECTION.
    data: progname type string.
    progname = P_PROG.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        =   PROGNAME
        FILETYPE                        = 'ASC'
      TABLES
        DATA_TAB                        = ITAB
      FIELDNAMES                      =
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks in advance..............

    Use this code.. F4 help for both Application as well as Presentation Server..
    *                      Form  FILE_F4_APP
    *      Help on Selection-screen for file on Application Server
    form file_f4_app .
      call function '/SAPDMC/LSM_F4_SERVER_FILE'
        exporting
          filemask         = space
        importing
          serverfile       = p_name
        exceptions
          canceled_by_user = 1
          others           = 2.
      if sy-subrc is not initial.
        p_name = space.
      endif.
    endform.                    " FILE_F4_APP
    *                      Form  FILE_F4_PRE
    *           Filename F4 help for Presentation Server
    form file_f4_pre .
    * Local Constant
      constants: l_c_p type c length 1 value 'P'.
    * Local Data
      data: l_path type c length 255.
      call function 'F4_DXFILENAME_TOPRECURSION'
        exporting
          i_location_flag = l_c_p
          i_path          = l_path
        importing
          o_path          = l_path
        exceptions
          rfc_error       = 1
          error_with_gui  = 2
          others          = 3.
      if sy-subrc eq 0.
        p_name = l_path.
      endif.
    endform.                    " FILE_F4_PRE
    Please award points..
    Thanks,
    Rahul

  • Help! pop up window about usb taking to much power keeps coming up every 30 seconds

    Hiya
    For a couple of months this pop up window keep on coming up everytime i start the computer. Havent really been bothered before but now it keeps on coming up less than every 30 sec and some times even 5 times at one time. It is really disturbing. What can I do about this? The usb's seem to work fine and its not anything wrong else with my macbook. I only had it since april this year.
    Please, help
    Kind regards
    L

    Sorry the message is in swedish.. It says 'Because of an USB-unittook to much power from the computer one or more of the usb-units have been inactivated. It had been inactivated to protect the computer. As soon as you have deattached the unit (no units are attached btw) the other usb-units will be activated again.

  • Need help with pop up window!

    I'm working on an online graphic design portfolio and one of the pages features online animated Flash banners.  The site can be viewed here...
    http://truetilldeathhq.com/Skiz/main8_v7.html
    I created a pop up window that displays a swf of the banner by putting this code on the View Banner link of each example of work...
    on (release) {
    var jscommand:String = "window.open('http://www.truetilldeathhq.com/Skiz/banners/336x280DuvalCX9.html','win','height= 296,width=352,left=112,top=330,toolbar=no,resizable=no,location=no,scrollbars=no ');";getURL("javascript:" + jscommand + " void(0);");
    Two problems though.  First is in Firefox the location bar with the url to the swf is visible, even though I set location=no as a variable in the code (it works ok in Safari).  The window is also resizable in Firefox and Safari even though the variable is set to resizable=no.  How can I fix this?
    Second problem, even though I painstakingly set the left and top variables by trial and error to get the pop up window to open exactly in the center of the "stage" area of the site, when I post it and view it in a browser, the window pops up lower.  When I'm in the fla of the site and I preview it in a browser, it's fine, but for some reason when I post the files online and then open it from http://truetilldeathhq.com/Skiz/main8_v7.html, the pop ups come in lower.  Any fixes or advice on this?
    Thanks for your help!

    Forgive me for my ignorance, but I'm new to Flash and any kind of scripting and I didn't quite follow that page you directed me to.  Right now I'm working up a Flash template and the action on the link for the banner pages looks like this:
    on(rollOver) {
    this.gotoAndPlay("s1");
    on(rollOut, releaseOutside) {
    this.gotoAndPlay("s2");
    on (release) {
    _root.popup_pressed=1;
    _root.scrHEIGHT=240
    _root.scroller.scroller.gotoAndStop(2);
    _root.TM_title = "Work 1 read more";
    _root.READ = 1;
    _root.scroller.gotoAndPlay("s1");
    How can I work up the on (release) so I'll get a simple pop up window, say 728x90, no scrollbars or resizing, that will open somewhere in the middle of the site?  If I wanted a title to the pop up window, how would I do that?
    Again, thanks so much for your time and excuse my newbieness.

  • Almost finished with site, really need help with pop up window!!!!!

    I've got one last thing to finish up on this site I've been working on.  I've posted what I've worked up so far at:
    http://truetilldeathhq.com/main8_v7/main8_v7.html
    I still have to finish linking the actual banner swfs on the Online Banners page, which will display animated banner ads for the portfolio.  Ideally, when the user clicked the View Banner link, I wanted to have the banners display in a similar pop up window like the other examples of the work (with same title area, close button, etc., click the Detailed View button on Merchandise page for example).  That was problematic due to different frame rates of the banner swfs, getting the pop up window to contain just the stage area of the swf and not the working area, getting the window to pop up in the middle and not get cut off at the right side, etc.  Like I said, ideally I'd like to do this, so if anyone has a relatively quick fix, I'm all ears.
    I figured my best route now is to somehow have Flash trigger an html pop up window when the link is clicked and have it display in the middle of the page at the exact dimensions of the banner.  Anybody know the best way to do this?  I'm at my wits end and I really have to have this finished for Monday so any help is more than appreciated, thank big time in advance!

    Forgive me for my ignorance, but I'm new to Flash and any kind of scripting and I didn't quite follow that page you directed me to.  Right now I'm working up a Flash template and the action on the link for the banner pages looks like this:
    on(rollOver) {
    this.gotoAndPlay("s1");
    on(rollOut, releaseOutside) {
    this.gotoAndPlay("s2");
    on (release) {
    _root.popup_pressed=1;
    _root.scrHEIGHT=240
    _root.scroller.scroller.gotoAndStop(2);
    _root.TM_title = "Work 1 read more";
    _root.READ = 1;
    _root.scroller.gotoAndPlay("s1");
    How can I work up the on (release) so I'll get a simple pop up window, say 728x90, no scrollbars or resizing, that will open somewhere in the middle of the site?  If I wanted a title to the pop up window, how would I do that?
    Again, thanks so much for your time and excuse my newbieness.

  • Need help with pop up windows!

    I'm working on a page that's very long and it has your basic
    "click on a small thumbnail of an image and a larger version opens
    up in a pop up window". I downloaded a free extension from the
    Macromedia exchange called Open Picture Window Fever, but it has a
    couple of problems. First, there's no option to center the pop up
    window, only dimensions you can manually put in. Plus when you
    click on the picture, the new window opens but the original page
    with the thumbnails automatically goes to the top when the pop up
    opens (this is a problem because the page is very long and the user
    would have to scroll back down each time they clicked on an image,
    a big pain). The only other option I have is to use the Dreamweaver
    Open Browser Image Behavior. The problems with that is that you
    have to make a html page for each image, which is a drag. Also, I
    can get the pop up window to center with a different extension I
    downloaded, but I still have the same problem with the original
    page jumps to the top.
    What can I do to fix this? Anybody have other ideas or free
    extensions I haven't tried yet?

    > Plus when
    > you click on the picture, the new window opens but the
    original page with
    > the
    > thumbnails automatically goes to the top when the pop up
    opens
    Go to PVII and look for a free extension called Fix Null
    Links....
    http://www.projectseven.com/
    That'll take care of that one.
    > The only other option I
    > have is to use the Dreamweaver Open Browser Image
    Behavior.
    Go to E. Michael Brandt's site, and examine JustSo Picture
    Window. It's
    commercial but it's way nicer than PWF, in my opinion....
    http://www.valleywebdesigns.com
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "xslamx" <[email protected]> wrote in
    message
    news:[email protected]...
    > I'm working on a page that's very long and it has your
    basic "click on a
    > small
    > thumbnail of an image and a larger version opens up in a
    pop up window".
    > I
    > downloaded a free extension from the Macromedia exchange
    called Open
    > Picture
    > Window Fever, but it has a couple of problems. First,
    there's no option
    > to
    > center the pop up window, only dimensions you can
    manually put in. Plus
    > when
    > you click on the picture, the new window opens but the
    original page with
    > the
    > thumbnails automatically goes to the top when the pop up
    opens (this is a
    > problem because the page is very long and the user would
    have to scroll
    > back
    > down each time they clicked on an image, a big pain).
    The only other
    > option I
    > have is to use the Dreamweaver Open Browser Image
    Behavior. The problems
    > with
    > that is that you have to make a html page for each
    image, which is a drag.
    > Also, I can get the pop up window to center with a
    different extension I
    > downloaded, but I still have the same problem with the
    original page jumps
    > to
    > the top.
    >
    > What can I do to fix this? Anybody have other ideas or
    free extensions I
    > haven't tried yet?
    >

  • Help with pop up window

    Hi
    I am developing a site with Dreamweaver CS3. My problem is
    that I need to define certain words in the site which when clicked,
    open a seperate browser window that shows the definition of the
    word. The new window that opens contains all the definitions to
    numerous words. I have the links from each word to the definition
    list window working properly but I would like the window to open
    and make the word that the user clicked on be shown without the
    user having to scroll to the word he is trying to define. Ex. If
    the user clicks on the word "Default", when the definition window
    opens, I would like the list to be scrolled automatically to that
    word.
    Any help would be appreciated.
    Thanks

    Captain825 wrote:
    > Thank you, it works perfectly! One last question. Can
    you tell me how to control the size of the definition page so that
    it opens to a specific size each time?
    >
    > Thank you
    >
    i am guessing, since we've not seen your page, that you are
    using the
    target attribute to open the new window? If so, it is not
    possible to
    control the size of the window that it opens. Moreover, and
    even worse,
    it will spawn multiple windows - i.e. each time the user
    clicks, a brand
    new window will open and need to be manually closed.
    Better would be to do this using a window.open() script. DW
    offers a
    built-in Behavior, called Open Browser Window. But it has its
    own
    issues, not the least of which is it too spawns multiple
    windows.
    I offer an inexpensive DW Extension that makes all this
    really easy. It
    will not spawn multiple windows, it does not require adding a
    behavior
    to each link, it can be added to all your pages at once, and
    many more
    options and benefits. You can see it at
    http://divahtml.com/products/divaPOPgold/open_popup_windows.php
    Hope that helps.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Feature request: Add "Cancel" button to the close program / backup actions pop up window

    Please add a way to cancel out of an unintended close of LR4.  I cannot count how many times I have thought of something else I needed to do or wanted to try, only to have to totally restart the program to complete the action.  If I prematurely exit the program I would like a way to get back in without having to totally close out and restart.  LR3 suffers from the identical coding/programming oversight.  Thanks.

    Ok, so I did not see this feature request for LR4 but was able to find a few references for it under LR3 (which I apparently missed before posting this request).  Is this simple request really that difficult a programming feat?

  • Freely programed F4 help

    Hello Experts,
    i want to create a freely programed F4 help for one of the attribute in my context.
    can anyone tell me how to go about it step by step.
    Thanks,
    gunjan

    Hi Gunjan,
    Below are the important points which you need to keep in mind while designing this 2nd component ( say COMP2) :
    1) Your component which gets displayed as the search help must implement the Interface IWD_VALUE_HELP. (For this double click on your Web Dynpro Component & go to the "Implemented Interfaces" tab. Just specify IWD_VALUE_HELP under the "Name" column & press on enter. The "implementation State" would then display a green traffic light for you signifying that the interface has been successfully implemented.)
    2) A window by name WD_VALUE_HELP would have been automatically added to this component when you implement the IWD_VALUE_HELP interface. You need to embed the view which you would like to appear on F4 help under this particular window. (Normally if you had created a MAIN view you would embed this view under the window with the same name as your component. But in this case you need to embed your main view under the window WD_VALUE_HELP )
    Now below are the steps to be followed within your main component (say COMP1) in which you have your input field & up on pressing which you want the Freely Programmed Help to Appear.
    1) You need to declare a component usage of your help component (COMP2) within your main component. (COMP1)
    2) Specify a "Controller Usage" of the Used component within your components view. (Go to the "Properties" tab of your view & click on "Create Controller Usage" button & select the INTERFACECONTROLLER of COMP2)
    3) Now change the "Input Help Mode" of your desired context attribute to "Freely Programmed".
    Regards,
    Uday

  • How to add Freely programmed input help in FPM Search UIBB?

    Hi Experts!
    We have a requirement to create search UIBB in which the input field should have a freely programmed input help.
    I see that WD_VALUE_HELP parameter can be set to the component name and it displays the freely programmed help as well in the application.
    However, I am still digging to implement the search help open and close events of the component.
    I have used the Freely programed value help standard demo object  " FREE_VALUE_HELP "  which shows the value in the help popup however, the selected value is not returned in the input field.
    I am also unable to find any Interface as provided for implementing OVS in search UIBB as well...
    Please help.

    Hi Aliaksandr,
    Thanks for your response.
    I have checked this WDA application demo_value_help .... but it is a normal WDA application.
    However, I want use freely programmed search help in Search UIBB using FPM.
    I found that we can provide the component name used as freely programmed search help in the attribute WD_VALUE_HELP of Interface IF_FPM_GUIBB_SEARCH.
    https://help.sap.com/saphelp_nw74/helpdata/en/03/f2474b6d9a49f4b5a3ed6f04decf22/content.htm?frameset=/en/56/d151c3ba7b4b2e82068a084cb991f3/frameset.htm
    And it displays the search help as well when I do F4 on the field of Search UIBB. But, we need to provide event handler for events - VH_WINDOW_CLOSED and VH_WINDOW_OPENED of the search help component (Component which is provided in WD_VALUE_HELP) some where in the Feeder class, in order to get the selecteed data from the search help, which I am unable to do.
    Do you have any idea of such implementation?
    Appreciate your response!

  • Freely Programmed Search Help

    Hi there,
    I have a WebDynpro application with two fields.  The first field has Dictionary search Help on it.
    The second field has a Freely Programmed input help.  The problem I am faced with is that the freely programmed search relies on the value of the first field to determine it's own values - i.e The first field is a contract, and the second field is an item on the contract.  So if the contract changes, so should the list of items provided in the Help.
    Now the way that this works is that the user selects a contract, then selects an item, then completes the fields in a PDF document.
    They press the button Save and Clear which saves the data, clears all the fields, and is then ready for the next lot of data.
    Although I can clear out all the fields, I don't know how to trigger the refresh of the Freely Programmed help.  The first time it is used it gets the right data, and after that it always shows the same data, - I just don't know how to trigger a refresh.  Basically I want it to refresh every time it is used!!
    Many thanks
    Jack

    Hello Jack,
    hmm... it should refresh itself, because you determine what goes in and out. Probably, you need to clean up some nodes in your freely programmed search help component as well i.e. upon leaving.
    Best regards,
    Thomas

  • How to get f4 help in pop-up field?

    Hello Experts,
    I got a requirement in nwbc, need to show a field which is already in the standard application with f4 help but when i create a custom pop-up screen and add this field, am unable to get f4 help?
    The field doesn't have f4 help from dictionary but it is using another standard component for f4 help. I have tried to embed this component in pop-up screen but still its not showing the f4 help.
    Anyone experienced such situation?
    Thanks.

    Hi,
    The field doesn't have f4 help from dictionary but it is using another standard component for f4 help. I have tried to embed this component in pop-up screen but still its not showing the f4 help.
    What do you mean by "I have tried to embed this component in pop-up screen" ?
    The freely programmed F4 help component is attached to the context attribute and we no need to embed it inside window.
    Let us say you have an attribute KUNNR and you have attached the F4 component using freely programmed help option. You should be able to get the search help for the field KUNNR.
    In case you are not able to achieve this, please give more details on your issue.
    Regards,
    Rama

Maybe you are looking for