Navigator Interface Web Window

Hi,
We have a web interface application:
Zxxxx(Web interface name)-> we have several links in the application. (hyperlink which points to external URL)
-> when you click on this link a new browser is opened.
-> I want the application to open in the same window as in the web interface application Zxxxx. To do so, we have configured in the web interface, for the link, in the last property (Target) with “_self”.
My requirement is to develop a button in the new browser which allows us to return to the Menu.
At the moment, we are using a “TEXT” object in the web interface; we created a “Return Menu” button using the java code below:
[b[ <u>href= "/sap/bc/bsp/sap/zmenuindicat/zmenuindicat.htm?sap-client=600&sap-language=FR" target="_self" class="sapBtnStd" OnMouseOver="javascript:window.status='Terminate'; returntrue;">Return Menu</span></span></a>[/</u></u>b]
However, we have a lock problem with this solution: they are not released when returning to the menu using the “Return Menu” button.
We would like to add in this javascript, a code which allows us to return to the menu with releasing the locks.
Thanks.
Message was edited by:
        Jacques Wickersheim
Message was edited by:
        Jacques Wickersheim

Hi,
first of all, thank you for your answer... It's the correct direction
Perhaps I should particularize my topic a little bit. Let's discribe it like this:
In order to exculpate your Service Center, you want to authorize all customers to create, to change, to track, to cancel service notifications in ERP-System R/3 (-> Web Application, without a data base!).
What I want to know is, which general possibilities do I have to connect the two "systems".
Philipp

Similar Messages

  • Window Navigation In Web Dynpro ABAP

    In one of our requirements we would have to make use of the suspend plug in Web Dynpro Abap. Would anyone happen to have any other information on this topic. Is there a sample program available which demonstrates the same?
    The requirement is that, I have to call an external window (output screen) from my present screen (input screen). While this external window is active, the calling window (input screen) should be disabled. When the external window (output screen) is closed the input screen should be enabled again. I have read that suspend/resume plugs can be used for this. However, I have not been able to figure out how to use them.
    As a starting point, it would help if I can find out how navigation between two windows (not views) can be achieved.

    You can enable and disable a view at least programmatically by binding the enabled property of all elements to one context variable and setting this to false when you navigate and back to true when you come back.
    With these special plugs I haven't worked at time.
    Frank

  • Open KM folder navigation in new window

    Hi Experts,
    We have created KM navigation iView to display the documents from a folder. We have a requirement to open the navigation in new window when click on the folder.
    For example path to documents are displaying from the /documents foder path as
    documents
      Test1.doc
      Test.html
    When I click on the documents folder, it should open the complete navigation in new window, at present it jsut refresh the page and render in the same window. Any one have idea whether to change in the Collection render or Resoure render class.
    Thanks,
    Chinna

    Hi
    Collection render com.sapportals.wcm.rendering.collection.cm.CollectionListRenderer is being used to render the columns. This class exists under com.sap.km.cm.ui.flex portalapps, which is WEB-INF/portal/portalapps/com.sap.km.cm.ui.flex/private/lib folder. If I need to create new collection render by extending this class do I need to make the changes in the existing app ( com.sap.km.cm.ui.flex).
    Can anyone suggest what is the approach to fulfill my requirement as in my first thread.
    Thanks
    Chinna.

  • SAP KM Navigation Interface - Custom Layoutset

    Hi All,
    I want to assign my Custom Layout set for the Context menu of the Portal root KM folder.
    Ex:
    For the portal URL, http://Host:Port/irj/go/km/docs, then it will show you the Navigation Interface link. On click of that, it will show the KM root folder and the chid folders in it.
    When you see the Context Menu of any of those folders, it shows lot of options. So I created a new Layout set without any options.
    Now I want to assign my custom Layout set to the KM Root folder as well as the children in it.
    I don't want to pass any parameter like rndLayoutset, etc.... and also note that I am not going to use the KM iViews.
    I want to assign my custom Layout set even when you access the KM without login as explained with the URL above.
    Thanks & Regards||
    Ashok M.

    Hi Ashok,
    > *I want to provide my Custom Layout set for the Root folder and it's child folders when I accessed the KM folders with the URL: http://Host:Port/irj/go/km/docs , by clicking the Navigation Interface link even without Login to the Portal. And for the Logged in Users, the Default Layout set should be applied.*
    >
    > Just to clear my requirement, I said that I am not using KM Iviews, or not appending any Parameters like rndLayoutSet
    When you open the URL you mentioned above and click on the "Navigation Interface" link, the same component is opened that lies behind the KM navigation iView (com.sap.km.cm.navigation). If you don't specify a Layout Set via parameter "rndLayoutSet" the default layout set is used that is configured in the KM configuration.
    There are a couple of different options how you can achieve what you are trying. I described them in detailed in my weblog: http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/10289
    Let me know if you have further questions,
    Robert

  • Can java interface with windows to do things

    Good evening
    I am a student and i am trying to do a project and i wanted to ask everyone here before i asked my teacher,
    what i am trying to do is this . create a class that can be run from the desktop that will give me a window of option to do following things
    1) install printer drivers
    2) run a uninstall program
    3) use keys like CTRL ALT SHIFT AND F6 to pop open windows, and is there a way that can have a password entered automatically?
    4) change registry keys
    5) call up reg keys
    6) copy files from one computer ( laptop ) to my lab class over the network onto a specific profile?
    if someone out there can just tell me weather or not Java has the capiablity of interfacing with windows control panel, or any of the above stuff let me know and just give me a push in the right direction Please.
    Derek

    Speaking of Java itself.
    1) install printer driversNo
    2) run a uninstall programNo
    3) use keys like CTRL ALT SHIFT AND F6 to pop open windows, and is there a way that can have a password entered automatically?Depends what you mean but you might be able to do this using the Robot (in the awt package.)
    4) change registry keysNo
    5) call up reg keysNo
    6) copy files from one computer ( laptop ) to my lab class over the network onto a specific profile?Depends on what you mean. Java can be used to send files to other computers. Doing that requires that you understand how the other computer (not your compute) processes are controlled.
    You can of course do all of the above with windows API (not java) calls. And this is the forum about the JNI interface which allows a Java program to access native APIs, like the Windows one. It does however require quite a bit of detail work in a language besides Java, like C or C++. It is going to be easier if you have quite a bit of experience with those. If not then plan on spending a lot of time learning (factor that into how long it will take to do your project.) And of course you would need to research the APIs for all of the above.
    If it matters the registry one is rather easy in terms of the windows API. And you can find many examples of C/C++ code to access it.

  • About the interface web oracle database express edition

    Hi
    I want execute a export from web interface I click on link "data" I choose the object table and after I click on link "download" but the file export at format csv contain only the lines which I see on the interface web .
    is it possible to export all rows of the table object in CSV file ?
    think

    There are many ways to skin that cat, i.e. just using sqlplus and spooling to a file:
    set pagesize 0 verify off feedback off linesize 500 trimspool on
    spool filename.csv
    select <col1> || ',' || <col2>[|| ','||<colN>] as csvout from <table>;
    spool off
    If there are date (or any of the timestamp) datatypes you'll want to be specific about the output format, i.e. use to_char( <col>, 'yyyymmdd hh24:mi:ss')...
    Also may want to have [var]char column values wrapped in single quotes, just add them in- i.e. ...''''||<col>||'''' it takes two single quotes inside a literal to get one in the output.
    There will still be some stuff in the spool file needing cleanup, like the 'spool off' command and an echo of the SQL if you're running sqlplus interactively, don't think there's any way to turn off that echo. 'set echo off' doesn't do it as one would think.
    Edited by: clcarter on Oct 31, 2012 10:31 AM
    nix the headings comment

  • Need IInputPanelConfiguration interface for windows 7

    Hi,
    https://msdn.microsoft.com/en-us/library/windows/desktop/jj126267(v=vs.85).aspx
    The given interface supports windows 8
    But, I need interface for windows 7.
    Please help
    Thanks,
    Pritesh

    I cannot find a interface with the same functionality in IInputPanelConfiguration in windows.
    Maybe you could try something like calling Process.Start(“C:…TabTip.exe”).
    http://blogs.msdn.com/b/patricka/archive/2011/04/29/developing-a-wpf-application-for-windows-7-touch.aspx
    Hope this helps some.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to fit photoshop CS5 'Save for web' window to Macbook Air 11"

    I have tried Photoshop CS5 on Macbook Air 11", however I realized that the 'Save for web' window which I always use is too big to fit into the 11" screen (The buttons kind of cut off at the bottom of the window). Anyone got any suggestion or solution for this? Thanks in advanced.

    Thanks Gene. Yes, I wanted to be able to easily access my Dropbox folder from the Save for Web window. I originally had wanted to be able to add the Dropbox icon on the left where the other icons are for Network, Libraries, Recent Items, and Computer are located. However, it may not be possible to do so. However, the link that you gave me allowed me to create a new Library that linked to my Dropbox folder so it's doing the exact same thing that I had wanted I'm just having to click on Libraries first. I can live with that    Thanks for the help!
    Nancy, it's okay. I've done it a million times too and I probably could have asked the question in a better way.  Thanks for the response!
    nicole

  • ACCESS_VIOLATION at AdobeOwl.dll when call Indesign com interface from windows service

    ACCESS_VIOLATION at AdobeOwl.dll when call Indesign CS3 COM interface from windows service application.
    Does anyone know how to workaround this issue ?

    As AdobeOwl.dll file is missing or corrupted, you need to get a new dll file. Here are the steps to replace setup.dll file
    Step 1. You can download missing AdobeOwl.dll here:
    http://dllcentral.com/AdobeOwl.dll/1.0.92/download/
    Step 2. Paste this file into your system32 or SyWOW64 folder.
    Step 3. Navigate to your System32(32Bit OS) or SyWOW64(64Bit OS) Folder.
    Note: The location of System32 and SyWOW64 is
    C:Windows\System32 (If you are using 32Bit Windows)
    C:\Windows\SysWOW64 (if you are using 64Bit Windows)
    Step 4. Paste the AdobeOwl.dll file into this folder.
    Step 5. Try to run it. It might work now. If not, restart your computer to restore it effectively.

  • In PS6 Navigator and Layers windows are locked together.  How do I unlock them?

    Whenever I open the Navigator and Layers windows in PS6, they are locked together side by side.
    Does anyone know how to unlock them.  This doesn't happen when I open any other windows.
    I'm using a PC.

    Is that photoshop 6 or photoshop cs6?
    Generally one can just separate them by dragging the name of the panel.
    (i.e. drag on the Navigator name)
    In photoshop cs6 you can reset the workspace by going to Window>Workspace or if you have a custom arrangement of your panels, you
    should get everything as you want it and then save your own named workspace, so you can reset it whenever things going awry.

  • Operator interface execution window is not getting activated-​cant terminate,​abort

    Hi all,
    I have sequence running in the operator interface which pops up a panel.It remains visible for some time and the value in a control of the panel is getting updated periodically .It is done using threads.After the panel pops up, until it goes off i am not able to operate with the controls in the operator interface execution window(terminate,abort,break).I changed the floating style of the panel as 'active when clicked on'.
    Regards,
    Radha R

    Radhu,
    Is this panel part of the Operator Interface or a dll function call from within your sequence. It sounds like its modal to the operator interface.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • I currently have a PC with Windows Outlook.  If I add an iPad to the mix, how does the iPad interface with Windows Outlook?

    I currently have a PC with Windows Outlook.  If I add an iPad to the mix, how does the iPad interface with Windows Outlook?

    Isn't Outlook simply an email client or a software application on a computer? You can add an email account - whatever email provider that you use - right on the iPad. You can sync your Outlook contacts and calendar if that is what you are asking about, but Outlook itself has nothing to do with the iPad.
    Message was edited by: Demo

  • Execute any sqls interface web SQL XE

    Hello!
    It is possible run many pl/sqls in interface web Oracle XE in the same execution?
    When a trie execute the commads below in a web interface of Oracle XE display a error:
    select sysdate from dual;
    select name from v$database;
    ORA-00911: invalid caracter
    Saída DBMS
    Any idea?

    user6298997 wrote:
    It is possible run many pl/sqls in interface web Oracle XE in the same execution?Yes. But do not confuse SQL with PL. SQL is a language. PL (Programming Language) is a language. PL/SQL allows you to code source SQL language statements inside PL.
    But it still remains two distinctly different languages.
    When a trie execute the commads below in a web interface of Oracle XE display a error:
    select sysdate from dual;
    select name from v$database;That is because executing "+many commands+" like this requires a PL/SQL anonymous block. For example:
    begin
      delete from mytab where id = 1;
      insert into mytab values( 1,2,3,4 );
      commit;
    end;This is PL code. PL allows us to use native SQL inside it. PL requires a command separator character - a semicolon.
    The SQL language does not support such block to enable to execute "+many commands+". SQL allows only a single command at a time. It does not need or use command separators.
    A client like SQL*Plus, enables one to enter a bunch of a SQL commands at the same time, and separate these with a semicolon. When it processes this, it reads a single SQL command at a time (it knows where the SQL ends due to the command separator character). It sends that SQL command (minus the trailing semicolon) to the server. The server executes it and returns a response. The client now automatically reads the next SQL command and repeats the process.
    And in a nutshell - this is how it works. SQL language only supports a single command. No command character separators. PL/SQL supports command blocks (and requires a separator between commands). The client itself can sequence SQL commands.
    What about using multiple SELECT commands? Well, you cannot string that together in a PL/SQL command block - as PL itself will execute it as the SQL client. It will receive that data from the SQL cursors. It needs to process/deal with that data.
    So you cannot string a bunch of SELECT commands together in a PL block and expect your client to display the results - as those results go to that PL program and not your client.
    In this case you need to look at what the client support in terms of sending a bunch of SQL SELECT commands, one at a time, to the Oracle server.

  • 2004s Navigation Pane web item customization

    Hello. I have a question regarding the navigation pane web item using the Web Application Designer 7.0. In the 3.5 version we had the capability of selecting specific characteristics to include in our navigation blocks. For example, our data provider might be an ad hoc query with numerous free characteristics. However, in the web template we would only include a subset of those characteristics in our navigation block.
    Now when using the 7.0 tool it appears as though when adding the navigation pane web item I can only select rows, columns, query view, or free characteristics. Is my only option to create a query view on my base ad hoc query to limit the characteristics I want?
    Any advice on this particular web item would be sincerely appreciated.
    Kind regards,
    Lynn Peter

    Lynn,
    I think what you may be after is called NAV_CHARACTERISTIC_SEL and is documented in the following page
    http://help.sap.com/saphelp_nw70/helpdata/en/16/3ee2416149c717e10000000a155106/content.htm
    From the SAP documentation this enhancement to the navigational pane should be available as part of SPS14.
    I hope this helps (we are also interested in this functionality.)
    Cheers
    Neal.

  • Navigation between Web Dynpro Windows

    Hi experts
    My requirement is to create two windows in the same Web DynPro component, then call up one of the Windows in an external page, so that the users can see both at the same time. I have looked at LinkToURL, but it does not appear to support this.
    Any help would be greatly appreciated!
    Regards
    Johan Kriek

    Hi Johan,
    use this code in action of any event, a button or link to action....
    DATA lo_window_manager TYPE REF TO if_wd_window_manager.
    DATA lo_api_component  TYPE REF TO if_wd_component.
    DATA lo_window         TYPE REF TO if_wd_window.
    lo_api_component  = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_api_component->get_window_manager( ).
    lo_window         = lo_window_manager->CREATE_EXTERNAL_WINDOW(
                       URL =
    'http://<server_name>/sap/bc/webdynpro/sap/ztesttab'
    *                  title                  =
    *                  close_in_any_case      = abap_true
    lo_window->open( ).
    you have to create an application and in that you have tyo give interface view as name of your view in popup window and give any plug even default will work...
    regards
    Pranav
    Edited by: Pranav Nagpal on Jan 19, 2009 11:31 AM

Maybe you are looking for