UWL Custom View Action

Hi all,
I try to implement a custom view action, i.e. an action that is assigned to a view (and not to an item type).
I face the following problem: The UWL system gets my custom action handler by calling IProviderConnector.getActionHandler() and checks if it is a launcher by calling isLauncher(), yet, the performAction() method of the returned ActionHandler is not called.
Thanks for your attention,
--Stefan

Hi all,
I got the problem solved in the meantime. Yet, I am not sure if the solution is correct.
I changed the method IProviderConnectorr.getAllActionsForItem(UWLContext aContext, Map aCurrentActions, Item anItem) to add the new custom action. For that means I instantiate an Action class with the same information I have already specified in the UWL XML configuration for the custom view action.
I do not like this solution because
1. In the program code I have to repeat the specifications already done in XML.
2. The IProviderConnector.getAllActionsForItem() method has an Item as a parameter. What happens if there is no Item available? Does the UWL system call the getAllActionsForItem method anyway?
Maybe someone can give me some insight???
Thanks for your attention,
--Stefan

Similar Messages

  • UWL custom view

    I'm not an espert by any means in this area but I am trying to add a custom view to the UWL with approve and reject buttons so the user does not have to open each workitem to process them. I have managed to get the subview to appear on the UWL but no workitems are in the list despite there being some in the main view. I have put the XML code below, anyone have any ideas what is wrong with it?
    Thanks
    Rob
    Code:
    <?xml version="1.0" encoding="UTF-8" ?>
      <!DOCTYPE UWLConfiguration (View Source for full doctype...)>
    - <UWLConfiguration version="1.0">
    - <ItemTypes>
    - <ItemType name="uwl.task.webflow.decision.TS92000003.Finance_and_HR" connector="WebFlowConnector" defaultView="myApprovalView" defaultAction="viewDetail" executionMode="default">
      <ItemTypeCriteria systemId="Finance_and_HR" externalType="TS92000003" connector="WebFlowConnector" />
    - <Actions>
    - <Action name="Approve" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="yes" launchInNewWindow="no" defaultGroupAction="no">
      <Descriptions default="Approve" />
      </Action>
    - <Action name="Reject" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="yes" launchInNewWindow="no" defaultGroupAction="no">
      <Descriptions default="Reject" />
      </Action>
      </Actions>
      </ItemType>
      </ItemTypes>
    - <Views>
    - <View name="myApprovalView" selectionMode="SINGLESELECT" width="98%" supportedItemTypes="uwl.task.webflow.TS92000003" columnOrder="statusIcon, subject, creatorID, createdDate, dueDate, priority, approveCol, rejectCol" sortby="createdDate:descend, priority:descend" tableDesign="STANDARD" visibleRowCount="10" headerVisible="yes" queryRange="undefined" tableNavigationFooterVisible="yes" tableNavigationType="CUSTOMNAV" actionRef="" refresh="-1" dueDateSevere="0" dueDateWarning="0" emphasizedItems="unread" displayOnlyDefinedAttributes="yes" dynamicCreationAllowed="yes" actionPosition="bottom" tableNavigationHeaderVisible="no">
    - <Descriptions default="Application Mass Approval">
    - <ShortDescriptions>
      <Description Language="en" Description="Application Approval" />
      </ShortDescriptions>
      </Descriptions>
    - <DisplayAttributes>
    - <DisplayAttribute name="rejectCol" type="checkbox" width="" sortable="no" format="default" actionRef="2" hAlign="CENTER" vAlign="TOP" maxTextWidth="0" headerVisible="yes">
    - <Descriptions default="">
    - <ShortDescriptions>
      <Description Language="en" Description="Reject" />
      </ShortDescriptions>
    - <LongDescriptions>
      <Description Language="en" Description="Reject the request" />
      </LongDescriptions>
      </Descriptions>
      </DisplayAttribute>
    - <DisplayAttribute name="approveCol" type="checkbox" width="" sortable="no" format="default" actionRef="1" hAlign="CENTER" vAlign="TOP" maxTextWidth="0" headerVisible="yes">
    - <Descriptions default="">
    - <ShortDescriptions>
      <Description Language="en" Description="Approve" />
      </ShortDescriptions>
    - <LongDescriptions>
      <Description Language="en" Description="Approve the request" />
      </LongDescriptions>
      </Descriptions>
      </DisplayAttribute>
      </DisplayAttributes>
    - <Actions>
    - <Action name="1" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="yes" launchInNewWindow="no" defaultGroupAction="no">
      <Descriptions default="1" />
      </Action>
    - <Action name="2" groupAction="yes" handler="UserDecisionHandler" returnToDetailViewAllowed="yes" launchInNewWindow="no" defaultGroupAction="no">
      <Descriptions default="2" />
      </Action>
      <Action reference="submitUserDecisions" defaultGroupAction="no" returnToDetailViewAllowed="yes" launchInNewWindow="no" />
      </Actions>
      </View>
      </Views>
      </UWLConfiguration>

    Hi,
    Check this blog may be usefull.
    Flashy UWL ...
    Complete customization of UWL UI.
    Thanks and Regards,
    gopal

  • Error: While Opening a Custom view- Action &OBJECT_ID& does not exist

    Hi Experts,
    On the click of button, I am creating a window and opening as follows:
      wd_comp_controller->go_window         = lo_window_manager->create_window(
                          window_name            = 'ZW_CERTIFICATION_POP'
                          title                  = lv_pop_title
                          close_in_any_case      = abap_false
                          message_display_mode   = if_wd_window=>co_msg_display_mode_selected
                          close_button           = abap_true
                          button_kind            = if_wd_window=>co_buttons_okcancel
                          message_type           = if_wd_window=>co_msg_type_none
    I have written following code in INIT method of View to Subscribe events but it is dumping with the Error "Action &OBJECT_ID& does not exist ".
    DATA lv_ok     type string.
    DATA lv_cancel type string.
    DATA lo_popup  TYPE REF TO if_wd_window.
    DATA lo_view   TYPE REF TO if_wd_view_controller.
    DATA lo_window_ctlr type ref to if_wd_window_controller.
    register button events
        lo_view = wd_this->wd_get_api( ).
        lo_window_ctlr = lo_view->get_embedding_window_ctlr( ).
        wd_comp_controller->go_window = lo_window_ctlr->get_window( ).
        lv_ok = cl_wd_utilities=>get_otr_text_by_alias( alias = 'PAOC_RCF_UI/OK' ).
        wd_comp_controller->go_window->subscribe_to_button_event(
                       button            = if_wd_window=>co_button_ok
                       button_text       = lv_ok
                       action_name       = 'OK'
                       action_view       = lo_view
                       is_default_button = abap_true
        lv_cancel = cl_wd_utilities=>get_otr_text_by_alias( alias = 'PAOC_RCF_UI/CANCEL' ).
                   wd_comp_controller->go_window->subscribe_to_button_event(
                      button            = if_wd_window=>co_button_cancel
                      button_text       = lv_cancel
                      action_name       = 'CANCEL'
                      action_view       = lo_view
                      is_default_button = abap_true
    How to solve this exception causing application to dump.
    Thanks
    Depesh

    Hi Depeshn,
    I have written following code in INIT method of View
    I think you have writen code containg subscribe_to_button_event method in the INIT method of the pop up view. But actually you should write that code where you are generating the pop up window. i.e in the ONACTION method of the button (which when clicked generates the pop up window.)
    It should be something like this:
    " This whole code should come in the event handler of the button.
    wd_comp_controller->go_window = lo_window_manager->create_window(
    window_name = 'ZW_CERTIFICATION_POP'
    title = lv_pop_title
    close_in_any_case = abap_false
    message_display_mode = if_wd_window=>co_msg_display_mode_selected
    close_button = abap_true
    button_kind = if_wd_window=>co_buttons_okcancel
    message_type = if_wd_window=>co_msg_type_none
    DATA lv_ok type string.
    DATA lv_cancel type string.
    DATA lo_popup TYPE REF TO if_wd_window.
    DATA lo_view TYPE REF TO if_wd_view_controller.
    DATA lo_window_ctlr type ref to if_wd_window_controller.
    * register button events
    lo_view = wd_this->wd_get_api( ).
    lo_window_ctlr = lo_view->get_embedding_window_ctlr( ).
    wd_comp_controller->go_window = lo_window_ctlr->get_window( ).
    lv_ok = cl_wd_utilities=>get_otr_text_by_alias( alias = 'PAOC_RCF_UI/OK' ).
    wd_comp_controller->go_window->subscribe_to_button_event(
    button = if_wd_window=>co_button_ok
    button_text = lv_ok
    action_name = 'OK'
    action_view = lo_view
    is_default_button = abap_true
    lv_cancel = cl_wd_utilities=>get_otr_text_by_alias( alias = 'PAOC_RCF_UI/CANCEL' ).
    wd_comp_controller->go_window->subscribe_to_button_event(
    button = if_wd_window=>co_button_cancel
    button_text = lv_cancel
    action_name = 'CANCEL'
    action_view = lo_view
    is_default_button = abap_true
    I hope it helps.
    Regards
    Arjun

  • UWL Configuration - View configuration of NavigationNode

    Dear Experts,
    I want to configure the UWL to create a custom data table for my own item
    types.
    This UWL table will be shown in the portal as a delta link that has an
    own configuration, not affecting the standard UWL.
    To achieve this, I write a custom UWL Configuration (as specified by the dtd), specifing
    - a custom View named "myCustomIView"
    - a custom navigation tree, containing a Navigation Node named
    "mainCustomNavigationMain" on the second level, which contains two
    Navigation Nodes referring to "myCustomIView" (rendered as tabs)
    In my own UWL table I refer to "mainCustomNavigationMain" as the
    navigation id to use my navigation tree and iView definition.
    But when I first select the portal role that links to the custom UWL
    iView, only the configuration of the navigation nodes affect the UWL
    iView, but NOT the configuration of the iView (such as columnOrder,
    width, supportedItemTypes and Actions). Instead, the properties of the
    UWL's default iView "DefaultView" take place. Even though, in my UWL
    configuration this view is NEVER mentioned or indirectly referenced.
    Only when I change to the 2nd tab, the iView configuration takes place.
    When I then switch back to the first tab, this one's iView is also
    configured properly.
    Thanks in advance for your answers!
    Regards,
    Milena May
    Steps to reproduce:
    1. Create a UWL Configuration as outlined below
    2. Upload the UWL Configuration (System Administration -> Universal
    Worklist and Worklflow -> Universal Worklist Administration -> Click to
    Manage Item Types and View Definitions -> Tab: Upload New Configuration
    Configuration Name: uwl.custom
    High Priority: true
    3. Go back to Universal Worklist Administration
    -> Cache Administration Page -> Clear cache of all Systems
    4. Create a custom portal role and add the UWL as a delta link
    5. Modify the properties of the delta-linked UWL:
    useNavigationId = mainCustomNavigationMain
    6. Log off and on again.
    7. Navigate to the custom role containing the UWL iView
    -> see the described behaviour
    <ItemTypes>
    <ItemType name="uwl.task.myCustomTask" connector="MyCustomConnector"
    defaultView="myCustomIView" defaultAction="forwardUsers"
    executionMode="default">
    <!-- Item actions are displayed in the preview and
    detail view as action buttons. -->
    <Actions>
    <Action reference="forwardUsers" />
    <Action reference="delete" />
    </Actions>
    </ItemType>
    </ItemTypes>
    <Views>
    <View name="myCustomIView" referenceBundle="bundle_custom"
    columnOrder="subject, isEscalated, creatorId, createdDate,
    priority, attachmentCount, dueDate, status" width="800"
    supportedItemTypes="uwl.task.myCustomTask">
    <!-- View actions are also displayed as buttons and can
    have an effect on none, one or multiple selected items.
    -->
    <Actions>
    <Action reference="delete" />
    <Action reference="forwardUsers" />
    </Actions>
    </View>
    </Views>
    <!-- The first level just defines the navigation section in the config
    file, bundling all custom navigation models. No properties required. -->
    <NavigationNode name="rootCustomRoot" view="" referenceGroup=""
    visible="yes" keepItemCountUpdated="yes" displayItemCountInTitle="yes">
    <!-- The second level defines the (custom) navigation model for
    a custom UWL iView, which is assigned to iView property
    useNavigationId. -->
    <NavigationNode name="mainCustomNavigationMain" view=""
    referenceGroup="" visible="yes" keepItemCountUpdated="yes"
    displayItemCountInTitle="yes">
    <!-- The third level defines the tabs, and the view
    which is displayed when the tab becomes active. -->
    <NavigationNode name="myCustomTab1"
    view="myCustomIView" keepItemCountUpdated="yes"
    displayItemCountInTitle="yes" visible="yes">
    </NavigationNode>
    <NavigationNode name="myCustomTab2"
    keepItemCountUpdated="yes" displayItemCountInTitle="yes"
    visible="yes" view="myCustomIView">
    </NavigationNode>
    </NavigationNode>
    </NavigationNode>

    Hi MilenaMMay,
    What version is your UWL including patch level?
    Beth Maben
    EP - Senior Support Consultant II
    SAP Active Global Support
    Global Support Centre Ireland
    **SDN Forum Moderator:
    SAP Enterprise Portal: Application Integration
    **SDN Universal Worklist Wiki:
    http://wiki.sdn.sap.com/wiki/x/ehU

  • A custom view in the Edit drop-down

    Hi,
    How could I create a custom view and add it to the Edit List Item drop-down in SharePoint 2013? This screenshot shows what I mean in SharePoint 2010:
    I'd like to have a menu item Custom View below Edit Properties in the drop-down list. When the user clicks the item I'd like to redirect to my layout page.
    Thanks,
    Leszek
    Wiki: wbswiki.com

    Hi ata6502:
    Adding a user custom action for list items
    using System;
    using Microsoft.SharePoint.Client;
    namespace Microsoft.SDK.SharePointServices.Samples
    class CreateUserCustomActionList
    static void Main()
    string urlWebsite = "http://MyServer/sites/MySiteCollection";
    ClientContext clientContext = new ClientContext(urlWebsite);
    Web oWebsite = clientContext.Web;
    List oList = oWebsite.Lists.GetByTitle("My List");
    UserCustomActionCollection collUserCustomAction = oList.UserCustomActions;
    UserCustomAction oUserCustomAction = collUserCustomAction.Add();
    oUserCustomAction.Location = "EditControlBlock";
    oUserCustomAction.Sequence = 100;
    oUserCustomAction.Title = "My First User Custom Action";
    oUserCustomAction.Url = urlWebsite + @"/_layouts/MyPage.aspx";
    oUserCustomAction.Update();
    clientContext.Load(oList,
    list => list.UserCustomActions);
    clientContext.ExecuteQuery();
    Modifying a user custom action
    using System;
    using Microsoft.SharePoint.Client;
    namespace Microsoft.SDK.SharePointServices.Samples
    class ModifyUserCustomAction
    static void Main()
    string urlWebsite = "http://MyServer/sites/SiteCollection";
    ClientContext clientContext = new ClientContext(urlWebsite);
    Web oWebsite = clientContext.Web;
    List oList = oWebsite.Lists.GetByTitle("My List");
    UserCustomActionCollection collUserCustomAction = oList.UserCustomActions;
    clientContext.Load(collUserCustomAction,
    userCustomActions => userCustomActions.Include(
    userCustomAction => userCustomAction.Title));
    clientContext.ExecuteQuery();
    foreach (UserCustomAction oUserCustomAction in collUserCustomAction)
    if (oUserCustomAction.Title == "My First User Custom Action")
    oUserCustomAction.ImageUrl = "http://MyServer/_layouts/images/MyIcon.png";
    oUserCustomAction.Update();
    clientContext.ExecuteQuery();

  • UWL - Terminating Events - Action Failed

    Hi,
    For a particular Task, i have uploaded a XML file which is mainly used to Approve or Reject a particular Task.
    The problem which i m facing is when i click the "Approve " button i get the error message "Action failed"
    Do i need to do any more configurations in SWFVISU ?
    Note: I have followed the steps mentioned in sec 8.2 - "Terminating events" in the document "How to configure UWL"
    Thanks in advance for your support.
    Regs/Venkat

    Did you exchange the UWL default view with myApprovalRejectView_TE ?
    Kai

  • Is there any way to create custom views, like in Thunderbird & Evolution?

    Hi Folks,
    I have recently switched to Mac. Before this I was using Linux. For mail I used Thunderbird (TB) for many years, and then eventually switched to Evolution Mail (EM) for its smoother integration into Linux.
    On both TB and EM I revolved my work flow around custom folder views. As new email came in I would label it (on EM, or tag it on TB). I have numerous inboxes (email accounts) so I would generally be starting out in a smart folder that displays all mail in each inbox. I would most of the time view that smart folder with a Custom View filter in place. The filter would simply display ONLY mail with NO tags/labels.
    Once my filter inbox showed NO messages it meant I had labeled everything. I would them use other smart folders to display mail with certain labels AND NO "Completed" label. That way I could go to my "Reply ASAP" folder and see what needed my immediate attention. Each email I replied to I would then add the label COMPLETED and it would vanish from my view.
    I explain the above in case someone has specific suggestions on how to achieve a similar workflow on Mail.
    In short, what I am wondering is this:
    - Is there a built in way to filter a folder on the spot (with a drop down list of predefined and custom Views) --- I have looked and so far did not find this feature
    - Is there a way to do this with a script or add-on? I have looked at many and not found a suitable one yet.
    I am appealing to the knowledge of those with more experience in Mail. It is new to me.
    I am currently using TB on my Mac because it gives me the above feature. BUT it does not have the same degree of integration with the OS and other Mac specific apps that Mail has. Thus I am keen to stick with Mail.
    With thanks,
    Jonathan

    In addition to above:
    I have installed a trial of Mailtags. It certainly improves the tagging capability of Mail.
    I have also looked at the Smart Mailboxes and Smart Mailbox Folders.
    As far as I can tell, however, there is no option to set up a smart mailbox that ONLY shows message with NO LABEL or NO MAILTAG (as the case may be). I can display messages with particular TAGS but not NO tags.
    Is there any way to add more options to the Smart Mailbox filter system?
    Cheers,
    Jonathan

  • How to select a custom view in BAPI_MATERIAL_SAVEDATA

    In our company we have defined some CUSTOM views for different materials. I want to select a custom view in the header data but don't see an option. The only options I see are as follows:
    MATERIAL
    IND_SECTOR
    MATL_TYPE
    BASIC_VIEW
    SALES_VIEW
    PURCHASE_VIEW
    MRP_VIEW
    FORECAST_VIEW
    WORK_SCHED_VIEW
    PRT_VIEW
    STORAGE_VIEW
    WAREHOUSE_VIEW
    QUALITY_VIEW
    ACCOUNT_VIEW
    COST_VIEW
    INP_FLD_CHECK
    MATERIAL_EXTERNAL
    MATERIAL_GUID
    MATERIAL_VERSION
    How can I select a view (in BAPI_MATERIAL_SAVEDATA) that's not a standard SAP view?
    Please help!
    Thanks.

    Hi,
    which views do you select in the structure HEADDATA? Do you select STORAGE_VIEW?
    Cheers

  • Error while adding a attribute to the the Custom view through a wizard

    Hi ,
    I have created a new custom view with value node through wizard  succesfully.
    Now I want to add a new attribute to that node.I am trying to do that by a wizard.
    But i am getting the follwing error " Error during analysis of Source Code" although i have
    commented or removed my all custom code from that view.
    I tried adding the new aattributes in the metthods "IF_BSP_MODEL~INIT " and
    "GET_TABLE_LINE_SAMPLE " manually but that also does not worked.
    Plz help me with this asap.
    Regards,
    Sharad

    Hi Sharad,
                          I hope all your classes are active. In case you want to add a new attribute there are two steps.
    1.Right click on context node and create attribute, it opens a wizard and continue. This will add the field in the context node and generate the getter-setter methods.
    2. In the above two method whcih you mentioned add the new field in the structure of value node. And then create your own getter-setter methods. and activate it. After this you will be able to see the attribute added in the context node.
    By using any of the two approaches you will be able to see teh new field in the configuration.
    Hope this helps.
    Regards,
    Ruby.

  • Unable to populate the Custom Views on UI for the component BP_FACTSHEET

    Hi All,
    I am working on a requirement on Interaction Center 7.0 .In this i have enhanced the component BP_FACTSHEET and created new Custom views in it. But i am unable to bring those custom views on the UI. As, we know that in this component there is no concept of overview set also.
    So, if anyone has faced the same problem please share your inputs.
    Thanks in advance,
    Thanks and Regards,
    Sharad

    Hi Sarad,
                       First you have to enhance the component BP_FACTSHHET .After that configure ur coustom view in fachsheet id BP_ACCOUNT_FS in SPRO.After that go to component BSP_DLC_FS,where you have to configure the ur view in specfic tiles which is display in web ui for specific to business roll.here you can find the ur fachsheet id and custom view.this component is automatically call when you launch fachsheet in web ui for specific business partner under account tab.
    Thanks
    Vishwas Sahu

  • How to create a customized view in SCOM monitoring to view alerts

    Hi All,
    I am trying to create a customized view in SCOM 2012 R2 monitoring for command center team to have the alerts from Server OS, AD, Exchange and few other MPs. I understand that I can use the option "Create by Specific source" and by selecting the
    required sources but I don't want all the alerts from these sources to be listed there but only few alerts which the respective teams want it to be.
    Thanks in advance.
    Regards,
    Srini

    Hi All,
    I am trying to create a customized view in SCOM 2012 R2 monitoring for command center team to have the alerts from Server OS, AD, Exchange and few other MPs. I understand that I can use the option "Create by Specific source" and by selecting the
    required sources but I don't want all the alerts from these sources to be listed there but only few alerts which the respective teams want it to be.
    Thanks in advance.
    Regards,
    Srini
    Hi Srini,
    Based on the above requirement, You want to create a Dashboard view with Specific alerts but not all right ?
    Based on my understanding on your above requirement i created one in my SCOM. Please let me know if this is what you really wanted ?
    For the below you really need to know what are those alerts, ONLY those alerts you want to be displayed in the dashboard.
    Then Go to the Monitoring tab in SCOM and then Right click Active alerts and select New -> Select New Alert view
    When you select new alert view you will need to specify the Resolution state and the Specific alerts you want.
    In the below example i have selected "MSExchange Active sync Alert" as a example. So my goal is here such that only the alerts i have specified from my selection ( "MSExchange Active sync Alert") if it appears in New state will appear
    in this view not all other alerts.
    So for that i just used the below options:
    Resolution state & Alert name
    Resolution state = New
    Alert name = %MSExchange XXXXXXXX%
    Also as of i see there was no option for entering multiple alert names. But i think there is and i am still trying as it accepts some SQL Wild cards. So if any one has an idea what is the wild card what is to be used to mention multiple names in that Name
    view please let me know.
    Gautam.75801

  • How to Create a Configuration Manager Console Custom View

    I am trying to create an assembly per the SDK example here:
    https://msdn.microsoft.com/en-us/library/hh948614.aspx
    I have added the assemblies per this article:
    https://social.technet.microsoft.com/Forums/en-US/5d74d30d-295b-4c51-8518-abdabbad731b/console-extension-custom-view-development?forum=configmanagersdk
    Now most of my references resolve but at compile time I get:
    Error 1 'MyCustomView.MyViewDescription' does not implement interface member 'Microsoft.ConfigurationManagement.AdminConsole.IConsoleView.TypeOfView'. 'MyCustomView.MyViewDescription.TypeOfView' cannot implement an interface member because it is
    not public. \MyCustomView\Class2.cs 21 18 MyCustomView
    Error 2 'MyCustomView.MyViewDescription' does not implement interface member 'Microsoft.ConfigurationManagement.AdminConsole.IConsoleView2.TypeOfViewController'. 'MyCustomView.MyViewDescription.TypeOfViewController' cannot implement an interface
    member because it is not public. \MyCustomView\Class2.cs 21 18 MyCustomView
    Error 3 'MyCustomView.MyViewDescription.TypeOfViewController': no suitable method found to override MyCustomView\Class2.cs 23 33 MyCustomView
    Error 4 'MyCustomView.MyViewDescription.TypeOfView': no suitable method found to override MyCustomView\Class2.cs 24 33 MyCustomView
    Error 5 'MyCustomView.MyViewDescription.TryConfigure(ref System.Xml.XmlElement)': no suitable method found to override MyCustomView\Class2.cs 24 109 MyCustomView
    I have been hunting around with a couple of decompilers looking for missing references etc for a few hrs and just can't seem to see what I am missing...
    I have included the code block here - typically of course I would not include multiple classes in the same CS file but for this POC it should be fine...
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.ConfigurationManagement.AdminConsole;
    using Microsoft.ConfigurationManagement.AdminConsole.Views.Common;
    using Microsoft.ConfigurationManagement.AdminConsole.Schema;
    using System.Reflection;
    using System.Xml;
    using Microsoft.EnterpriseManagement.UI.WpfViews;
    using Microsoft.ConfigurationManagement.AdminConsole.ConsoleView;
    namespace MyCustomView
    public class MyViewController : OverviewControllerBase { public MyViewController() : base() { } public override void EndInit() { base.EndInit(); this.Content = new Label() { Content = "My Content" }; } }
    public class MyViewDescription : IConsoleView2
    override protected Type TypeOfViewController { get { return typeof(MyViewController); } }
    override protected Type TypeOfView { get { return typeof(Overview); } } public override bool TryConfigure(ref XmlElement persistedConfigurationData) { return false; }
    new public bool TryInitialize(ScopeNode scopeNode, AssemblyDescription resourceAssembly, ViewAssemblyDescription viewAssemblyDescription) { return true; }

    Hi Alfonso,
    I did eventually release the console extension (see screen shot at the bottom of the page
    here).
    It has been a while since I worked on this code but as I remember, once I got the references straightened out (see this thread), a lot of the confusion I had was just understanding that some of the programming that had to be done was in WPF (not WinForm).
     The sample code from Microsoft does work though.
    I never was able to figure out how to tie the "tree node menu item" functionality into the Ribbon (at the top of the SCCM console) so that is still on my TODO list.  
    So, my advice to you is to start with the Microsoft example code (which I did) from the SCCM SDK and if you get compile time errors, look first for the SCCM assembly references (Microsoft.[ConfigurationManagement, ConfigurationManagement.ManagementProvider,
    EnterpriseManagement.UI.Foundation, EnterpriseManagement.UI.WpfViews) and then at the WPF assembly references (PresentationCore, PresentationFramework) for missing class references.
    I hope this information can help you.  Good luck sir! 
    Anthony LaMark

  • How to redirect to a custom view in 10g

    Hi All,
    Getting a bit of a headache on this one. I am migrating from 5.7 to 10g and in the project some emails are generated with a link to a custom view. Also I have a submit button in a jsp that redirects to a view. This was easy then (/servlet/controller?viewName=myview&from=1 or similar) but a bit more involved now I guess.
    I had a look at WAPI and can see how to run an activity in an instance, or indeed an application but cant figure out how to display my view.
    Any ideas ?
    cheers
    Tony

    Any thoughts would help on this one.
    Effectively I want a url, or wapi call that takes the user directly to the workspace, with work items at a particular view (not inbox). Defaulting everyone to that view isnt a goer and neither is launching an activity.
    I guess it is possible as the workspace does it when clicking the view dropdown.
    cheers
    Tony

  • Adding Flex-field to Custom View in the Worklist

    Hi,
    I am using OAS10133. I have mapped a SIMPLE_TYPE payload attribute to a flex field label in the worklist. I created a custom view. I want to display this playload attribute as a column in custom view and want to make it searcheable. But when I create the custom view, then at the time of selecting the columns, I do not find the name of this label listed in the dropdown.
    I have also made an entry in WorkFlowLabels.properties file.
    Can anyone please let me know if I need to follow any other step to display the flex field label as a column in custom view?
    Thanks in advance.
    -sam

    Hi Pete,
    There are two exits that were used.
    A user exit IMRC0001 (MeasPoint/MeasDoc: Exit before update (after COMMIT WORK) /  FM: EXIT_SAPLIMR0_001) for the transaction IK11 to enter the value for the custom field. When the measuring document is saved a pop up appears wherein the value for the custom field can be entered.
    A menu exit IMRC0003 (MeasDoc: Menu exit for customer-specific function / FM: EXIT_SAPLIMR0_003) for the transaction IK12 in order to change the custom field.

  • Create a Custom View in Project Server 2010 that is Visible in MS Project

    Hello All,
    We want our PMs to consistently report Physical % Complete, but couldn't find an existing "Status" or "EVM" view.  So, in Project Server 2010, using Server Settings > Look and Feel > Manage Views, I created a customized project
    view using existing fields (no customized fields, if that matters).  The problem is that I cannot find the view when I open MS Project.  Under Manage Views, in the Format View section, I have selected "Gantt Chart (Views)" for the Gantt
    Chart format field.  The view defaulted to "Timesheet" for the Grouping format field.  Under the Security Categories section, I have selected My Projects and My Tasks.  I have not applied a Filter.  Any ideas why I cannot find
    this new custom view in MS Project?  
    Was I supposed to create the new customized view directly in MS Project?  If so, where would I find the steps to do that?  Thank you!
    Julie

    Julie --
    Nice try, my friend.  Your only mistake was trying to create the Microsoft Project view in PWA.  You have to open the Enterprise Global for editing in Microsoft Project, and then create the custom view and table in the Enterprise Global. To
    open the Enterprise Global for editing, click File > Info > Manage Enterprise Global.  When you finish creating the custom view and table, then save, close, and check in the Enterprise Global file, and then exit Microsoft Project completely.
    The next time you or any of your PMs launch Microsoft Project and connect to Project Server, the custom view and table will be visible for every current and future project.  Hope this helps.
    Dale A. Howard [MVP]

Maybe you are looking for

  • IMovie HD (6) will not capture video taken from HV20 in PF24 mode

    The preview window shows the video just fine. iMovie complains that Quicktime doesn't have the ability (codec/plugin) to edit or playback my video. I find it ironic that software claiming to support HD and HDV can't read the video. It says to re-inst

  • HT201364 i cant update my macbook Pro Black from snow leopard 10.6.8 to yosemite.

    I have read the specs and everything seems fine. I have snow leopard 10.6.8 and when I try and update i get a message from the applestore app to say it cant be installed on this laptop. Please can anyone advise me on that I should do. MAC OS Build 10

  • Writing Cleint side scripting to edit internal table

    Hello Gurus I have a internal table which i am displaying  in tableview . i want to add record into the itab when i i click on one button on the form. I want to do it this action in the client side using abap script of java script. I am not sure how

  • How to get status of a short lived process?

    I have a short-lived process I call from servlet (submit servlet), I would know when the process has completed, I tried the following code, but it says [3/3/09 10:35:37:593 PST] 0000002f SystemErr R Caused by: com.adobe.idp.jobmanager.common.JobNotFo

  • Custom Tag Authentication

    Hello Everyone, Quick question. If I want to redirect a user to a login.html page if they're not logged on and they are trying to use a resource, what is the best way to go about it? Should I page the bean value attribute to the tag and then just emb