Default Category Dispositions Workflow in URM11g!!

Hi,
In URM11g set up guide I could see the 'Category Dispositions Workflow' in configuration options chapter. I would like to know whether this workflow will help me to fulfill the below scenario.
"I have to approve the contents for disposition in URM system. Once the retention period is over then the particular retention category will appear on My Records Assignments for approval. Since i am not sure whether an user still requires a particular content I cannot go ahead and approve the disposition action. Before the approval for all contents I would like to have one more step in the disposition action or as a seperate workflow to make sure the users are reviewed the contents and I can approve the disposition action."
Please help me to resolve the above scenario.
Thanks

From the documentation (http://docs.oracle.com/cd/E28389_01/doc.1111/e10640/c07_generalconfig.htm#BHCJHBAJ):
"The Category Disposition Workflow is used to approve the disposition rules on a category before the rules are enacted.", so that piece of functionality is not usable in your scenario.
Since i am not sure whether an user still requires a particular content I cannot go ahead and approve the disposition action. Before the approval for all contents I would like to have one more step in the disposition action or as a seperate workflow to make sure the users are reviewed the contents and I can approve the disposition action.I'm not really sure if basic records management concepts are really understood here.
The company decides on the rules when an item goes away by defining the disposition process, not the user. You can set up some type of step in the process, like "notify authors", but the records manager is the person tasked with the actual enforcement. Users almost never want to get rid of anything, which is why such systems for retention management have sprung up. If you need approvals, you can actually print off a destruction certificate with the items (this is a manual process, as the system doesn't handle this scenario electronically), give it to the user, and make them sign it for documentation purposes, but don't expect a user to OK a document destruction from a simple email notification - they will just ignore it, and now you are out of compliance for not destroying the item as your retention schedule/file plan dictates.

Similar Messages

  • Oracle Inventory: How to change default category set of items

    Hi,
    We have a requirement where we need to change the default category set of functional area inventory in oracle as we are importing new items into inventory whihc need to be assigned to a new default category set.There is an existing default categpory set for this area.
    As far as i understand once a default category has been set up and an item has been defined, the only way to change the default category set for a given functional area is to update all items with the new default category set before updating the default category set/functional area relationship.
    How exactly do we update the defaul category set for an existing item and change it to a new one. Since we have close to 15K items what is the best way to do this.Is there ay API available?
    Thanks in Advance
    AM

    Hi Helios,
    Thanks a lot for your response
    The fix given in this document is to allign all the exisitng items to a category set (purchasing in this case). This is exactly what my doubt is. How to assign 15k items to a different category set. If i am able to allign these items i can change the default category of the functional area.
    Thnaks
    AM
    PS: i am using 11.5.10.2

  • Default category of delivery date in schedule lines

    Hi,
    When i enter transaction ME38, select an item and click on delivery schedule to input schedule lines,
    by default i can see 'M' in field category of delivery date.
    'M' is displayed in all the records, whether a sch line exists or not.
    In another system of mine, when i try to enter sch lines thru ME38, by default all records show blank in category of delivery date.
    I want to change the default category of delivery date as 'D' or want to keep it blank , but not 'M'.
    How can i change this???
    Regards,
    Sneha
    Points will be awarded for helpful answers *

    Hi w1n,
    following is the setting in my system.
    EN     C     5     Calendar format
    EN     D     1     Day format
    EN     K     2     Planning calender
    EN     M     3     MONTH FORMAT
    EN     P     4     Period format
    EN     W     2     Week Format
    Still it is showing me M as default in all the lines.
    M                 06.2008                  32      R01.06.2008     
    M                 06.2008                  24      R01.06.2008     
    M                 06.2008                  24      R01.06.2008     
    M                                                                  
    M                                                                  
    M                                                                  
    Can u pls help me out ???
    Regards,

  • Can u create a default category using html:option ?

    Hi
    How do make the option chooseCategory the default category ,also if the user proceeds without choosing a category (apart from default category) i need to show an error.
    how do i do this.
    Can i do it thru validation.xml.
    <bean:message key="label.sms.category"/></b>    <html:select property="category">
    <html:option key="label.sms.chooseCategory" value="key"/>
    <html:option key="label.sms.students" value="key"/>
    <html:option key="label.sms.customer" value="key"/>
    <html:option key="label.sms.other" value="key"/>
    </html:select></td></tr>
    thanks in advance
    manasi
    Edited by: ram.manasi on Jul 2, 2008 1:37 AM
    Edited by: ram.manasi on Jul 2, 2008 1:39 AM

    You might have more luck in the Struts forum/mailinglist at their own homepage at apache.org.

  • Ical sync assign default category

    Does anyone else have trouble assigning the default category to new events created one the iPhone?
    iTunes appears to only let me select one category despite showing all of them in the drop down menu.

    Hi irfanh,
    You can select only one calendar from the Pull down menu in iTunes for new events.
    I created an iPhone Calendar and put all my new events in there from my iPhone, then at the end of the day I sync my iphone calendar and place the new events in the correct calendars....
    Not great but that's the best I could come up with....
    F

  • Set Default category for IBASE

    Hi Experts,
    I have an issue with Ibase and that is I need to set a default category for the IBASE as '01'.
    Though there is only one category is there for Ibase I am still getting the pop-up for the Selection when I click on IBASE-Create in Web UI.
    The requirement is not to have the pop-up for selection and it should take default category when i say create on IBASE.
    plz help me in this regards.Any help is appreciated .
    thanking U for the help,
    Sree.

    Hi kasper /rohit,
    pls look into this and provide some insight to me.
    here is the code .
    code from ip_create() method to block pop up is
    CONSTANTS: lc_maxrow1  TYPE int4 VALUE 1,
    DESCRIBE TABLE gt_ibtyp LINES lv_rows.
      IF lv_rows > lc_maxrow1.
         CHECK SY-SUBRC = 0.
    *   lv_rows = lc_maxrow.
      lv_title = text-cre.
      lv_descr = text-sel.
    create_popup = comp_controller->window_manager->create_decision_popup( iv_title             = lv_title
                                                                             iv_description       = lv_descr
                                                                             iv_visible_row_count = lv_rows
                                                                             iv_display_table     = gt_ibtyp
                                                                             iv_visible_columns   = lt_col_def ).
    create_popup->set_on_close_event( iv_event_name = 'CREATE_POPUP_CLOSED' iv_view = me )."#EC  NOTEXT
      create_popup->open( ).
    ENDIF.
    it has stopped the creation of pop up and in the method EH_ONCREATE i wrote
    ls_param-name  = cl_crm_ibase_il_constant=>createparam.
      ls_param-value = '01'.
    *  ls_param-value = ls_ibtyp-ibtyp.
      APPEND ls_param TO lt_param.
      lr_bol_core = cl_crm_bol_core=>get_instance( ).
      TRY.
          CALL METHOD lr_bol_core->root_create
            EXPORTING
              iv_object_name  = cl_crm_ibase_il_constant=>root_object
              iv_create_param = lt_param
              iv_number       = 1
            RECEIVING
              rv_result       = lr_root.
        CATCH cx_crm_unsupported_object .
      ENDTRY.
      CHECK lr_root IS BOUND.
      entity ?= lr_root->get_current( ).
      IF entity->lock( ) = abap_true.
        entity->switch_to_change_mode( ).
      ENDIF.
    Here the problem is the ibheader component is not getting the data
    which it used to get by selecting the category in pop up and
    all the screen is empty with out any data.
    Is there anything to be written in IP_MAIN or some thing to be added to the existing code.
    Thanking U,
    Sree.
    Edited by: Sree on Dec 3, 2008 2:32 AM

  • How to remove default name in "Workflow owned by" in Status Monitor?

    Hi,
    I want to be able to view different users' Expenses workflow from the responsibility "Workflow Administrator Web (New)", however, the "workflow owned by" is defaulted to be the person who login.
    Can anyone advise how I can remove this set up?
    Thank you!
    Ling

    Hi,
    The owner of the workflow process will be the person who started it. The WF_ENGINE.SetItemOwner API is used to set this, or it is defined in the creation process automatically.
    If you want to access workflows which are not owned by you, then you need to log in as a user who has been assigned the responsibility which is configured to be the Workflow Administrator. The default value for this is SYSADMIN, but it may have been changed in your system - have a look at the Administration tab from the Workflow pages, and it will show you what responsibility / which user is configured as the workflow administrator. Only they can access workflows which do not belong to them.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • Turning off the default outcome in workflow step

    Hi,
    In a workflow step, I linked a method xxx, in method xxx I have coded 2 outcomes, when i use this method in my step I am getting a default outcome "Step executed" outcome in addition to the outcomes already coded in the method. so instead of 2 outcomes i get 3 outcomes, i am not able to turn off the default outcome. is their anyway working around this problem? please help.
    Regards
    Narendiran Rathinavelu

    Hi,
    Can you be more specific when you say "overwrite" i went to the tab outcomes and try deactivating it, but it is not allowing me to, please help.
    Regards
    Naren

  • BP_HEAD_SEARCH/MainSearchShuffler Defaulting category does not work

    Hello,
    at the moment I implement the search for accounts.
    A requirement is, that only corporate accounts can be searched.
    So I enhanced the view BP_HEAD_SEARCH/MainSearchShuffler and the context node search.
    There I redefined the method get_v_category. All entries (private accounts, all accounts...) are deleted in the ddlb,
    only the category 'corporate account' is in the ddlb now.
    But I have the problem that is described in note 1308330: If you go to account search and search the first time, the results are not shown in the result list. But above this list there is a message: "x Accounts found". The entry in the search field is also deleted when you click on search.
    If you search again, than the results are shown and everything is ok.
    How can I solve this problem?
    Can somebody help me, please?
    Kind regards
    Semra

    Hi Semra,
    I had the same task, but I solved it differently.
    First I added the following code:
    Component: <BP_HEAD_SEARCH>
    View          : <MainSearchShuffler>
    Class         : <ZL_BP_HEAD__MAINSEARCHSHU_IMPL> (because the component and the view are enhanced)
    Methode     : Overwrite <DO_INIT_CONTEXT>
    Code          :
    method DO_INIT_CONTEXT.
      CALL METHOD SUPER->DO_INIT_CONTEXT.
    Default the Account type for the search to <Corporate Account>
      typed_context->search->set_category( ATTRIBUTE_PATH = ''
                                           value          = '2' ).
    endmethod.
    Now you have only to take out the account type out of the shuffler view configuration.
    Best Regards
    Patrik

  • Override Default Page Activation Workflow

    Hello,
    I am trying to override the default handling of Authors requesting page activations.  By default, an Author that doesn’t have Replication privileges has the request sent to the Admin group.  We’ve created several workflows specifically for different groups since each has their own approval flow:
    CQ User Group                 CQ Workflow
    Consumer >>                     Consumer Approval Workflow
    eCRM >>                             Consumer Approval Workflow
    Business >>                        Business Approval Workflow
    I realize the Author could select the workflow from the Sidekick, but I need ot ensure the correct workflow is assigned if they simply click “Activate” from the Sidekick or the Site Admin (Websites) page.  What’s the best way to accomplish this – writing some sort of servlet, using the Dynamic Participant Step, something else?  The logic would be fairly straight forward – on activation request, check user group and assign page to pre-defined workflow and initiate.

    You can set this in version 5.1.
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "anil" <[email protected]> wrote in message
    news:399aba85$[email protected]..
    How we can override default error page (404) in WebLogic ver 4.5.1 ? Wehave already set property weblogic.httpd.errorPage.404=URL in
    weblogic.properties file , but it is not working with 4.5.1
    >
    We would like to have solution in properties setting, because changing thecode is not possible
    >
    Thanks in Advance
    anil

  • Set Column Default Value with Workflow

    How to set Column Default Values using a workflow.
    <input alt="Mark as abusive!" id="ctl00_m_g_e11f6e6d_9b4b_42d7_97fb_486623821166_ctl12_ctl03_abuseButton_710" name="ctl00$m$g_e11f6e6d_9b4b_42d7_97fb_486623821166$ctl12$ctl03$abuseButton_710" src="http://www.sharepointforum.nl/_layouts/images/TOZIT/SharePointForums/abuse/abuse.png"
    style="border-width:0px;" title="Mark as abusive!" type="image" />
    15 seconds ago
    After I add an item including metadata in a List, a Workflow starts to create a Library Folder with rootfolder, subfolder and sub-subfolder names based on the List first three column values. 
    I like that the unique created library subfolder automatically receives several additional List column values in its Column Default Value with that workflow.
    After done, documents added to this subfolder are automatically populated with Metadata from the parent Subfolder.
    Workflow standard function can be used  to populate the folder Column Value to this but not the Column Default Value.
    Does someone has a solution how to set Column
    Default Value using a workflow?
    I like to use such workflow in Sharepoint 2010.
    Thank in advance.

    Hi,
    I think it cannot be achieved by workflow.

  • Any reference tell me why default install of Workflow manager is giving "BUILTIN\Administrators" permission?

    I installed Workflow manager for SharePoint 2013. After install completed I found the related databases (SbGatewayDatabase,
    SbManagementDB) have granted permission to "BUILTIN\Administrators". My question is why it is not granting to specific account like the farm admin or the search engine crawler? Can I change it after installation? Thank you. It is not much article
    online talk about workflow manager.

    HI Mark,Is the user name that your trying to install is already in Built-In,not necessary to change the permissions.If its not,then you can  change the account.
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Need to create a Default Value or WorkFlow with Time Expressions

    There are numerous times where our people's targets are measured by week. Our weeks run from Monday through Sunday so we say "week ending" is on Sunday night at midnight. Each rep puts in calls, proposals, etc. but are measured on each weeks targets.
    I was able to create an expression in analytics that would take the Created Date and look ahead to find that week's Sunday. I need to return that date and save it on the record itself to speed up retrieval as well as limit how many places/reports I need to perform this very common calculation. This will also allow the user to quick search their activities over a given week since it will be stored in an indexed date field.
    Example: If today was Thursday 5/12/2011 then I would want the function to return 5/15/2011.
    Here is how I solved it in Anaytics on a report which just looks at the DAYOFWEEK (1-7) to determine if it is a mon-sun and then figures out how many days to add to get me to the next Sunday.
    TIMESTAMPADD(SQL_TSI_DAY, (8 - CASE WHEN DAYOFWEEK(CAST(Activity."Created Date" AS DATE)) = 1 THEN 8 ELSE DAYOFWEEK(CAST(Activity."Created Date" AS DATE)) END),CAST(Activity."Created Date" AS DATE))
    How do I modify this so I can do the same thing with Expression Builder?

    I tried the above expression and it wasn't getting me a guaranteed result. The date that I'm trying to convert is the actual "CREATED DATE" timestamp field. In some cases I was getting the correct date and in others I was getting one day less which breaks the calculations.
    What I may not understand is how this will work and if time zones come into play at all. I need it to set the time to the Sunday MM/DD/YYYY 12:00 AM timestamp no matter what timezone they are in? I'm not sure if all of the reps even have their time zones set correctly. In some cases the date is correct but the time is set to 1:00AM/2:00AM/etc.
    It may just be the time zones but I tried a different function as well just in case:
    ToChar([<CreatedDate>] + (6 - IIf(1.0 * IfNull(Mid(1.0 * JulianDay([<CreatedDate>])/7, 8, 1), "0") <=2, 1.0 * IfNull(Mid(1.0 * JulianDay([<CreatedDate>])/7, 8, 1), "0") , IIf(1.0 * IfNull(Mid(1.0 * JulianDay([<CreatedDate>])/7, 8, 1), "0") = 4, 3, IIf(1.0 * IfNull(Mid(1.0 * JulianDay([<CreatedDate>])/7, 8, 1), "0") = 5, 4, IIf(1.0 * IfNull(Mid(1.0 * JulianDay([<CreatedDate>])/7, 8, 1), "0") = 7, 5, IIf(1.0 * IfNull(Mid(1.0 * JulianDay([<CreatedDate>])/7, 8, 1), "0") = 8, 6,-99)))))),"MM/DD/YYYY")
    Basically (today + the number of days until Sunday) truncated to MM/DD/YYYY format which hopefully gets me a MM/DD/YYYY 12:00 AM format.

  • Workflow disposition rule category

    Hi all,
    I'm trying to use workflow to review new category disposition.
    I'm following the documentation:
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10640/c07_generalconfig.htm#BHCJHBAJ
    and
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10640/c14_disp_instr.htm#RMDSG483
    When I create new disposition rule, during the save I facing the following error:
    "Not authorized to perform action. Unable to check in a content item with CatDispositionsCheckinDefaults as Content ID. This content item is used to drive default metadata for checking in category dispositions."
    Someone already faced this?
    Edited by: will.BR on 13/09/2012 07:45

    Hi all,
    I'm trying to use workflow to review new category disposition.
    I'm following the documentation:
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10640/c07_generalconfig.htm#BHCJHBAJ
    and
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10640/c14_disp_instr.htm#RMDSG483
    When I create new disposition rule, during the save I facing the following error:
    "Not authorized to perform action. Unable to check in a content item with CatDispositionsCheckinDefaults as Content ID. This content item is used to drive default metadata for checking in category dispositions."
    Someone already faced this?
    Edited by: will.BR on 13/09/2012 07:45

  • How to set default sync calender category in Entourage 2008

    I am using Entourage 2008. Syncing it with ical then sync with iphone (as iphone cannot sync directly with Entourage). Everything works fine right now except that i cannot set default calender event category on Entourage.
    now, whenever i make a calender event on ical or iphone even enotourage. it default category as "none", how do i make it default to be "work" category? Now i have to go in every time to chage it, which makes a lot of trouble.
    Please help~!!!!
    Jason
    Message was edited by: jsky

    Hi,
    Try this procedures.
    1. Dont open your SBO program.
    2. Goto C:\Program Files\SAP\SAP Business One\Conf\ folder
    3. Delete file b1-local-machine.xml
    4. Log to SBO program.
    5. Apply all necessary authentication then select SQL_2008 then log.
    6. After logging exit to SBO program.
    7. Re-log again if SQL_2008 is already in default.
    Thanks.
    Clint

Maybe you are looking for

  • Converting Word .doc File with Hyperlinks to PDF

    There appear to be a rather large number of posts in this forum describing problems similar to mine. I've tried most of the work-arounds suggested with no good results. First the basics. I'm running Adobe Acrobat 8 Professional (8.1.3) and Microsoft

  • Oooops my neighbours can access my Infinity

    Hi, To test my new Inifinity's speed on a better PC I borrowed my friendly neighbours laptop and entered my wireless/password key into their laptop so I could log into my network. However their laptop has now "remembered" my password and they can now

  • General veriable in (select * from cust where id in(:var))

    hi i deal with view object and i have this query SELECT * FROM customers WHERE customers.id IN (:val); but i want pass value for val =101,201,301 how can i do it and what is the type of variable to input at the same time 1,2,3 and query filter ? than

  • Menus for different operating systems

    I have a site with a Spry menu which works for Android, but does not work on iOS.  I have a pure css menu for the same site which works on iOS, but not on Android.  Is there any way of getting the page to detect the OS and then pull up the appropriat

  • Cant acess bbm on Q10

    Something weird happened today. BBM closed and whenever I open BBM , I cant access to it . it is written BBM SETUP 1- Opening BBM 2-Associating BBM with your Blackberry Account 3-you are singed in with the following Blackbeery Id : (my email) then 3