Hiding "Personalize View" in My Tasks iView

Hi,
I'm looking to hide the "Personalize View" button on the My tasks iView supplied by SAP on EP6 SP12.  This option does not appear to be available as a normal iView configuration option.
You can see a screen shot here: <a href="http://public01.milton-keynes.gov.uk/Images/screen.jpg">http://public01.milton-keynes.gov.uk/Images/screen.jpg</a>
This iView uses the "Task Explorer" Layout set.  I have been playing with resource renderers for a while now, but I'm not totally clear on how I might use this method to get rid of the button.
Any help would be much appreciated.
Thanks in advance

Hi Thomas,
that was a bit hard stuff, I hope you'll appreciate the solution...
Under com.sap.netweaver.bc.uwl/private/classes/com/sap/netweaver/bc/uwl/core/config/xml/uwl.collaboration.xml,
delete within all "TaskView" <View's within the <Actions> part: <Action reference="personalize"/>
(Maybe also within other views, as you like/need it.)
You'll need to restart the portal.
(And obviously, you'll have to change some extra layout settings, as the pure result is not that nice .)
For the configuration approach, also see the PDF referred in this thread: Re: How to extend the drop down box of the Task priorities?
Hope it helps
Detlev
PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

Similar Messages

  • Problems with the "my tasks" iView

    Hello,
    we use the EP 6 SP 09.
    I have  problems with the "my tasks" iView (com.sap.netweaver.bc.uwl.ui.uwl). The first problem is, that the user get no e-mail if anybody give him a task (Options: Notification = Notify on Updates, Completion ...). The next problem I have is, if a user (without admin rights) click on the button "Personalize" he get an empty window. But a user with admin rights get the window with the "Personalize" view.
    Can anybody help me? Where are the possibility to customizing?
    kind regards
    Jochen Kormannshaus

    hi,
      The personalization tray is only visible if the iView tray is visible.So make sure that iView tray is visible.
    Also u can look into followinw links.
    https://weblogs.sdn.sap.com/weblogs/topic/22
    Think outside the box - enhance  processes with Universal Worklist Action Handlers!
    Regards mujjammil

  • How to make the CRM activity and task display in Portal UWL task iview ?

    Hello experts,
    I want that activity ,task and document in CRM inbox(t-code:sbwp) can be display in UWL task iview, and can pop-up to deal with when be clicked .
    The workflow type item in ERP can be display and open to deal with by default.
    But I need to the same function of CRM inbox content.
    I had done some configuration according to "Configuring the Business
    Package for SAP CRM 5.0 SP01.pdf".
    But it can't realized my requirement.
    How to do it ?
    BR,
    Jianguo Chen

    Go to View .. Bars... and enable the bar for Level of Effort activities. If it's not there, create one.

  • EP7, UWL, change Personalize View options

    Universal Worklist IView -> Personalize View
    We would like to remove all options from the Personalize View (e.g. attributes and their work order, sorting properties etc) except for "Items to be displayed per page" under the Data Properties heading. Does anyone know how to do this. For anyone answering, please note that I am not a portal administrator
    Many thanks
    Jon

    Hi Jon,
    there is no possibillity to configure the UWL personalization iView itself (pcd:portal_content/every_user/general/uwl/com.sap.netweaver.bc.uwl.ui.uwlPersonalization).
    You only can remove the "personalize" menu item completely.
    So if you want to implement your requirement you need to modify the UWL personalization iView or develop your own.
    Regards,
    Sascha

  • Enhancement of Tasks iView

    Hello,
    i want to enhance the Collaboration Tasks iView. The iView is existing in our EP.
    What are the steps to get the sources and make some changings in the iView?
    Regards Daniel

    Hi Daniel,
    > Aren't the SAP Packages deliverd
    > with source files normally?
    No, they are not.
    SAP has the big ABAP background, and with this, it was totally "normal" to deliver the source code. Not only this, there have been (I should use the present: are)different techniques to extend the standard functionality.
    With using Java, this was somewhat changed. SAP chose something like a middle course, they did not deliver the source code, but at the same time, did not obfuscate the class files. That's enough message: We <i>enable</i> customers and partners to decompile and if needed to modify the sources, but we do not <i>support</i> it.
    In the meantime, there are different strategies to extend the sources where needed by using standard Java techniques; one example is FlexibleUI, another are the extension points in the Room API (very interesting thing!).
    Nevertheless, you will find different things really hardcoded sometimes, where a customer just needs a change - no chance without modification. This is to some extend daily business, for me as for SAP.
    At the same time, there are so many undocumented features where you cannot learn anything but from decompiling, that a decompiler is the EPs developers best friend.
    So, don't get too frighten from this discussion - if you really need some modification, you can learn how to do it. But, as posted in my first answer, you should really know what you are doing. SAP EP developers shouldn't start with a three-month-modification project... (in fact, I did, and it was horrible and extremly instructive at the same time, but I wouldn't advise anyone else to do so).
    > i think there is no way to modify the iView
    There is. But think twice. And don't do it without some fundamental knowledge of the EP development possibilities.
    Hope it helps
    Detlev

  • How to navigate directly to a view in a task flow

    I have several feature requests that will require me to persist a page and navigate back to it at a later time. These features are things like Recent Items, Favorites, and Breadcrumbs.
    In our app we are using bounded task flows and page fragments.
    I have figured out how to get the view ID and task flow ID of the current page. I am doing this by using a task flow initializer and a region navigation listener. What I can't figure out is how to make use of these when the user wants to navigate to a particular view in a task flow. I can navigate to a task flow by replacing the taskFlowId on a dynamic region. However, I haven't figured out how to navigate to a view (other than the default) in a task flow.
    Am I on the right track here? If so, what should I try next? If not, can you suggest a better method for implementing these features?
    Thanks!!
    Mike

    Thanks for the reply. I tried your suggestion of redirecting to the view activity URL using the code below.
    ControllerContext controllerContext = ControllerContext.getInstance();
    String viewId = "RootFlow1/PageOne";
    String url = controllerContext.getGlobalViewActivityURL(viewId);
    System.out.println(url);
    FacesContext.getCurrentInstance().getExternalContext().redirect(url);
    the sysout prints the URL below
    /TestUIShell-ViewController-context-root/faces/RootFlow1/PageOne?_adf.ctrl-state=qlewpla4_41
    However, I get a 404, saying that it can't find the page. I tried modifying some of the flow settings to get it to work. I set the redirect property on the view to true and the URL Invoke visiblity on the flow to url-invoke-allowed, but I still get a 404. What am I missing?
    To give you more info about our app, we are using an outer page template to define the layout of the app (like the Fusion UIShell) and an inner page template to define the main area where pages will be rendered. Navigation is achieved by putting the main area flow in a dynamic region. When the user clicks a lnk, we swap out the task flow id on the region. Once they are in the region, navigation is normal ADF navigation within just that region.
    I read both of the threads that you referenced, but I don't see anything in there that I can use (maybe I'm missing it). Are there other ways to navigate to a view in a flow that I am missing?
    Thanks!!
    Mike

  • Showing views in UWL Overview iview  based on role...

    Hi,
    is there any way to show the views based on the roles  under UWL Overview ivew.. i need to show the views based on the assigned roles...currently it is displaying all the views to all the users..
    one more thing.. we have any limitatin like we have to use only 7 views under UWL Overview iview..?
    thanks in advance..
    regards
    vijay

    NA

  • Edit the 'New Task' iView

    Hello!
    I want to know if there's a way to edit the 'New Task' iView from the Universal Worklist iview (com.sap.netweaver.bc.uwl.ui.UWL).
    I want to put a specific USER in the field 'Assigned to' and make it fixed, where the user could not change it.
    Is it possible ? how can it be done ?
    Thanks in advance,
    Alessandro

    Hello Alessandro,
    New UWL Task iView is based on an WebDynpro application. There are two ways to accomplish your task:
    1) Write your own, completely new, application
    2) Use and modify existing standard one.
    No doubt, second approach is easier.
    You are interested in application
    tckmcbc.uwl.ui~wd_ui/UWL
    (WD Project : tckmcbc.uwl.ui~wd_ui ; Application : UWL)
    Workaround is following:
    1) download this app. from WEB AS
    2) import it into your NWDS, the sources are built in
    3) Modify UWL application (component)
    4) ... the most challenging point, depends on the access point you want to use your modified app. at.
    When deploying, you usually upload your application to "local" namespace. In this case, u have to modify the link of the command (button) that starts the wizard, to point it to your locally deployed app.
    Or you can (manually) modify the MANIFEST.MF and SAP-MANIFEST.MF files in result package (ear for WD), to change the "local" key-vendor and key-location values to [sap.com]. Then your application will replace standard one and will be used as default (no need to customize noth.).
    For example, we had a request to add "New UWL Task" button to Meeting detail iView (Collabotration). Another request was: automatically set the meeting Subject to UWL task name.  To do so, we had do decompile standard MeetingOverview functionality and ad another button "Create Task" to meeting detail page. Then this button was linked to our custom application. If you are interested, i could send you that WD UWL project, we've have prepared (to avoid steps 1-2).
    mz

  • Change 'New Task' iView

    Hi!
    I want to know if there's a way to edit the 'New Task' iView from the Collaboration Room.
    I want to put a specific group in the field 'Assigned to' and make it fixed, where the user could not change it.
    Is it possible ? If possible how can it be done ?
    Thanks,
    Luisa

    hello!!
    have you solved this problem?

  • Error while viewing ESS 60.2 iviews

    Hi,
    We are running ECC5 backend and EP6SP9. I have done the following :
    1)Applied via SDM the XSS components and ESS 60.2 BUSINESS Package in EP6
    2)Configured SLD
    3)Create/Maintain necessary Jco Destinations
    4)Create System landscape (SAP_Webdynpro_XSS and maintained the settings for this system)
    When I try to access any ESS webdynpro iviews from the portal, I get the following error
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    Exception condition "PROFILE_NOT_FOUND" raised., error key: RFC_ERROR_SYSTEM_FAILURE
    com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Exception condition "PROFILE_NOT_FOUND" raised., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
         at com.sap.xss.ser.xssmenu.fc.ModelHandler.onInit(ModelHandler.java:204)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalModelHandler.onInit(InternalModelHandler.java:398)
         at com.sap.xss.ser.xssmenu.fc.FcXssMenu.onInit(FcXssMenu.java:255)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalFcXssMenu.onInit(InternalFcXssMenu.java:443)
         at com.sap.xss.ser.xssmenu.fc.FcXssMenuInterface.onInit(FcXssMenuInterface.java:169)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalFcXssMenuInterface.onInit(InternalFcXssMenuInterface.java:386)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalFcXssMenuInterface$External.onInit(InternalFcXssMenuInterface.java:531)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:774)
         at com.sap.xss.ser.xssmenu.vc.header.VcXssMenuHeader.onInit(VcXssMenuHeader.java:196)
         at com.sap.xss.ser.xssmenu.vc.header.wdp.InternalVcXssMenuHeader.onInit(InternalVcXssMenuHeader.java:225)
         at com.sap.xss.ser.xssmenu.vc.header.VcXssMenuHeaderInterface.onInit(VcXssMenuHeaderInterface.java:162)
         at com.sap.xss.ser.xssmenu.vc.header.wdp.InternalVcXssMenuHeaderInterface.onInit(InternalVcXssMenuHeaderInterface.java:144)
         at com.sap.xss.ser.xssmenu.vc.header.wdp.InternalVcXssMenuHeaderInterface$External.onInit(InternalVcXssMenuHeaderInterface.java:220)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:466)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:354)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:179)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:95)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:346)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:370)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:608)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:248)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         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:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    Caused by: com.sap.aii.proxy.framework.core.BaseProxyException: Exception condition "PROFILE_NOT_FOUND" raised., error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
         at com.sap.pcuigp.xssutils.xssmenu.model.MenuModel.hrxss_Ser_Getmenudata(MenuModel.java:171)
         at com.sap.pcuigp.xssutils.xssmenu.model.Hrxss_Ser_Getmenudata_Input.doExecute(Hrxss_Ser_Getmenudata_Input.java:137)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92)
         ... 44 more

    Hi, 
    the problem got resolved ....
    after applying support pack SAPKGPHC06 (note 793609)
    Now I am able to see the ESS views.
    1>But when i click on any link inside..it again asks for user/password...On entering the user/password, it takes the user/password.But the same user/password screen appears.
    i.e it is failing to access data from backend....
    I have already created a system with alias 'SAP_Webdynpro_XSS'. and done user mapping with the ess user.
    Could anyone please look into this issue
    2>Also, I have created the JCO destinations and given the ess user id and password here. I tested it succesfully....
    when i login with this user,after sometime it gives me an error as follows
    Connection pool SAP_R3_SelfServiceGenerics_P00200004_EN_useDefinedUser is exhausted. The current pool size limit is 10 connections.com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool
    SAP_R3_SelfServiceGenerics_P00200004_EN_useDefinedUser is exhausted. The current pool size limit is 10 connections.
         at com.sap.mw.jco.JCO$Pool.getClient(JCO.java:5284)
         at com.sap.mw.jco.JCO$PoolManager.getClient(JCO.java:5985)
         at com.sap.mw.jco.JCO$PoolManager.getClient(JCO.java:5935)
         at com.sap.mw.jco.JCO.getClient(JCO.java:8216)
         at com.sap.tc.webdynpro.serverimpl.core.sl.AbstractJCOClientConnection.getClient(AbstractJCOClientConnection.java:415)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModelInternal(BackendConnections.java:261)
         at com.sap.pcuigp.xssfpm.wd.BackendConnections.connectModel(BackendConnections.java:161)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.connectModel(InternalBackendConnections.java:183)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.connectModel(FPMComponent.java:703)
         at com.sap.xss.ser.xssmenu.fc.ModelHandler.onInit(ModelHandler.java:203)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalModelHandler.onInit(InternalModelHandler.java:398)
         at com.sap.xss.ser.xssmenu.fc.FcXssMenu.onInit(FcXssMenu.java:255)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalFcXssMenu.onInit(InternalFcXssMenu.java:443)
         at com.sap.xss.ser.xssmenu.fc.FcXssMenuInterface.onInit(FcXssMenuInterface.java:169)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalFcXssMenuInterface.onInit(InternalFcXssMenuInterface.java:386)
         at com.sap.xss.ser.xssmenu.fc.wdp.InternalFcXssMenuInterface$External.onInit(InternalFcXssMenuInterface.java:531)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:774)
         at com.sap.xss.ser.xssmenu.vc.header.VcXssMenuHeader.onInit(VcXssMenuHeader.java:196)
         at com.sap.xss.ser.xssmenu.vc.header.wdp.InternalVcXssMenuHeader.onInit(InternalVcXssMenuHeader.java:225)
         at com.sap.xss.ser.xssmenu.vc.header.VcXssMenuHeaderInterface.onInit(VcXssMenuHeaderInterface.java:162)
         at com.sap.xss.ser.xssmenu.vc.header.wdp.InternalVcXssMenuHeaderInterface.onInit(InternalVcXssMenuHeaderInterface.java:144)
         at com.sap.xss.ser.xssmenu.vc.header.wdp.InternalVcXssMenuHeaderInterface$External.onInit(InternalVcXssMenuHeaderInterface.java:220)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doProcessEvent(FPMComponent.java:466)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.doEventLoop(FPMComponent.java:354)
         at com.sap.pcuigp.xssfpm.wd.FPMComponent.wdDoInit(FPMComponent.java:179)
         at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdDoInit(InternalFPMComponent.java:110)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:95)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:346)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:370)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:608)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:248)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:55)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         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:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)
    Can anyone provide some help on this.....Should i change my Connection pool settings in JCO pool connections ?
    also, is there any help or docs on configuring ESS 60.2 with EP6 (SP13) and backend connectivity
    Thanks and Regards
    Reshma

  • Functunality of save view in BW report iview

    Dear all,
    When SAP BW Query report iview is called in portal, u will get Save view, Bookmark, variableSreen...etc buttons.. When u click on saveview button...it will ask u to save as a view of that report with specific name.
    My question is, where it will get stored.?
    How to retrieve back those views?
    Regards,
    Sithi

    Hi,
    <b>Where it will get stored and how to retrieve back those views? </b>
    As mentioned by Durairaj, the view would be available in the saved views of BW System. To have a look follow these steps:
    1) Go to Programs -> Business Explorer -> Analyser
    2) From the BW Toolbar -> Click on folder icon (open) -> Saved views
    3) This will prompt you to logon
    4) Search for the technical name you had given. You will find it there.
    <b>How to retrive and view in portal.</b>
    As mentioned above, you can retrieve it back from the BW System. Now, as to how to view it on Portal, this is exactly the same report which you had opened and saved with a different technical name. Which means, only the technical name has changed but the query string still remains the same and thereby the report is still the same.
    <b>Once he saved the view, all other who login and view the report in portal, they should see only the view saved by the administator.</b>
    But this report still remains the same. This view is no different from the report which you opened and then saved with a different technical name.
    <b>I want to hide the save view option in the report</b>
    Not sure if you can do this for a set of users.
    Regards,
    Sunil

  • In Substitution rule view only one task "All" is coming

    Hi! All,
    I am facing very strange problem in UWL. Recently we upgraded our SAP Portal from SP10 TO SP15 but in Manage Substitution Rule view under Assign these task drop down we are getting only one task i.e 'All'. Remaining 3 tasks are gone.
    Can you help me in resolving this issue please..
    Thanks and Advance.
    Thanks and Regards,
    M.D.Sahu

    Hi,
    You had upgrade from SP10 to Sp25, wich version? 6.40 or 7.00?
    Please find for OSS notes from
    UWL 6.40 SP15
    UWL 7.00 SP15
    for example, I don't have your portal version, I can't help much more on this. I worked with the UWL, and this I'd very issues with Substitution Rules...
    BR
    Joã

  • Problem in assigning Webdynpro view to BPM task

    hello all,
    I have a webdynpro application using EJB Model. Now I am trying to embed this application into BPM. When I am assigning the view to a bpm task then it will show error that data type not supported like that.
    In Component Controller's context and Interface's context I am using context node through model node binding and in the model node i am using some Java Native datatypes like java.util.Date/java.lang.Long etc that are not supported in BPM tasks i think.
    How can I handle this prob. thks in advance. It will very useful for me if somebody have some example that uses the webdynpro views along with EJB Model in that.

    Hi kapitsu,
    not every data type is suppported by BPM.
    May you have a look at
    [Data Type Compatibility|https://help.sap.com/saphelp_nwce711/helpdata/en/63/9f9ca5bb234502bd7b02c91ac6040a/content.htm]
    Or at
    [SAP Message 1266539|https://websmp130.sap-ag.de/sap%28bD1kZSZjPTAwMQ==%29/bc/bsp/spn/sapnotes/index2.htm?numm=1266539]
    There are also some examples where it works:
    [CE 7.1 Samples|SAP NetWeaver Composition Environment Samples Center ]
    [Modeling Your First Process with SAP NetWeaver Business Process Management|SAP NetWeaver Business Process Management Resource Center;
    Maybe it helps.

  • 4.1 SP1 Issue with adding a View to a Task

    After creating a new View and Rule, I bind the Rule to the View.  If I attempt to add the View to an existing Task, I get a message stating that the View has no Rule bindings.  The error doesn't occur if I bind the View to the Rule, but binding View to Rule is more cumbersome.  Do you know what might be happening in the background to cause this problem, and how it can be corrected? 

    Trish Pedersen,
    Can you see the usage of this view and ensure that it has one or more rule associated.
    Regards

  • Issue with viewing SAP Dashboards Portal iView in iPad Safari browser (Mobile)

    Hi,
    I am facing an issue while viewing iViews hosted in SAP Enterprise Portal. I have two iViews -
    1) An SAP BICS Dashboard - Published as an iView in EP. I can see the dashboard in my laptop running properly. It consumes BEx queries (BICS dashboard) in the background.
    2) A BEx query published as an iView (java web format), also able to run and execute from my laptop.
    When I am logging into the portal from IPad Safari web browser I am able to see and run the BEx query iView published in the portal.
    However, for the SAP Dashboard iView, it is showing me a blank page after loading. Is it possible to see SAP BICS Dashboard through an iView in Ipad?
    I need to run the dashboard iView from the IPad as well. It is an urgent requirement
    Would really appreciate your help!!
    Thanks,
    Debtanay
    Message was edited by: Anja Engelhardt

    Hi,
    Don't spend your time to find the reason.
    BI platform content is not supported directly in Safari on iPad or Chrome on Android, only through the Mobile BI apps on these platforms.
    Please see PAM chapter "SAP BusinessObjects BI Platform 4.1 Mobile Clients supported with this release"
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/507d3365-009b-3010-04b0-e5abc8f00c91?QuickLink=index&overridelayout=true&59407987714033
    Best regards,
    Roman

Maybe you are looking for