Browser window for pgm Names

Hi,
I want to create a browser window(F4 help) for the names of the programs.That window should show the list of all the programs.So that user can select one of them.
Thanks in advance.
Regards,
Asha

Hello
Use this code in ur report.
PROCESS ON VALUE-REQUEST.
  FIELD RS38M-PROGRAMM
    MODULE CATALOG.
MODULE CATALOG.
DATA: REPID LIKE SY-REPID.
  DYNPFIELDS-FIELDNAME  = 'RS38M-PROGRAMM'.
  APPEND DYNPFIELDS.
  REPID = SY-REPID.
  CALL FUNCTION 'DYNP_VALUES_READ'
       EXPORTING
            DYNAME     = REPID
            DYNUMB     = SY-DYNNR
       TABLES
            DYNPFIELDS = DYNPFIELDS
       EXCEPTIONS
            OTHERS.
  READ TABLE DYNPFIELDS INDEX 1.
  RS38M-PROGRAMM = DYNPFIELDS-FIELDVALUE.
  PERFORM PROGRAM_DIRECTORY USING RS38M-PROGRAMM 'X'.
ENDMODULE.
FORM PROGRAM_DIRECTORY USING PROGRAMM LIKE RS38M-PROGRAMM
                             F4_CALL.
  DATA: INFO_OBJECT LIKE EUOBJ-ID,
        L_PROGRAMM LIKE RS38M-PROGRAMM.
  IF SY-TCODE(4) = SE38.
    INFO_OBJECT = 'PROG'.
    IF F4_CALL = 'X'.
      CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'
           EXPORTING
                OBJECT_TYPE           = INFO_OBJECT
                OBJECT_NAME           = PROGRAMM
                SUPPRESS_SELECTION    = 'X'
           IMPORTING
                OBJECT_NAME_SELECTED  = PROGRAMM
           EXCEPTIONS
                CANCEL      = 01.
    ELSE.
      CALL FUNCTION 'REPOSITORY_INFO_SYSTEM'
           EXPORTING
                OBJECT_TYPE               = INFO_OBJECT
                ACTION                    = 'S'
                OBJECT_NAME               = PROGRAMM
           IMPORTING
                OBJECT_NAME_SELECTED      = PROGRAMM
           EXCEPTIONS
                CANCEL                    = 01
                WRONG_TYPE                = 02.
    ENDIF.
  ELSE.
    L_PROGRAMM = PROGRAMM.
    IF L_PROGRAMM = SPACE.
      SUBMIT RSABADAB AND RETURN VIA SELECTION-SCREEN
                      WITH F4_CALL =    F4_CALL.
    ELSE.
      SUBMIT RSABADAB AND RETURN VIA SELECTION-SCREEN
                      WITH REPNAME CP   L_PROGRAMM
                      WITH F4_CALL =    F4_CALL.
    ENDIF.
    GET PARAMETER ID 'RID' FIELD RS38M-PROGRAMM.
  ENDIF.
ENDFORM.
If useful reward.
Vasanth

Similar Messages

  • Some artists don't qappear in browser window for a playlist

    I've been struggling to find a way to browse a large library of classical music. The browser window is a great idea but I can't find a way to add a browser window pane for the Composer tag. So I selected all the tracks with composer=beethoven and made a playlist.
    I notice that some artists for tracks in the playlist don't appear in the Artist browser pane. (For example, Szell/ Cleveland Orchestra.) I don't know how many Artist names are missing from the Browser's Artist but there are at least 2 missing.
    I can see the Artist name "Szell..." in the track listings for the playlist. If I'm browsing the library, I see "Szell ..." in the Browser window Artist pane. I just don't see "Szell ..." in the Artist Pane of the browser window for the Beethoven Playlist.
    I tried deleting the Beethoven playlist and re-creating it. I get the same problem again.
    I'm using iTunes for Windows v 4.7.1.30. I haven't upgraded to the latest iTunes for Windows because I see reports of problems after the upgrade.
    Bill

    My quess on weather or not an artist's name appears
    depends on the nature and quality of the CD. On my CDs
    of Beethoven symphonies or piano concertos Beethoven's name
    will appear.
    As I said in my first message, the artist name appears in the track listing. I have edited the tags to show the correct composer ("Beethoven" in this case) and to show the soloist then conductor and then the orchestra in the artist tag. ("Szell/ Cleveland orchestra" in this case.)
    I see the "Szell..." in the artist field for the tracks for the symphonies conducted by Szee in my library. When I select Library in the source list, I see "Szell..." in the Artist Browser list. However, when I select the Beethoven playlist, I don't see "Szell ..." in the Artist Browser list. I see the tracks listed and the Artist field says "Szell ..." as expected.
    This isn't a problem with the information in the CDDB database iTunes uses to get the tag values it assigns to tracks from a CD. I've edited the tags to fit my conventions.
    Bill Hunt

  • Why is Firefox opening a separate browser window for each link instead of a new tab in the current browser window?

    Suddenly firefox has started opening a new, separate browser window for every link and thing I open. It used to just open a new tab in the current browser. I must have closed down 15 browsers when trying to get back to a previous web page - the back button doesn't work when each click leads to a new window opening! I went into options and my settings have not changed, they still say "open new tab" for links. This just started happening out of the blue today. What's up?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Opening New Browser window for click event on an image

    hi all,
    I want someone to help me out solving the problem of opening
    a new browser window on the mouse click event of an image or a
    button etc.... The new window would contain the datagrid details
    from the main window, but in an expanded form. If at all there is a
    solution, I even want to know whether there is anyway for sizing
    the poped up window,because I dont want the new poped up window to
    cover the entire screen.
    For getting better idea of my problem, the best example I
    could give is the popup window that appears when we click on the
    preview button while posting the message to the forum.
    Someone please do help me out in this regard.
    Thanks,
    amar.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

  • Is it possible to have Multiple Browser Windows for a Faces App

    I have just read from another thread
    http://forum.java.sun.com/thread.jsp?forum=427&thread=308725
    that states:
    ..the RI only keeps state for one URL at a time (in the words of the spec: "if the JSF implementation has saved state information for a tree identifier /foo in the user�s session, but receives a request with URI /faces/bar, the saved state information will be thrown away.").
    That means that if you hit the /faces/ servlet with anything (e.g. /faces/css/mainX.css) after it has rendered your .jsp page, all the state necessary to process your form will be lost.
    This must mean that I cant have more than one browser window with a faces
    app at a time, I think that it is necessary to provide the funcionality.
    My application is showing database tables and allows the user to edit them, but to restrict the user to one window doesnt seem feasable.
    If you cant have more than 1 window then command_hyperlinks have serious drawbacks in that the user could be tempted to right click and open another window, then the application would not
    work when changing from one window to another.
    I have an idea but I cant see how to get it to work.
    a hidden page-thread id that identifies which browser window/tab the user is on and that identifies a page-thread map that stores values such as the component tree and other things like list iterators, the problem is that if the user "clones" the window you would need to clone the map and change the hidden page id.
    Does javascript know a window id that it could send?
    Any bright ideas.
    How do uSoft manage this?
    Is http the right protocol????
    As I understand faces apps should be run in a browser window with no back/forward buttons and without any command-hyperlinks to /faces/... so that the user can never break the program, is this correct?
    Andy

    I have just read from another thread
    http://forum.java.sun.com/thread.jsp?forum=427&thread=3
    8725
    that states:
    ..the RI only keeps state for one URL at a time (in
    the words of the spec: "if the JSF implementation has
    saved state information for a tree identifier /foo in
    the user�s session, but receives a request with URI
    /faces/bar, the saved state information will be
    thrown away.").
    This used to be the case until EA4 because it has been fixed. Future release will also support necessary API that gives you control over what to save or what not to.
    -Jayashri

  • New browser window for Jump Query

    Hi SAPGuru,
         I have main Query with three jumps Query (QA, QB, QC). I created web template with main query and three other web templates for jump query. All are working fine. When I am running main query template and trying to jump from main query to “QA” web template. Its open a new browse window that’s fine. So now I have total two browsers are open. Now when I try to jump from main query to “QB” that web template is showing in the browser window which is shown by “QA”. Means it’s overwrite “QA” query with “QB” query in browser.
         I need to open a new browser window when I jump from main query to child query. In short I like to open one browser for main query and three another browsers (QA, QB, QC) to jump query so, I can compare all query with different browser window.
             Am I missing something in web template side or IE’s option side?
             Thanks in advance...

    Check the RRI_DISPLAY_TARGET property of the web template. make sure you do not have this set to open in the QA window.
    Thanks.

  • New Browser Window for SWG File

    If you go to my page at
    http://community-kitchen.org/News_Letters/2005winter/index.html
    And try and open the new browser button for the Flash Paper
    document it will not load.
    Does anyone have the answer to this?

    Check the RRI_DISPLAY_TARGET property of the web template. make sure you do not have this set to open in the QA window.
    Thanks.

  • Open Browser Window for QT movie

    I am not good with code yet so I work in the design mode. I
    am using DMX for mac and I am wanting to link text to a QuickTime
    movie. I use the Open Browser Window method and choose my window
    height and width. In the Properties window I place
    "javascript:%void(0)" in the Link box to give the link a Null link.
    I have no problems with Safari, Netscape, Firefox opening up the
    media file and playing it fine. IE on both Mac and PC will not open
    up a .mov file. The fixed window sits there and the thinking
    indicator just spins. IE will open up a .jpg file though with no
    problems.
    I assume a lot of my viewers will be using IE so I want to
    get it working.
    Any thoughts. Remember, code does not little good. Sorry.
    David

    Let's make it a 100%. It isn't possible - the way you imagine
    at least it isn't.
    You could try to work around with css-layers and flash
    javascript communication, but this wont be very reliable. Cotting
    up you flash and using an i-frame would be more reliable, but also
    not really fun to do.

  • Aperture: two browser windows for same project?

    I know that I can have two browser windows, each showing a different project; I want to have two browsers windows for SAME project. Is there a way to do this?

    Can't be done as far as I know. Here's a link to some tips on multiple tabs in Aperture. http://www.apertureexpert.com/tips/2010/9/7/aperture-has-tabseasily-compare-proj ects.html

  • Window Arrange New Window for (Document name) is not creating a floating document? It works on my PC, but not my Mac (Mavericks).

    So I know this command is supposed to create that document in a new window and have it float ontop of the original document. It (the new window for the document) is supposed to stay in front of anything on the application frame, like the UI does. But on my mac it keeps going into the background when I click onto a different document. I don't know why it does that. This command works fine on my PC.

    So I know this command is supposed to create that document in a new window and have it float ontop of the original document. It (the new window for the document) is supposed to stay in front of anything on the application frame, like the UI does. But on my mac it keeps going into the background when I click onto a different document. I don't know why it does that. This command works fine on my PC.

  • How to automatically open browser window for getting user id & password

    i have created a jsp page, that page cannot be open by anyone anyway, it should be only visible to me only.
    how do i achieve this.
    my requirement is that whenever any one request for that jsp page, browser should automatically open one window and ask for user id & password, if it is right then the page should be displayed else error should be shown.

    Adding the following to web.xml will define security constraints for all resources under the /admin directory, also only a user in the manager role will have access to these resources.
    For tomcat you can look at the conf/tomcat-users.xml file for setting up users and roles
         <security-constraint>
              <web-resource-collection>
                   <web-resource-name>Secure Pages</web-resource-name>
                   <description></description>
                   <url-pattern>/admin/*</url-pattern>
                   <http-method>GET</http-method>
                   <http-method>POST</http-method>
              </web-resource-collection>
              <auth-constraint>
                   <description></description>
                   <role-name>manager</role-name>
              </auth-constraint>
         </security-constraint>
         <security-role>
              <description></description>
              <role-name>manager</role-name>
         </security-role>

  • Gaps appear in IE 6 browser window for hidden fields in Create User form

    Hi,
    I need an urgent input on this one.
    I hid an OIM default attribute for users in the 'Create User' form by modifying clear_all_fields.js
    The field is hidden from the 'Create User' page fine!
    But if I open the page from Internet Explorer 6 it shows a gap in the place of the hidden field.
    For Mozilla 3.0.5 the gaps are not appearing.
    I tried removing these gaps by deleting the tags and the field in the clear_all_fields.js
    or, by reducing the dimension of the spacer.gif in GenerateCreateUserForm.jsp.
    But it reflected no change in the form look n feel.
    The requirement is to hide the fields and not remove them.
    Any suggestion as to what may be the way out?

    Thanks for the update Leonard. This would be an extremely useful plugin. I've been looking for it on http://labs.adobe.com/technologies/ under the plug-ins tab but have been unable to find it. It wasn't even there in the Pre-Release Programs. Is it located somewhere else or with a different name? Please let me know.
    Meanwhile, I've been trying to write my own VB script to get the button clicked. Here's what I've come up till now-
    FindText
    HiliteList.Add->CreateWordHilite->SetTextSelect->GetBoundingRect->PointToDevice
    The last function seems to be deprecated. Also there's nothing to connect the text highlighted by findtext with HiLiteList.Add. I guess
    I may have to use the JSO word search method.
    Any advice, as always, would be much appreciated.

  • Managed Attachments - creating a customCO for 'Managed Attachments' and opening a new browser/window  as ActionEvent through processFormRequest()

    Hi All,
    I am working on 'Managed Attachments' integration of Oracle E-Business Suite with Oracle WebCenter Content and I am very new to EBS.
    As per the customer requirement, we needed to enable the Managed Attachments on an SIT page (Employee Self Service --> Special Information-> and click on 'Add' for any of the 'Special Information' section) and the values they fill on these pages need to be passed to webcenter content.  As you know these segment data will not be inserted into the database until the user clicks on 'Submit' button from the review page,
    But the customer wants to save it on the 'Special Information' add page itself.
    Managed Attachments is an out of the box feature offered by Oracle WebCenter Content to replace FND Attachments functionality. Instead of storing the attachments in EBS, it will store to WebCenter Content.
    My requirements are as follows
    1) Enable the managed attachments on he special information 'add' page (e.g Company Property, Disabilities etc),- I am able to do this
    2) The data user fills in these fields , when user clicks on 'Managed Attachments' button , these values should be passed to the URL for managed attachments(which is already set on the button through processRequest() method when the page gets loaded) and thus pass to webcenter content
    With these requirements, the challenges i am facing are
    1) Since the user clicks on 'Managed Attachments' before even he/she clicks on 'Apply' button, how do I capture these values? can pageContext.getParameter('id') can get these?
    (i have already tried to do this in processFormRequest() method and i found that it is working for LOV fields but not for text fields)
    2) if i can get the values in processFormRequest(), how can i open a browser/window for the new URL()
    e.g, i wanted to write something like this and the finalURL is what i wanted to open in a new browser or window as the actionEvent
        public void processFormRequest(OAPageContext pageContext,   OAWebBean webBean) {
    super.processFormRequest(pageContext, webBean);
       String param1 = pageContext.getParameter(“Param1”);
    String param2 = pageContext.getParameter(“param2”);
    String redirectURL = “http://rstnssiovm0072.us.oracle.com:8000/OA_HTML/OA.jsp?page=/oracle/apps/ak/ucm/axf/webui/RedirectToAxfPG&bypassPageCounterIncr=Y&retainAM=Y”;
    String paramURL = “&Parameter1=”+ param1+”&Parameter2=”+ param2;
    String finalURL = redirectURL+paramURL;
    Code part to open the url in a new browser/window
    If anybody can help me with these part, it will be a great help
    thanks a lot in advance
    Regards
    Poornima

    Hi Poornima ,
    Has your prob resolved ? Have you made Managed attachment working via standard adapter as per UCM Admin guide ?
    Configuring the Managed Attachments Solution - 11g Release 1 (11.1.1)
    1. You have first store in some VO if you want to pass this metadata to UCM page , other wise it will not work .Take temp table /VO to store first then same can passed to UCM page as input parameters
    2.What needs to be passed , please refer webcenter guide with key examples given
    Once it is configured properly automatically params will be associated with URL which actually will open UCM page with metadata ( params) being passed.
    Thanks,
    Ashish

  • File Browser Window

    Can you guys help me to open a browser window for selecting a
    file name in Forms 4.5
    Thanks in advance.

    Ja esta descoberto !!!
    PROCEDURE browse_fx IS
    nomefx varchar2(20);
    BEGIN
    nomefx := Win_Api_Dialog.Open_File('Escolha o
    FX','C:\TEMP','Todos (*.*)
    |*.*|',TRUE,WIN_API.OFN_FLAG_DEFAULT,FALSE);
    :mapiole.attch := nomefx;
    END;

  • Open Portal Transaction iView in new window *without* Browser window

    Hello,
    Currently i am testing to use the single-sign-on functionality of the portal to launch the SAP GUI for Windows.
    I created some Transaction iViews and they work perfectly without having to log in.
    To use the full GUI size of the SAPGUI in the iView, i configured it to open up in a seperate window. This also works perfectly, but when i let a colleague test the setup, i realized that he has some additional toolbars, which in return decreased the usable space in the browser window for the SAP GUI.
    Now my question is:
    How can i configure the Transaction iView to open up the given transaction in the SAP GUI, but without the surrounding Browser?
    Is this even possible?
    I test this because my comany is searching for a solution to use SSO with the SAP GUI. Since we have the portal we test if we could use it to realize this requirement without generating extra costs.

    Hi Armin,
    for iView (page) you probably set the property 'Launch in New Window' to value Display in Separate Window. To tune up the other otions you have the possibility to set the property Window Features, value should contain toolbar=no. These features will be used when Javascript opens up your window - you can apply any option coomonly documented. IMHO for your demands the best option is fullscreen=yes,toolbar=no - you get really the maximum possible size.
    Regards,
    Pavol

Maybe you are looking for