Dynamic path in km navigation iview

Hi ,
We have a km navigation iview where we need to display folder based on the user details in portal.
ie if user A logs in the folder path should be xxx/yyy/A
if user B logs in path should be xxx/yyyy/B
Please let me know if there is anyway to handle this reuirement by creating a single iview.
Thanks in Advance

Dear KGMuku,
I think you can do it directly assigning to particular folder to user or group.
GIve permission to user A to folder A and user B to folder. you can remove the default group or user from folder permission and assign to specific users.
Best Regards
Arun Jaiswal

Similar Messages

  • [b]Current path[/b] [b]navigation iview[/b].

    Hi¡¡¡
    Anyone knows how to retrieve programmatically the
    current path (the path of the opened resource) from a running navigation iview.I´m able to obtain the initial path only.
    Thnx.

    Hi Jon,
    Normally, this isn't possible if the original iView doesn't for example throws client side events (EPCF) or "publically" stores some information within the HttpSession.
    You can read the whole HttpSession object, if you are lucky and the nav iView implementation in fact stores such information somewhere within the session. But even if it does, it's nothing that's documented, so be careful, if you would find something like that, it might have gone in some upcoming release!
    Hope it helps
    Detlev

  • How to pass the "path" dynamically to KM navigation iView ?

    HI Experts.
    This is my issue:
    I have a WD Java iView, with a data table.
    In the same page, I have a KM navigation iview too.
    Conceptually, each row in this table, have some documents in a CM Repository asociated.
    This repository has subfolders for each master data in the table.
    (example: imagine a table with material master data, and a repository with a subfolder for each material,
    and inside of it, several unstructure documents about this material.
    Then, I need to call a KM Navigation iview when click a table row, passing parameters, in special the "path".
    I am using this code in my action (triggered from webdynpro iview)
         WDPortalNavigation.navigateAbsolute("ROLES://portal_content/com.stk.demos.folders.zz_demos/com.stk.demo.ch.TEST_CH/com.stk.demo.ch.Listar_Docs",
         WDPortalNavigationMode.SHOW_EXTERNAL, (String)null, (String)null,
         WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS, "test",
         (String)null, (String)null );
    Partially it works, the window open and show the navigation iview, but...
    in the root directory (or directory indicated in iView harcoded properties);
    But I need pass the path !
    How can I call that iView, dinamically using a parameter, the path (property ID: path)
    to the KM navigation iView, in order to open initially in a indicated path?)
    I have read this link
    http://help.sap.com/saphelp_nw04s/helpdata/en/c3/235a428a1e9041e10000000a1550b0/frameset.htm
    but, I still can't understand how to use this parameters.
    Thanks in Advance.
    Leandro.

    Hi Leandro,
    You can create your own proxy IView and then redirect it to KM Navigation IView.
    This way you can dynamically change the path.
    Check this to know about proxy IView:
    KM Document Iview Source Code
    /thread/190600 [original link is broken]
    Regards,
    Praveen Gudapati

  • Understanding Dynamic Navigation iview.....

    In MSS, I have the following workset in my role...
    ->Team (workset)
       ---+ Team (webdynpro proxy page)
       ---+ Employee information (folder)
       ---+ Employee Working Time (folder)
       etc....
    The "Team webdynpro proxy page" has an iview ,"Services", assigned in "Dynamic Navigation" but there is nothing particular about that iView itself. However, all folders (and their contents) below the Team webdynpro proxy page appear in the Dynamic Navigation panel (like "Employee information" and "Employee Working Time"). I do not understand the connection between the dynamic navigation iview and how all folders in that workset know to display in that dynamic navigation area. There seems to be no explicit assignment. How does that work?
    edit: a bit more info....the "Services" iview is part of the Common Parts business package and based off the "related services" iview template. Still not sure how it "knows" to display the objects below that page that has it assigned as dynamic nav.

    Did you blog about this solution?  If so could you direct me to the blog?  We need to add numerous links to outside URLs in Related links.  I need to order them somewhat differently than alphabetically.
    Thank you,
    D. Maupin
    University of Kentucky

  • Dynamic Navigation iView ordering

    Hi,
    We have a problem with ordering iViews in the Dynamic Navigation of pages. We had this issue during SP11 and SAP was upposed to fix this in SP16. We have upgraded to SP16 now. Just want to confirm that this problem is not solved yet (atleast not using the sort priority).
    Also, are there any workarounds to acheive this?
    Nirav

    Hi Nirav,
    Have a look at Configuring the Sorting of Dynamic Navigation iViews:
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm
    Let me know if it helps, 
    Cheers
    Jim

  • No Dynamic navigation iView inside a room

    Hi
    My problem is that when i create a room based on SAP_Project_template_2 the iViews that were in navigation panel like my rooms, room menbers, related rooms doesn't appear.
    I've checked if the dynamic, related links... iviews in the innerpage that i use are visible and fixed and is set to yes.
    The curious thing is that this iViews are visible out of the room.
    What happens? I don't understand...
    Thanks
    Guillermo

    Nobody?

  • Pass parameter from dynamic navigation iView to WebDynpro iView

    Hi All,
    I know there are a lot of threads dealing with passing paramters from EP to WebDynpro using EPCM but actually I didn´t find a solution for my problem.
    I have in the dynamic navigation area of the SAP Portal an iView based on a JSP dynpage. In the corresponding JSP I fire an EPCM-event:
    EPCM.raiseEvent("urn:test.de:wochenb" , "passDataToWebDynpro" , evtData);
    In the content area there is a WebDynpro iView. In this WebDynpro-application I subscribe to the event in the wdDoInit-method of a view:
    WDPortalEventing.subscribe("urn:test.de:wochenb" , "passDataToWebDynpro" ,wdThis.wdGetDataFromJSPDynpageAction());
    and I have an event-handler:
    public void onActionDataFromJSPDynpage(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String dataObject )
        //@@begin onActionDataFromJSPDynpage(ServerEvent)
         IWDMessageManager manager = wdComponentAPI.getMessageManager();
         manager.reportSuccess("EPCM event testing " + dataObject);
      //@@end
    My problem is now that the event is fired correctly by the JSP Dynpage but the event-handler of the WebDynpro is never executed.
    As info: the domain of the J2EE-Server the webdynpro-application is deployed to is identical to the J2EE-Server the portal runs on.
    Can anybody help ?
    Thanks !
    Bernd

    Hi All,
    I found the solution by myself.
    For information: Click in the dynamic navigation fires the event und forces the content afterwards to refresh. During the refresh the WebDynpro subscribes to the event in the wdDoInit-Method. This is to late because the event is fired before the refresh.
    My solution is to use a setTimeout before the event-triggering in the dynamic navigation iView.
    Regards,
    Bernd

  • Recover a dynamic navigation iview

    Hi. I have closed a notifications dynamic navigation iview and I can't recover it. I don't know if I have to configure something.
    Thanks a lot!

    Hi Roberto,
    What do you mean by closed a notifications dynamic navigation iview.Actually wht did you do ?
    Could you elaborate ?
    Thanks,
    Samta

  • Passing Parameter to StartUri property of KM Navigation iview

    Dear Experts
    I want to send the parameter to the StartUri property of the KM Navigation iview dynamically. I am having a page with a KM Document iview and a KM Navigation iview. Dynamically I need to pass the parameter to the KM Navigation iview is this possible
    Regards
    Noel Maria Deepak

    Hi,
    I don't know if it is usefull for you...
    http://scn.sap.com/message/699658#699658
    As you can see, that link let to set the Layout Set of KM Navigation iView via rndLayoutSet parameter.
    To set paths use path and StartUri for "Path to Initially Displayed Folder" and "Path to Root Folder for Navigation" attributes, respectively.
    Hope this help
    Cheers

  • Need to Download documents from Km which are shown thru Navigation iview

    HI,
    I have created a KM navigation Iview and gave the path of documents which are stored in KM.
    Now the documents are in KM and can be shown by this iview.
    When i click on any document, it is getting opened automatically.
    But i dont want this way, when the user clicks on document a pop-up should be given to download the document.
    can i know how is it possible?
    Also just beside the document, when i click on breadcrumb i can see many options like save, copy, rename....etc.
    where i dont what to shown this all options beside documents.
    Can you please tell me how to remove this breadcrumb for some particular documents.
    Regards,
    Raju
    Edited by: V R K Raju P on Jul 20, 2009 7:30 PM
    Edited by: V R K Raju P on Jul 20, 2009 7:31 PM

    Hello, you can achieve this creating a custom layout set. To do so, go to
    System Administration > System Configuration > Knowledge Management > Content Management > User Interface > Settings > Layout Set
    Choose a layout set - Consumer Explorer for example - check it and select Advanced Copy
    Under Scope of Duplication leave only Collection Renderer Settings checked
    Under Naming Conventions fill the blanks as your needs (I usually add company name as prefix)
    Click on Execute, your layout set is now created.
    Search for it and click to display its properties, there you'll find the four main items that compose a LayoutSet:
    - Layout Controller
    - Collection Renderer
    - Resource Renderer
    - Commands for Details Menu
    You wanna work on the Collection Renderer, notice it's a custom one created during the copy. Select it to edit to chage settings.
    Put the following entry under Displayed Properties:
    rnd:icon,rnd:displayname(contentLink),rnd:command(command=download/style=icon),contentlength,modified
    Save.
    On your KM Navigation iView set the Layout Set property with this one you've just created.
    This should do the basics you're asking:
    - a link to download the documents
    - no context menu with undesired commands
    In this scenario I've eliminated complety the context menu, if you want to have the menu with just
    some options you must work on UI Commands and UI Commands Group, which I suggest doing after
    you have basics knowledge on layout sets only..
    You can find on SDN lots of documents and threads about KM User Interface, have a special look into Layout Set, Collection Renderers and UI Commands/Groups
    kind regards,
    Rafael

  • Images are not loaded in KM Navigational iViews

    Hi All
    I have uploaded documents & folders in Content Management.
    Created KM navigational iViews, assigned to pages, worksets & role.
    Role has been granted to other users, and when they click on the role, images of documents types are not loaded. When I run the properties(Image) path its gives a portal exception.
    But when I login I see all the images loading perfectly.
    Please advise on this. Its an emergancy.
    Thanks to all.

    sk wrote:
    Hi,
    I'm facing problem while deploying apex listener in glassfish 3.0.1. So far I have done
    - Installed 10g XE
    - Installed APEX 4.0
    - Unlocked APEX_PUBLIC_USER account and reset the password
    - Installed Glassfish 3.0
    - Created admin and manager users
    - Deployed apex.war
    - Created "i" folder in C:\glassfishv3\glassfish\domains\domain1\docroot and copied images from APEX directory
    - Completed listener configuration http://127.0.0.1:9090/apex/listenerConfigure
    When I try to open the Apex page http://127.0.0.1:9090/apex images and css are not loaded. Already I have spent a day, went thro documentations and I couldn't figure out what I'm doing wrong. Can someone help on this please?
    SKHi,
    I have the same problem. But , under user "root" everything works fine, under user "oracle" images are not loaded. User oracle are owner folder where glassfish installed.
    And one more problem. Apex Listener doesn't understand role Admin and user adminlistener. Every time I have recieved message : access denied.
    Please, help me ((
    Sorry for my bad english,
    Egor Karmanov
    Edited by: 843328 on 10.03.2011 2:41

  • Navigation iView source

    Hi all,
    I know the position of SDN and this kind of question shouldn't exist. But with the time pressure, we need to implement something pretty the same as Navigation iView but with some extra functionalities, for example display html files stored in the folder.
    Its very hard to find any relevant info and re-develop what has already exist is really not ideal. However, i realize the situation here, so if anyone could just point me, for example, name of the deployed par file will be really appreciate.
    Thanks in advance!

    Are you looking for the par file related to KM Navigation iview
    Go to the path System admin -> Support -> poral runtime -> Browse Deployment and
    ROOT/WEB-INF/deployment/pcdContent
    Check for the Com.sap.km.Navigation.
    Raghu

  • Error In KM navigation iview

    Hi all,
    I have created a KM navigation iview,when i perview this i am getting this error
    System Error
    An exception occurred during the program execution. Below you will find technical information pertaining to this exception that you might want to forward to your system administrator.
    Exception Class : class com.sapportals.wcm.repository.NotSupportedException
    Exception Message : Not Implemented
    Detail exception is something like this..
    com.sapportals.wcm.repository.NotSupportedException: Not Implemented
            at com.sapportals.wcm.repository.ResourceException.fillInStackTrace(ResourceException.java:399)
            at java.lang.Throwable.(Throwable.java:195)
            at java.lang.Exception.(Exception.java:41)
            at com.sapportals.wcm.WcmException.(WcmException.java:59)
            at com.sapportals.wcm.util.content.ContentException.(ContentException.java:38)
            at com.sapportals.wcm.repository.ResourceException.(ResourceException.java:162)
            at com.sapportals.wcm.repository.NotSupportedException.(NotSupportedException.java:63)
            at com.sapportals.wcm.protocol.webdav.WDHttp.exception(WDHttp.java:128)
            at com.sapportals.wcm.protocol.webdav.WDHttp.exception(WDHttp.java:49)
            at com.sapportals.wcm.protocol.webdav.WDHttp.exception(WDHttp.java:35)
            at com.sapportals.wcm.repository.manager.webdav.cache.WDResourceCache.retrieveProperties(WDResourceCache.java:874)
            at com.sapportals.wcm.repository.manager.webdav.cache.WDResourceCache.retrieveProperties(WDResourceCache.java:723)
            at com.sapportals.wcm.repository.manager.webdav.cache.WDResourceCache.getResource(WDResourceCache.java:1122)
            at com.sapportals.wcm.repository.manager.webdav.cache.WDResourceCache.getResource(WDResourceCache.java:1063)
            at com.sapportals.wcm.repository.manager.webdav.cache.WDResourceCache.getResource(WDResourceCache.java:444)
            at com.sapportals.wcm.repository.manager.webdav.cache.WDCacheFactory$LiveCache.getResource(WDCacheFactory.java:249)
            at com.sapportals.wcm.repository.manager.webdav.WDRepositoryManager.getResource(WDRepositoryManager.java:99)
            at com.sapportals.wcm.repository.RMAdapter.getResource(RMAdapter.java:227)
            at com.sapportals.wcm.repository.runtime.CmAdapter.findResource(CmAdapter.java:1349)
            at com.sapportals.wcm.repository.runtime.CmAdapter.findManagerAndResource(CmAdapter.java:1322)
            at com.sapportals.wcm.repository.runtime.CmAdapter.getResourceImpl(CmAdapter.java:979)
            at com.sapportals.wcm.repository.runtime.CmAdapter.getResource(CmAdapter.java:192)
            at com.sapportals.wcm.rendering.control.cm.WdfProxy.createResource(WdfProxy.java:2009)
            at com.sapportals.wcm.rendering.control.cm.WdfProxy.getUnsafeResource(WdfProxy.java:1984)
            at com.sapportals.wcm.rendering.control.cm.WdfProxy.getLayoutController(WdfProxy.java:1964)
            at com.sapportals.wcm.rendering.control.cm.WdfProxy.initialize(WdfProxy.java:2458)
            at com.sapportals.wdf.stack.Control.initializeImpl(Control.java:449)
            at com.sapportals.wdf.stack.Pane.initialize(Pane.java:510)
            at com.sapportals.wdf.stack.PaneStack.initialize(PaneStack.java:509)
            at com.sapportals.wdf.stack.Pane.initialize(Pane.java:504)
            at com.sapportals.wdf.stack.PaneStack.initialize(PaneStack.java:509)
            at com.sapportals.wdf.stack.Pane.initialize(Pane.java:504)
            at com.sapportals.wdf.stack.PaneStack.initialize(PaneStack.java:509)
            at com.sapportals.wdf.stack.Pane.initialize(Pane.java:504)
            at com.sapportals.wdf.stack.PaneStack.initialize(PaneStack.java:509)
            at com.sapportals.wdf.WdfCompositeController.doInitialization(WdfCompositeController.java:279)
            at com.sapportals.wdf.WdfCompositeController.buildComposition(WdfCompositeController.java:659)
            at com.sapportals.htmlb.AbstractCompositeComponent.preRender(AbstractCompositeComponent.java:33)
            at com.sapportals.htmlb.Container.preRender(Container.java:120)
            at com.sapportals.htmlb.Container.preRender(Container.java:120)
            at com.sapportals.htmlb.Container.preRender(Container.java:120)
            at com.sapportals.portal.htmlb.PrtContext.render(PrtContext.java:414)
            at com.sapportals.htmlb.page.DynPage.doOutput(DynPage.java:237)
            at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doOutput(KMControllerDynPage.java:130)
            at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
            at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
            at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:73)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
            at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
            at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
            at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
            at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:545)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
            at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
            at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
            at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
            at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Any help will be highly appreciated!!
    Thanks,
    Ameya

    Hi,
    the scenario is, i am trying to integrate  file server, it has a virtual directory created on it, when i integrate this file server, a virtual directory folder will be available under my KM, now i want to give path of this folder, but problem is not in iview, its in folder, I am not able to find that folder, I think there is some problem in my integration.Do you have any idea on this?
    Regards,
    Ameya

  • KM Navigation iView and long Greek folder names

    We have a very serious problem. We are working in EP 6.0 SP2. Everything worked fine with patch 27 until we installed patch 30 to correct some other bugs. After patch 30, the KM navigation iViews with long folder names containing Greek characters, when we choose "Details" of a file, the iView ends with the error:
    com.sapportals.wdf.WdfError
    at com.sapportals.wdf.WdfCompositeController.initFromPageContext(WdfCompositeController.java:775)
    at com.sapportals.htmlb.Component.initializeFromId(Component.java:230).........
    I must clarify that everything works fine if you go to that file through Content Administration --> KM Content.
    Something is wrong with the KM Navigation iView.
    I searched the knowledgemanagement.log and I also noticed the following error:
    The combination of start-RID and current-RID is invalid. The given startRID /documents/Public Documents/ÏÐÁÐ Á.Å./Ã.Ä. ÄÉÏÉÊÇÔÉÊÇÓ ÕÐÏÓÔÇÑÉÎÇÓ & ÏÑÃÁÍÙÓÇÓ ÕÐÇÑÅÓÉÙÍ/Ä. ÄÉÁ×ÅÉÑÉÓÇÓ ?????????©? ?% is not an ancestor of /documents/Public Documents/ÏÐÁÐ Á.Å./Ã.Ä. ÄÉÏÉÊÇÔÉÊÇÓ ÕÐÏÓÔÇÑÉÎÇÓ & ÏÑÃÁÍÙÓÇÓ ÕÐÇÑÅÓÉÙÍ/Ä. ÄÉÁ×ÅÉÑÉÓÇÓ ÁÍÈÑÙÐÉÍÏÕ ÄÕÍÁÌÉÊÏÕ/ÔÌ. ÃÑÁÌÌÁÔÅÉÁÓ & ÐÑÙÔÏÊÏËËÏÕ/ÅÉÓÅÑ×ÏÌÅÍÁ ÐÑÙÔÏÊÏËËÏÕ/Code Changes .rtf  
    If you ignore the greek letters, you will notice that the given startRID after a few letters lost the path but the ancestor didn't.
    Can anybody help me because all our work depends on that?

    We have the same problem, but without special characters.
    Nov 22, 2005 6:29:54 PM  (1132684194342) com.sapportals.wcm.control.base.Habitat [Client_Thread_6] Warning: The given startRID </less_docs> is not an ancestor of the given current RID </documents>. Using only the current RID.
    We have installed Patch 36.
    Have you find a solution for this problem?

  • KM navigation iView shows up as 'Root Folder'

    All,
    I am working on the Integration of SAP Portal and BOBJ. We were successful with the integration, however we have a small issue that we are trying to work on.
    The folder view of SAP BusinessObjects Enterprise repository content from KM navigation iView shows up as 'Root Folder', is it possible to change the name of this folder within SAP Portal and how would we go about doing it.
    Any thoughts would be appreciated.
    Thank you.
    P.S. Ingo Hilgefort, if you could please share your thoughts it would be appreciated.

    Toor, it does not make sense for you to modify the name of the Root Folder, nor can you.
    Open your KM Iview in edit mode.
    Find the code link field. It should be called com.sap.km.cm.navigation
    If so, look for the fields:
    Path to Initially Displayed Folder
    Path to Root Folder for Navigation
    they should be like:
    /alias/documents
    the folder documents is a folder in KM under the root folder. You can make this whatever you want.
    When you execute the iview you will be able to see the content on the /documents folder
    Hope this helps you, Mike

Maybe you are looking for

  • Printer installed but not responding to print jobs

    I'm not quite sure how to intelligently ask this question so let me describe what happened. I have a friend who asked for help in troubleshooting a problem with his printer.  His printer is a brand new HP Officejet 6600 sitting near his computer and

  • Display 2 different structured internal tables in single screen using ALV

    Hi, I have two internal tables. Both has different structures. My requirement is to display both the internal tables in single screen using ALV Grid but NOT using OO ALV Grid display. Is there any way of spliting the Final ALV display screen into two

  • Oracle Database 11gR1 Enterprise Manager Console Cannot Display in Browser

    Folks, Hello. I am running Oracle Database 11gR1 with Operaing System Oracle Linux 5. I have some issues regarding EM connects with the Database Server as below: First, the default listener is LISTENER with standard port number 1521 and protocol TCP/

  • Few Warp Stabilizer workflow questions

    I'm looking for the best workflow with warp stabilizar, because it consists in 90% of my edit work. This is my workflow at the moment: Start to add my trimmed clips in the Premiere timeline Right click the shaky clip and select "replace with AE compo

  • How do I remove duplicate Google accounts in the Contacts application?

    I reinstalled 10.9. I entered my iCloud credentials, and prevoius settings, including the Google account information appeared. I tried to log in to mail.google.com and Safari asked to add this account, to which I confirmed. Now I have two Google acco