Podcasts - custom management

Now that I've moved up to an iPod that properly handles podcasts...
I haven't been able to figure out a way to get different podcasts to sync with different attributes.
I have some podcasts that I would only like the one last show to sync and let all the others get deleted. These are usually one hour programs that if I don't listen to them this week I'll never listen to them.
I have shorter podcasts that I'd like to keep the last week's worth. They can delete after that - if I don't listen to them in a week...
I have some educational video podcasts that I'd like to keep on my iPod for all time (or at least as long as I'm a teacher).
So far my solution is to have iTunes "Keep the 5 most recent" of selected podcasts. I've taken the video podcasts I want to keep for future classes and made them into regular movies and imported them into the movie section, then selected that movie to sync. It works, but it's kind of annoying.

You might want to take a look at Castaway. It works in conjunction with iTunes and allows for greater control. I played around with it and it looked interensting but it was more than I needed.
http://www.woodenbrain.com/index-sw.html

Similar Messages

  • How do I create a non-apple ID account for a new adminstrator for a Podcast Site Manager

    http://myinfo.apple.com is inoperable.  I need to create a new account for an Administrator for our Podcast Site Manager account.  We have one that no one can access.  Can someone assist or point me in the direction of someone at APPLE that can?  I called their helpdesk and THEY couldn't even help.
    Concerned...

    I'm afraid I don't know anything about this: it doesn't appear to be relevant to ordinary podcasts. Is this an iTunes-U matter? - perhaps that forum would help.
    https://discussions.apple.com/community/itunes_u/managing_itunes_u_sites

  • How to use search REST api to get custom managed property data for anonymous user?

     
    I am trying build a public portal with anonymous access and i am trying to read some
    content from custom managed property using search REST api in sharepoint 2013. I have tried to enable all possible attributes of the managed prop. Like searchable,queryable,safe etc. also i am including queryparametertemplate in my REST api search query. But
    still i am not able to retrieve the managed prop. For an anonymous user. The same query returns the value if i am logged in.
    Any Help is greatly appreciated. 
    Thanks,
    Rakesh
    Thanks, Rakesh

    Hi Rakesh,
    To enable anonymous Search REST queries, we need to create queryparametertemplate.xml and upload it to the correct library in SharePoint.
    From your description I can know that you have created the file, then I recommend to check the things below:
    Please use “QueryTemplatePropertiesUrl” instead of “queryparametertemplate” in the Search REST API query as following: &QueryTemplatePropertiesUrl='spfile://webroot/queryparametertemplate.xml'.
    Make sure that the Query Properties you need have been added to the QueryProperties element in the queryparametertemplate.xml file.
    Make sure that the query parameters you need have been added to the WhiteList element in the
    queryparametertemplate.xml file. For example, if you want to use Refiners in the REST API, then the Refiners should be added to the
    WhiteList element in the queryparametertemplate.xml file as following:
    <a:string>Refiners</a:string>.
    You can also debug setting properties in anonymous Search Rest queries following the link below:
    http://www.mavention.com/blog/debugging-setting-properties-anonymous-search-rest-queries
    More references about anonymous Search REST:
    http://blog.mastykarz.nl/configuring-sharepoint-2013-search-rest-api-anonymous-users/
    http://msdn.microsoft.com/en-us/library/office/jj163876%28v=office.15%29.aspx#bk_AnonymousREST
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Use of SQL fetchlet to create a custom management plug-in

    Hi,
    I would appreciate if you anyone could help me out on this:
    I need to fetch some data from EMF tables and create a custom Management plug-in in OEM so that it can be monitored from OEM itself. For getting the data from database table i am using SQL fetchlet coz it provides the facility to use SQL statement in it. Following is the code i have developed in target-type.xml file.
    <TargetMetadata META_VER="1.0" TYPE="emf_filer">
    <Display>
    <Label NLSID="emf_filer">Error Management Filer</Label>
    </Display>
    <Metric NAME="emf_filer" TYPE="TABLE">
    <Display>
    <Label NLSID="emf_filer_resp">Response</Label>
    </Display>
    <TableDescriptor>
    <!-- <ColumnDescriptor NAME="tcpPing" TYPE="NUMBER" >
    <Display>
    <Label NLSID="netapp_filer_resp_tcpPing">TCP Ping, Milliseconds</Label>
    </Display>
    </ColumnDescriptor> -->
    <ColumnDescriptor NAME="Status" TYPE="NUMBER" >
    <Display>
    <Label NLSID="emf_filer_resp_status">Status</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="PROGRAM_NAME" TYPE="STRING" >
    <Display>
    <Label NLSID="PROGRAM_NAME">Program Name</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="PROGRAM_TYPE" TYPE="STRING" >
    <Display>
    <Label NLSID="PROGRAM_TYPE">Program Type</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="RICEW_ID" TYPE="STRING" >
    <Display>
    <Label NLSID="RICEW_ID">Rice Id</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="Request_id" TYPE="NUMBER" IS_KEY="TRUE" >
    <Display>
    <Label NLSID="Request_id">Request Id</Label>
    </Display>
    </ColumnDescriptor>
    <ColumnDescriptor NAME="EBIZ_INSTANCE_NAME " TYPE="STRING" >
    <Display>
    <Label NLSID="EBIZ_INSTANCE_NAME">Instance Name</Label>
    </Display>
    </ColumnDescriptor>
    </TableDescriptor>
    <QueryDescriptor FETCHLET_ID="SQL">
    <Property NAME="MachineName" SCOPE="INSTANCE">MachineName</Property>
    <Property NAME="Port" SCOPE="INSTANCE">Port</Property>
    <Property NAME="SID" SCOPE="INSTANCE">SID</Property>
    <Property NAME="UserName" SCOPE="UserName">apps</Property>
    <Property NAME="password" SCOPE="password">password</Property>
    <Property NAME="ServiceName" SCOPE="INSTANCE">ServiceName</Property>
    <Property NAME="STATEMENT" SCOPE="INSTANCE">
    BEGIN
    SELECT PROGRAM_NAME, PROGRAM_TYPE,
    RICEW_ID,REQUEST_ID, EBIZ_INSTANCE_NAME FROM XX_EMF_MESSAGE_HEADER WHERE STATUS = 'ERROR' AND RICEW_ID = 'INT-DL019';
    END;
    </Property>
    <!-- <Property NAME="SQLINPARAM1" SCOPE="ENV">HOSTNAME</Property>
    <Property NAME="SQLOUTPARAMPOS" SCOPE="GLOBAL">2</Property>
    <Property NAME="SQLOUTPARAMTYPE" SCOPE="GLOBAL">SQL_CURSOR</Property>-->
    <Property NAME="NUMROWS" SCOPE="GLOBAL">40
    </Property>
    </QueryDescriptor>
    <ExecutionDescriptor>
    <GetTable NAME="emf_filer"/>
    <GetView NAME="emf_View" FROM_TABLE="emf_filer">
    <Column NAME="PROGRAM_NAME"/>
    <Column NAME="PROGRAM_TYPE"/>
    <Column NAME="RICEW_ID"/>
    <Column NAME="REQUEST_ID"/>
    <Column NAME="EBIZ_INSTANCE_NAME"/>
    <Filter COLUMN_NAME="REQUEST_ID" OPERATOR="GT">0</Filter>
    </GetView>
    </ExecutionDescriptor>
    <InstanceProperties>
    <InstanceProperty NAME="UserName" CREDENTIAL="TRUE" OPTIONAL="FALSE" NEED_REENTER="FALSE" HIDE_ENTRY="FALSE">
    <Display>
    <Label NLSID="UserName_emf">Username</Label>
    </Display>
    </InstanceProperty>
    <InstanceProperty NAME="password" CREDENTIAL="TRUE" OPTIONAL="FALSE" NEED_REENTER="TRUE">
    <Display>
    <Label NLSID="password_emf">Password</Label>
    </Display>
    </InstanceProperty>
    <InstanceProperty NAME="MachineName" CREDENTIAL="FALSE" OPTIONAL="FALSE">
    <Display>
    <Label NLSID="MachineName_emf">Listener Machine Name</Label>
    </Display>
    </InstanceProperty>
    <InstanceProperty NAME="Port" CREDENTIAL="FAL
    My doubt here is:
    As per Oracle it is importent to use response matrics with status column. How can i accomodate Response matrics with this code. what will be the columns except Status that i need to mention? if i use just one matrics i.e response then what will i use in in FROM clause in ExecutionDescriptor [<GetView NAME="emf_View" FROM_TABLE="emf_filer">]? i wuld appreciate if anyone could clarify my issues.
    Thanks for your help.
    Regards,
    AS

    That is what i am trying to ask..as i will b using 2 dfifferent matrics so i will have to use 2 diffrent QueryDescriptors one for Response matric and one for other one. Now following QueryDescriptor will be added in other(Not Response) matric then what should i add in QueryDescriptor in Response matric?
    Query Descriptor for matric other than "Reposnse":
    QueryDescriptor FETCHLET_ID="SQL">
         <Property NAME="MachineName" SCOPE="INSTANCE">MachineName</Property>
         <Property NAME="Port" SCOPE="INSTANCE">Port</Property>
         <Property NAME="SID" SCOPE="INSTANCE">SID</Property>
         <Property NAME="UserName" SCOPE="UserName">UserName</Property>
         <Property NAME="password" SCOPE="password">password</Property>
         <Property NAME="ServiceName" SCOPE="INSTANCE">ServiceName</Property>
         <Property NAME="STATEMENT" SCOPE="GLOBAL">
              SELECT PROGRAM_NAME,
                             PROGRAM_TYPE,
                             RICEW_ID,REQUEST_ID,
                             EBIZ_INSTANCE_NAME
              FROM XX_EMF_MESSAGE_HEADER WHERE STATUS = 'ERROR' AND RICEW_ID = 'INT-DL019';
              </Property>
    </QueryDescriptor>
    what should be the QueryDescriptor for Response matric?? Will it be same or different?
    Thanks for your help.
    Regards,
    AS
    Edited by: user9959418 on Oct 31, 2008 1:10 PM

  • Automatic creation of Credit customer management after XD01

    Hi,
    What is the customizing needed to generate automatically the Credit customer management (FD32) after the creation of customer master data (XD01) ?
    Please hep
    Regards.

    Make default setting in transaction OB45
    Regards,
    SDNer

  • Exposing rest services in custom managed server

    Hi everybody,
    I want to know how can expose the rest sevices for custom managed server which is created from webcenter custom portal template ????
    Thanks.

    I mean that once i deployed my custom webcenter portal (including web 2.0 services) into managed server. it is possible or not to manage potal services (documents, discussions ..) through rest api using thz following URL: http://myManagedServer:myPort/rest/api/resourceIndex ????

  • Custom Managed Servers

    what are advantages of creating Custom Managed Servers ?
    we have WC_Spaces, WC_Portlet etc etc that comes with webcenter suite. We also have default MDS created.
    Why do we need to craete Custom Managed Servers and also custom MDS ? Meaning, we can always depoly our application on WC_Server.
    Then why doc talks about Custom Managed Servers ?

    It depends on what stuff you are going to deploy.
    If you create an application which requires a lot of resources, it is wise to deploy it to a dedicated managed server which can then be tuned specifically for that application.
    Another consideration might be to keep the standard managed servers as clean as possible.
    If you do not deploy any custom code to the standard managed servers and something goes wrong in these standard servers, it might be easier for Oracle support to analyse the issue.
    In short, for production I'ld recommend to always use a custom managed server.
    For development, you might want to deploy your application in a standard managed server, but it is not recommended (you always want to develop against an environment which is most similar to production, right?)
    Kind regards,
    Rob

  • ITunes Podcast Site Manager vs. iTunes U Public Site Manager

    The link for help files for the iTunes Podcast Site Manager goes to "Using iTunes U Public Site Manager".  There are significant differences between these two iTunes administration sites.  I need help for iTunes Podcast Site Manager, not iTunes U Public Site Manager.
    Specifically I need to set media types for our shows, and since a change to the iTunes Podcast Site Manager interface, I've not figured out how to do it.  The instructions (from "Using iTunes U Public Site Manager") say you do it on the Collections tab.  There is no "Collections" tab at the iTunes Podcast Site Manager.
    Anyone know how I set media types in the iTunes Podcast Site Manager?
    thanks - john

    I'm afraid I don't know anything about this: it doesn't appear to be relevant to ordinary podcasts. Is this an iTunes-U matter? - perhaps that forum would help.
    https://discussions.apple.com/community/itunes_u/managing_itunes_u_sites

  • Installing oracle ops center with a Customer-Managed Database.

    Hi Everyone,
    I am trying to install oracle ops center with a Customer-Managed Database.
    I followed this document http://docs.oracle.com/cd/E27363_01/doc.121/e25139.pdf
    but I fail.
    this is the error I get
    Executing job: jobs/40installOracle.pl --install  --remoteDBprops=/var/tmp/RemoteDBProps.txt
    40installOracle.pl Job Start = Wed Aug  6 11:16:25 2014
    looking for props file: /mnt/xvmoc_full_bundle/./Linux_i686/Product/installer/scripts/localOracleConfig.propertieslooking for alter storage file: /mnt/xvmoc_full_bundle/./Linux_i686/Product/installer/scripts/alterStorage.sqlRestarting install at state=done_install_ic
    Skipping Step:PrepOraDB because currentState=done_install_ic
    Skipping Step:Install IC because currentState=done_install_ic
    Error: Failed to get a database connection: Connection refused
    satadm: ERROR:    --- Failed to verify database
    Cannot verify remote database
    Please fix the problem and then try this step again.
    For a full log of the failed install see the file: /var/tmp/installer.log.28153.
    t. Try this step again (correct the failure before proceeding)
    x. Exit
    this is my RemoteDBProps.txt
    mgmtdb_appuser=OPSCENTER
    mgmtdb_password=xxxxxxxx
    mgmtdb_roappuser=OPSCENTER_RO
    mgmtdb_ropassword=xxxxxxx
    mgmtdb_dburl=jdbc:oracle:thin:@192.168.1.100:1521/oem
    I tested the connection to the sql using OPSCENTER and is working fine.
    What am I doing wrong?
    kind regards
    Albert Boqo

    Hi Albert,
    which Version of remote DB do have installed ?
    As the error indicates that the error say sqlpplus can't connect to it.
    Is the Oracle listener running for port 1521 ?
    Error: Failed to get a database connection: Connection refused
    satadm: ERROR:    --- Failed to verify database
    example to verify the status:
    /export/home/oracle/u01/app/oracle/product/11.2.0/db_1/bin/lsnrctl status
    and what is ../oracle/product/11.2.0/db_1/network/admin/tnsnames.ora
    configured is these same port/hostname as in RemoteDBProps.txt
    Regards
    Klaus M

  • Custom Manage Property does not pick up the value from mapping crawl property

    Hi All,
    I have created a custom list with the column name that's called "category".
    Then I ran full crawl and I saw the "ows_category" crawl property is created.
    Then I create the manage property names as "Category" and map with the "ows_category" and run the full crawl again. (Retrivable, Searchable, Refinable options are checked)
    After full crawl, I searched Category:keyword but it returned 0 result. 
    But when I search keyword, that list item is retuned
    I tried to debug with the spsearch2013 tool and there is no "Category" manage property in the return XML.
    It seems the Manage Property does not pick up value from the crawl property. (Something might be wrong with the index schema)
    Do you have any suggestion?
    Do I need to reset the index?
    Best Regards,
    Andy

    Hi Andy,
    When you search ‘category’ in crawled properties(Central Administration->Search Service Application->Search Schema), you will see ows_Category is mapped to DiscussionCategory, like the screenshot:
    So, I suggest you create a new column using another name, then test again, compare the result.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Enabled monitor through override not visible in custom management pack

    Hello Everyone,
    I've this requirement to enable a monitor which is disabled by default in its source sealed management pack. Using following article; via override; I enable the monitor and place it into a custom unsealed management pack.
    https://technet.microsoft.com/en-au/library/hh212818.aspx
    Now when I try creating subscription based on that monitor; and select the custom unsealed management pack; that monitor is not listed/available. However, this same monitor which is turned enabled by override; is listed; if its parent sealed management pack
    is selected. 
    Questions:
    1) Would selecting this monitor from its sealed management pack; safe to assume this monitor is now enabled? 
    2) Is this default behavior for monitors turned enabled via override? 
    Please provide input to this, how an enabled monitor through override can be referenced to be used? Thank you.

    1) If the override is done properly, yes, it is enabled. You can check that it is actually enabled by opening the health explorer of an object targeted by this monitor : it should be green/yellow/red instead of blank when it was disabled
    2) It is the default behavior. What happens is that you store the override (just a parameter that says "ok, the monitor is now enabled") in the unsealed management pack, not a copy of the actual monitor.

  • Convert custom management plug-in in OEM 11g to OEM 12c compatible plug-in

    Hi All,
    We have a custom plug-in developed and deployed in OEM 11g. We are planning to move to OEM 12c(12.1.0.4) and installing OEM 12c(fresh install) in a new host instead of migrating existing 11g to 12c as part of upgrade process.
    Now question is what are the options if I want to use existing 11g custom plug-in in OEM 12c ? As I understand 11g plug-ins are jar file but OEM 12c plug-ins are OPAR files.
    Can we export plug-in from OEM 11g and import directly in OEM 12c or if there are any steps to conver 11g plugin to 12c plugin before importing it in 12c.
    Please suggest the options available without re-developing the plug-ins for OEM 12c.
    Thanks

    To overwrite and update your current custom plug-in update that is stored in a repository, use the overwrite option.
    $emcli create_custom_plugin_update
    -agent_name="agent_name"
    -plugin_id="plugin_id"
    [-overwrite]
    This command creates and imports a custom plug-in update from an existing Management Agent where the selected plug-in is deployed. The custom plug-in update will be used for all subsequent plug-in deployments on any Management Agent, in place of Oracle supplied versions.
    Custom plug-in update is created as per plug-in type. If a custom plug-in update is created, and after three days, a patch is applied, in order to include the patch, the custom plug-in update will have to be created again.
    $emcli list_custom_plugin_updates
    Please refer the below doc for more info..
    http://docs.oracle.com/cd/E24628_01/doc.121/e24473/plugin_mngr.htm#CJGCHGIH
    Regards
    Krishnan

  • Custom Managed Folder - multiple content settings. Who wins?

    I have the following content settings in a Managed Folder Mailbox Policy (non-applicable settings not listed):
    Entire Mailbox delete IPM.Note after one year
    Entire Mailbox delete IPM.Note.Microsoft.Conversation after seven days
    Custom folder "Foo" where retention is disabled (so anything may be saved longer than a year)
    As expected nothing is removed from the Custom Folder. Let's say I want to delete Conversation Histories after seven days in the hold folder. It is as easy as an additional content setting for the Foo folder and it will look something like this:
    Entire Mailbox delete IPM.Note after one year
    Entire Mailbox delete IPM.Note.Microsoft.Conversation after seven days
    Custom folder "Foo" where retention is disabled (so anything may be saved longer than a year)
    Custom folder "Foo" delete IPM.Note.Microsoft.Conversation after seven days
    I obviously only want Conversation Histories deleted from the Foo folder and nothing else. Thx.

    Hello PNutts,
    In GEneral, there are two types of Managed folder:Managed default folders and Managed custom folders.
    Managed default folders   Managed default folders are managed folder objects created for default folders such as Inbox, Deleted Items, Sent Items, and others. Exchange 2010 Setup creates a set of managed default folders. You can
    use these folders or create additional ones for different sets of users.
    Managed custom folders   Managed custom folders are managed folder objects you can use to create custom folders in a user's mailbox. The folders are created under a top-level folder called Managed Folders.
    For your question, as Entire mailbox belongs to Managed default folders. Therefore, the content setting for managed custom folders will apply to the custom folders. And the content setting for entire mailbox will only apply to the default folders such as
    Inbox.
    Should you have any other question or concern, feel free to let us know.
    Sent By
    Silver

  • PO document type not transferring to Customs management

    Hi,
    We have configured PO document type in GTS for Import and it got transfer to Complaince not to customs.  I have created CULOIM document type and item category on customs.  when i checked on this table /SAPSLL/V_TLEYVS i couldn't find CULOIM document type..  When i try to create a new one it say CULOIM document type already exist...
    I do not know why it is saying like that even document type not there in that table and where would i find that.
    One more question:
    When we assign document type to logical system on Customs we can see GTS document type field... when you press F4 you can see CD Cat - A... Can you tell me what is that and where do you define and assign to custom document type.
    regards
    rc gopi

    You can maintain the table by going into the SPRO and defining the doc tyoe you looking for , Onc eyou maintain there it reflects in in this table as it Configuration table.
    If you want to delete , add any entry directly in table then u can do that by getting in debug mode.
    Select a  entry in table
    Double click on it
    Do /h  to switch on the debugging
    Press Enter
    You will See different Case for "Code"
    Type the filed name Code in in "field Name"
    it will display the value 'SHOW'  you can change this value as desire like to Delete 'DELE' , to insert new value 'AVNO' and then click on change pencil.
    and press F8.
    Now you come to the screen where u can do the changes and save it.
    Custom Doc Category is taken automatically by SAP as for Export and Import doc type  in customs it is always A.
    If you cDefine Document Types for Advance Docs for Customs Declaration it is C.
    Each category has got it one chateristics , so if we defining correct documnet type we need not to worry for category as it will by default come as set in SAP.
    Kind Regards,
    Sameer

  • Issue with custom management pack

    i've created a form and class for the service request
    i can open the form and it works as designed but when i click ok, i get this error.
    System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
       at System.ThrowHelper.ThrowKeyNotFoundException()
       at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
       at Microsoft.EnterpriseManagement.GenericForm.ContentPanel.VerifyRequiredValues(List`1& errorMessages)
       at Microsoft.EnterpriseManagement.GenericForm.ContentPanel.OnPreviewSubmit(Object sender, PreviewFormCommandEventArgs e)
       at Microsoft.EnterpriseManagement.GenericForm.FormChanger.OnPreviewSubmit(Object sender, PreviewFormCommandEventArgs e)
       at Microsoft.EnterpriseManagement.UI.FormsInfra.PreviewFormCommandEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at Microsoft.EnterpriseManagement.UI.FormsInfra.FormView.RaiseFormEvent(RoutedEvent formEvent, RoutedEventArgs eventArgs)
       at Microsoft.EnterpriseManagement.UI.FormsInfra.FormViewController.OnPreviewSubmit()
       at Microsoft.EnterpriseManagement.UI.FormsInfra.FormViewController.ExecuteSubmitInternal(Boolean async)
       at System.Windows.Input.CommandBinding.OnExecuted(Object sender, ExecutedRoutedEventArgs e)
       at System.Windows.Input.CommandManager.ExecuteCommandBinding(Object sender, ExecutedRoutedEventArgs e, CommandBinding commandBinding)
       at System.Windows.Input.CommandManager.FindCommandBinding(CommandBindingCollection commandBindings, Object sender, RoutedEventArgs e, ICommand command, Boolean execute)
       at System.Windows.Input.CommandManager.FindCommandBinding(Object sender, RoutedEventArgs e, ICommand command, Boolean execute)
       at System.Windows.Input.CommandManager.OnExecuted(Object sender, ExecutedRoutedEventArgs e)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
       at System.Windows.Input.RoutedCommand.ExecuteImpl(Object parameter, IInputElement target, Boolean userInitiated)
       at MS.Internal.Commands.CommandHelpers.CriticalExecuteCommandSource(ICommandSource commandSource, Boolean userInitiated)
       at System.Windows.Controls.Button.OnClick()
       at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp(MouseButtonEventArgs e)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
       at System.Windows.UIElement.OnMouseUpThunk(Object sender, MouseButtonEventArgs e)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
       at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
       at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
       at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
       at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
       at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)
       at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
       at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
       at System.Windows.Window.ShowHelper(Object booleanBox)
       at System.Windows.Window.Show()
       at System.Windows.Window.ShowDialog()
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowManager.GenericWpfWindowConstructor.BeginShow(ShowViewContext showViewContext, Object parent, Object view, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowManager.WpfWindowRecord.ShowWindow()
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()

    you know the more i look at this.
    i think what happens is, i followed these instructions to the point of creating the runbooks
    http://blogs.technet.com/b/antoni/archive/2014/04/09/system-center-2012-service-manager-and-orchestrator-integration-example-walkthrough-start-to-finish-new-hire-provisioning-service-request.aspx#pi47623=3
    and i can't use the form because there's a few required fields on the general tab and those were written to do all the work with runbooks and request offerings, so those instructions were written with the idea of never even using the form inside of service
    manager, so that's why it doesn't work in my case.
    so i guess the options for this are.
    1. remove the field requirements on the general tab
    2. make the general tab and the other tabs work with this management pack/form.

Maybe you are looking for

  • System Preferences no longer stick after 10.10.1 update

    I've upgraded from OS X 10.10 to 10.10.1 today. The upgrade caused various system preferences to change, and now I cannot change them back. While System Preferences.app seems to accept my changes, they are reverted after I quit and restart System Pre

  • Can't navigate to log-in page

    Hi everyone! A couple months ago, I started being unable to view my account at my local library, Carnegie Library of Pittsbugh http://clpgh.org/ When I click on the "my account" page, it takes me to this page https://catalog.einetwork.net:443/patroni

  • Email links will not open in my Firefox browser

    Hello, Using my Firefox web browser when I am in my emails. Inside the email body and there is a link to click on inside. The Firefox will not open the link page, it comes up as an error. However, if i right click and open in a new window. Firefox wi

  • Actiontec MI424WR dropping wireless connection intermitte​ntly; wired connection works

    I've had this router for about two years, with no issues. Beginning on Saturday, our two laptops and phones began losing their connection to our wireless network, dropping the signal every 30 seconds or so.  I tested the wired connection by plugging

  • Diferentiate user exits

    When finding user exits how can we differentiate whether it is menu exit, screen exit, function exit or field exit. Thanks, Subramanyam.