How to specify approver to a Document

Hi All,
Here is my requirement, while uploading a document via Oracle contributor Document check-in form in Webcenter Spaces, can I mention Approver or Reviewer for that document?
I know that we can specify the approver/reviewer at folder level. I want to know how to do that for a document.
Any help would be greatly appreciated.
Thanks!

Yes, it is possible. However, this is actually 3 questions in one - all of them are related to WebCenter Content and one slightly also to WebCenter Portal.
1) How to specify a reviewer/approver for a workflow step?
As written in the manual (http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c05_workflows.htm#CEGGCBCA , step 16.), there are three options:
- select a specific user
- select a specific user's group (called alias in WCC)
- select a token
The first two are static, but a token can be dynamic - you have an option to write your own code in idocscript (see examples at http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c05_workflows.htm#CIHDJAAE ) which may implement any logic you wish.
2) How to allow a contributor to influence a workflow (e.g. select an approver, but also choose a workflow, etc.)?
What a contributor does is a) entering metadata b) entering the content, so OOTB the information influencing a workflow must be either in metadata, or in content. Usually, it is in metadata - you can a variable or a set of variables which may be evaluated during workflows.
A trick with folders is that you may pre-define the metadata for content checked-in the folder, but you still have to 'translate' the metadata settings into workflow logic by tokens.
3) How to do that from WebCenter Portal? (Contributor)?
Like WCC's GUI, Contributor can benefit from profiles - http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c04_metadata.htm#DAFIIEEI where you can define which metadata will be displayed/hidden/filled in, etc.

Similar Messages

  • How to edit approval document

    Dear Expert,
    My PO content X item with Descrpition(part number) abc1 now after approval we cant edit the same document.
    But GOOD PO is lie X item but different Description(part number) that is  abc2 rest of thing remain same.
    how to put a editing when part number change....
    is  the same thing can be done by SP procedure then how ?
    Thanks
    Kevin

    Hi Kevin,
    It is possible in SAPB1.
    yes, Thangaraj is correct.
    Try this,
    IF you add the Approved Purchase Order Document.
    than Copy to Goods Receipt PO Doc.
    IF you want to change the Item Description in Row Level on GRPO.
    Do this,
    ->> Open the Goods Receipt PO Doc.
    Change the NEW Item Description in ROW Level on GRPO against the Item X
    and dont Press the Tab button you should press Ctrl+Tab button.
    Regards,
    Madhan.

  • Error message:    "There is no default application specified to open this document."  How do I find app. to open file??

    I am trying to NETGEAR software for a Wireless USB adapter.  When I put cd in and click autorun.exe file it says "There is no default application specified to open this document."  How do I find app. to open file??

    Or if you get stuck, post back with details of the Netgear device you are attempting to use.
    I'm sure that we can get it to work, but be prepared that it just MAY have to go back, if for example it requires Mac OS X 10.4 or later - I found a lot of networking USB dongles seem to require OS X 10.4.11 or later. But Netgear are one of the better device manufacturers, so I'm hopeful it'll work just fine.

  • How to troubleshoot approval workflow of a rejected purchase order

    Hi,
    We are working in oracle applications 11i.
    I have a purchase order with status rejected that has hanged up in the system. The user rejected PO and the document has not been transferred to the PO buyer. From the application forms -> Forward documents window, I can see that neither the user who rejected or the buyer has the document.
    From System Administrator responsibility I can see that the workflow administrator can modify a PO that is only IN PROCESS,
    what shall I do?

    please check :
    http://oracle.ittoolbox.com/groups/technical-functional/oracle-apps-l/how-to-troubleshoot-approval-workflow-of-a-rejected-purchase-order-4211332

  • Paid Folios in-app purchase. How long to approve?

    Please,
    I would like to know about the experience that other users when submit folios to sell by in-app purchase. How apple needs approve these follios before upload to app store.
    Usually how long Apple get to approve?
    Thanks

    Richard,
    I'm actually going through this issue myself, wating for an IAP to be approved by Apple and I was under the impression that just the Product IDs get approved. But according to this thread at http://adobe.hosted.jivesoftware.com/message/4059543, specifically point #7 by Bob Bringhurst, that's not the case. Each folio gets downloaded, looked at, and then approved/rejected.
    I've been waiting for 4 days already on my IAP and nothing yet. It's really wreaking havoc with my newsstand dates.
    My next question is how to pre-load IAPs and get them mass-approved ahead of time. Is that even possible? What consititues being "on developer hold" as you mention?
    My best-case scenario is to have several of my magazine issue IAPs in the Approved state by Apple, then hit Publish via DPS each month when the issues become complete and have them magically appear on-time each month.
    Is this possible? Am I even understanding the process correctly? Thanks in advance for anyone's help!
    Cheers,
    CAL
    Message was edited by: CaliLyons310 - sorry, I specified wrong link at first.

  • How do I save a xls document in Java

    Hi!
    How do I save a xls Document from java?
    I mean, I want to specify which xls document to save and then save it.
    Any useful code would be of great help!

    This is the code!
    import java.io.*;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.util.Locale;
    import jxl.Workbook;
    import jxl.WorkbookSettings;
    import jxl.write.Label;
    import jxl.write.WritableCell;
    import jxl.write.WritableCellFormat;
    import jxl.write.WritableImage;
    import jxl.write.WritableSheet;
    import jxl.write.WritableWorkbook;
    import jxl.write.Number;
    import jxl.write.*;
    import java.io.IOException;
    import java.io.OutputStream;
      public class writeXls
            public String templateName;
            public String outputName;
          public writeXls (String t, String o)
             templateName = "c://"+t;
             outputName = "c://"+o;
          public void writeYearVolume(String []yearvolymeArray)
              WritableWorkbook workbook = null;
              try
                  // Setup workbook
                  WorkbookSettings ws = new WorkbookSettings();
                  ws.setLocale(Locale.UK);
                  ws.setEncoding("Windows-31J");
                  // Load workbook
                  Workbook template = Workbook.getWorkbook(new FileInputStream(templateName));
                  // Create new workbook
                  workbook = Workbook.createWorkbook(new FileOutputStream(outputName), template, ws);
                  // Create new sheet
                  WritableSheet sheet = workbook.getSheet(1);
                  // Create new label
                  Number amc1000= new Number(4, 1, Integer.parseInt(yearvolymeArray[0]));
                  Number amc800 = new Number(4, 2, Integer.parseInt(yearvolymeArray[1]));
                  sheet.addCell(amc1000);
                  sheet.addCell(amc800);
                  // Write wookbook
                  workbook.write();
                  workbook.close();
                catch (IOException e)
                  e.printStackTrace();
                catch (WriteException e)
                  e.printStackTrace();
                catch(Exception e)
                    e.printStackTrace();
      }The xls file is modified but not saved, how do I save the file?
    Some of the cells in the xls file contains formulas, because of that, the cells containing formulas dosen't update its value.
    if I however save the file manually then the cells are updated. I want to save the xls file automatically from Java.
    Any ideas on how to do that?

  • How to specify term file when using static html to run webforms 10g

    I'm using static HTML to run forms
    document.writeln('<PARAM NAME="serverArgs" ');
    document.writeln(' VALUE="escapeParams=true module=genoa.fmx userid= sso_userid=%20 sso_formsid= sso_subDN= sso_usrDN= debug=no host= port= term=/forms90/hsd65html/genoa.res"> ');
    I'm specifying the term as term=/forms90/hsd65html/genoa.res.
    During forms startup I get the message unable to read the file. I can bwoense the file by http://server/forms90/hsd65html/genoa.res
    Any idea how to specify the term file in static html.
    Thanks

    term is not a http address, but a directory address. So, you have to specify the path on the server:
    term=c:\oracle\forms90\.....

  • Numbers to CSV export script: how to specify the encoding?

    Hi,
    I'm using the following script to export a Numbers document to CSV:
    # Command-line tool to convert an iWork '09 Numbers
    # document to CSV.
    # Parameters:
    # - input: Numbers input file
    # - output: CSV output file
    # Attik System, Philippe Lang
    # Creation date: 31 mai 2012
    # Modification date:
    on run argv
      # We retreive the path of the script
              set myPath to (path to me)
              tell application "Finder" to set myFolder to folder of myPath
      # We get the command line parameters
              set input_file to item 1 of argv
              set output_file to item 2 of argv
      # We retreive the extension of the file
              set theInfo to (info for (input_file))
              set extname to name extension of (theInfo)
      # Paths
              set input_file_path to (myFolder as text) & input_file
              set output_file_path to (myFolder as text) & output_file
              if extname is equal to "numbers" then
        tell application "Numbers"
          open input_file_path
          save document 1 as "LSDocumentTypeCSV" in output_file_path
          close every window saving no
        end tell
              end if
    end run
    It works fine, except that I don't know how to specify the encoding of the text in the CSV file (Latin1, MacRoman, Unicode). This option is available in the export dialog of Numbers. Any hint on how to do that is welcome. (GUI Scripting?)
    Where can I find documentation on the iWork "vocabulary" available? Is there a definitive documentation somewhere? I tried to record an manual export in the script editor, without success. Script is more or less empty.
    Thanks!
    Philippe Lang

    A further note from Yvan. He's made some revisions to the script sent earlier.
    --{code}
    --[SCRIPT export to CSV with selected encoding]
    I added some features.
    (1) Defining the encoding thru the preferences file apply only if
    the application is not in use because the file is read only once in a session.
    A test urge you to quit Numbers if it is running.
    (2) info for is deprecated so it may be removed by Apple tomorrow.
    I no longer use it.
    (3) just for the fun, I added a piece of code allowing you to select the encoding on the fly.
    Thanks to the property chooseEncodingInScript, at this time the script use Unicode (UTF-8)
    (4) I'm wondering which tool is used to launch this script,
    I don't know the way to pass arguments when I run one.
    Yvan KOENIG (VALLAURIS, France)
    2012/06/13
    property chooseEncodingInScript : false
    true = the script will ask you to select the encoding
    false = the script use the embedded encoding
    on run argv
      set input_file to (item 1 of argv) as text
      set output_file to (item 2 of argv) as text
      set myPath to (path to me) as text
              tell application "System Events"
      set theProcesses to name of every application process
      set myFolder to path of container of (disk item myPath)
      set input_file_path to myFolder & input_file
      set output_file_path to myFolder & output_file
      set extname to name extension of (disk item input_file)
      end tell
              if extname is "numbers" then
                        if "Numbers" is in theProcesses then error "Please, quit “Numbers” before running this script !"
      if chooseEncodingInScript then
                                  set theList to {"Mac OS Roman", "Unicode (UTF-8)", "Windows Latin 1"}
                                  set maybe to choose from list theList with prompt "Choose the default encoding applying to export as CSV"
      if maybe is false then
      error number -128
      else if item 1 of maybe is item 1 of theList then
                                            30 -- Mac OS Roman
      else if item 1 of maybe is item 2 of theList then
                                            4 -- Unicode (UTF-8)
      else
                                            12 -- Windows Latin 1
      end if
      else
                                  4 -- Unicode (UTF-8)
      end if
                        do shell script "defaults write com.apple.iWork.Numbers CSVExportEncoding  -int " & result
      tell application "Numbers"
      open input_file_path
                                  save document 1 as "LSDocumentTypeCSV" in output_file_path
      close every window saving no
      end tell
      end if
    end run
    --{code}
    Regards,
    Barry

  • How to specify Single in memory instance of a jar in an ear

    i have an ear, containing 3 wars and 2 jars. these jar files are utility jar. and one of them has business logic lets say it application.jar. All the three wars use this jar. When ever a war file uses this jar, it gets its seperate memory instance. i want to make all the three wars use same single in memory instance of application.jar. but i dont know how to specify it. i am using websphere6.1. it will be great if someone can help me. thnx
    Ehtsham

    It's a pity !
    My problem is I tryed to save a FXG file containing images into a swf that will be able to change images sources dynamically.
    To do that, I create an empty FLA document (using JSFL), I import the FXG file into the scene.
    If I export my file into SWF in which I have injected this ActionSctipt :
    for (var x = 0; x < numChildren; x++)
      var e = getChildAt(x);
      trace(e + " " + e.name +" is "+getQualifiedClassName(e));
    I have this trace : [object MovieClip] _IMG_ is flash.display::MovieClip
    I think I cannot change the source of a MovieClip using ActionScript. Maybe I'm wrong ?
    So I would like to replace these objects (using JSFL) with UILoaders and setting the same x,y,width,height,source and then I will be able to change their sources using ActionScript.

  • Workflow Approval on Material Document

    Hallo,
    My client requires approval workflow on good receipts.
    I would like to share my vision and check with you feasibility or alternatives.
    I was thinking to exploit the 'Hold' status, as follow:
    1) go to MIGO, input data, put the document on hold
    2) start an approval workflow.
    3) when workflow ends, create the material document.
    Issue is on the business Object, as cannot use MKPF, as the Document on hold status does not get a document number yet.
    I have found that 'Held' document are stored in table MMIM_PREDOC_ORG,
    I was thinking to create an ZBusiness Object based on the key of table MMIM_PREDOC_ORG, and there create all the relevant methods.
    Still I have not figured out how can the approval can be performed technically. (no approve or release button on MIGO)
    Would you say this is a viable solution?
    Please let me have your feedback.
    Best Regards,
    Marco

    Either you create a module pool that looks like the MIGO Tcode with some button or you use a decisiontask with some options.
    Thanks
    Arghadip

  • How to define Approval Hirearchy for Fixed Assets?

    Hello All,
    Couls someone please tell me How to define Approval Hirearchy for Fixed Assets which should be different as compared to normal item purchase.Reply me ASAP
    Regards
    Aditya

    Hi,
    The AP invoice approval used AME rules for finding the approver. You can base you AME rules on virutally anything.
    In this particular case, you can base your AME rules on one of the followings:
    1. If any of the Distribution Accounts contain Fixed Assets natural account
    2. You can define a separate document category which should be used with invoices for FA Purchase and use the category in AME rules to find approver
    3. You can have a DFF at the Invoice Header level to indicate that this is a fixed asset purchase invoice and have this DFF to be used in AME rules.
    Gajendra

  • Applescript : how to create a new numbers document

    I know you have to use +make new+ command. But how to specify the path and name. I tried +at, properties+ nothing helps.
    My code:
    *tell application "Numbers"*
    * make new sheet at "Macintosh HD:Users:Nimmy" with properties {name:"test"}*
    *end tell*
    I get an error "Numbers got an error: Can’t make "Macintosh HD:Users:Nimmy" into type location reference". I don't know what should follow (isn't +location specifier+ path to the file?). I would be grateful for anybody who can help.

    (a) it seems a bit odd to try to make a sheet before making a document.
    (b) I assumes that to make a document the location would be a folder, not a string
    (c) to make a document, it would be useful to pass a legal document's name "test" is not one of them.
    I tried with
    make new document at folder "Macintosh HD:Users:yvan_koenig:Desktop:" with properties {name:"test.numbers"}
    This time all seems to be OK but the command failed.
    Normal as it was already described.
    As far as I know, at this time, to create a document we must rely on GUIscripting.
    set myNewDoc to my makeNewDoc("test.numbers", path to documents folder as text)
    on makeNewDoc(n, d)
    tell application "Numbers" to activate
    tell application "System Events" to tell (first process whose title is "Numbers") to tell menu bar 1 to tell menu bar item 3 to tell menu 1 to click menu item 1
    (* menu bar item 3 for menu File *)
    (* menu item 1 for New *)
    tell application "Numbers" to save document 1 as n in file (d & n)
    return (d & n) as alias
    end makeNewDoc
    Yvan KOENIG (from FRANCE samedi 14 février 2009 15:44:20)

  • Multiple Approval on single document

    Friends,
    How we will handle multiple approval on single document.
    Thanks in Advance
    Sukhjinder Singh

    Dear Sukhjinder Singh,
    In SAP Business One approvals on Documents is performed via the Approval templates (Administration - Approval Procedures - Approval templates). One of the aspects of the Approval Templates is the 'Stages'. In the Stage tab of the Approval Template the Approval Stage is chosen. If more than one approver of a document is required then in the 'Approval Stage' the field 'No. of Approvals required' should be set to number of approvals which the document needs. For Example, if a Sales Order should be approved by 2 people then the field 'No. of Approvals required'  should be set to 2.
    It is also worth noting that more than 2 approvers can be listed as approvers and any 2 of these approvers can approve the document.
    To find out more about approval procedures in SAP Business One read the document "Approval Procedures in Release 2004 A" which can be found on the documentation resource centre at the following location
    Service.sap.com -> Channel Partner Portal -> Solutions -SAP Business One -> Support -> OnLine Support - Documentation  Resource Centre -> SAP Business One 2004 A -> How to guides.
    I hope this helps.
    Noreen

  • How do I create a pdf document from my scanner?

    How do I create a pdf document from my scanner?

    If you are using Acrobat , then follow the below mentioned steps:-
    Scan a paper document to PDF using Autodetect Color Mode (Windows)
    1. Choose File > Create > PDF from Scanner > Autodetect Color Mode.
    2. If prompted to scan more pages, select Scan More Pages, Scan Reverse Sides, or Scan Is Complete, and click OK.
    Scan a paper document to PDF using a preset (Windows)
    1. Choose File > Create > PDF from Scanner > [document preset].
    2. If prompted to scan more pages, select Scan More Pages, Scan Reverse Sides, or Scan Is Complete, and click OK.
    Scan a paper document to PDF without presets
    1. In Acrobat, do one of the following:
    (Windows) Choose File > Create > PDF from Scanner > Custom Scan.
    (Mac OS) Choose File > Create > PDF from Scanner.
    2. Select scanning options in the Scan dialog box, as needed, and then click Scan.
    If you specify that you want to use the native scanner user interface instead of the Acrobat user interface, other windows or dialog
    boxes appear. Consult the scanner documentation information on available options. In Mac OS, the scanner user interface is always shown.
    3. If prompted to scan more pages, select Scan More Pages, Scan Reverse Sides, or Scan Is Complete, and click OK.

  • Approval for Delivery Document

    Hi Experts,
    My question is related to Delivery Document that how can we amend the  Delivery document again, because they compare the Packing list PLDS.(Right Click to find the Packing list).So there is any solution for that.In Simple word they want to change the information in Delivery Doc becaue they don't sure about there Rate & Quantity.
    Regards
    Amol

    Hi Amol
    you can not able to change the delivery after you added in the system. But you can set that as approval stages.
    Define the approval stages and check it out
    Ashish Gupte

Maybe you are looking for

  • Why is it that when I change the contacts on my phone, it changes them on my mom and dad's as well?

    My family and I recently got iPhones for Christmas. One for my dad, one for my mom, and one for me.  We also have an iPad 2.  They are all hooked up to iCloud via one username.  When we got the phones, we had trouble transferring our contacts from ou

  • Horizontalmenu IE6 loses drop down menu

    Hello, I'm working with the Horizontal menu bar and ran into an issue implementing in IE6. The site I'm working in has a table layout that is centered on the page using <center> or <div align="center"> This is also centering the dropdown menu that di

  • How to evaluate cross-line?

    For example, suppose that there are two set of line objects, river and road. I want to query their intersection point as the shape of bridges. I can't find some topologic relations in SDO_RELATE to specify "line cross (interior intersect but boundary

  • Table for Commitment Item Groups

    Does smbd. know a table for Commitment Item Groups and probably a function module which reads a commitment item group from a commitment item ? Kind Regards Alexey

  • Question about blocklist.xml

    OK so I was browsing thru my AppData\Roaming\Mozilla\Firefox\Profiles\********.default and I acdently clicked blocklist.xml and it opened in IE would have this infected my pc i noticed it had alot of blocked urls? or emails or somthing in there. plz