How to get "Open Document " link

Dear  Friends,
I have customized a Requisition Notification based on PL/SQL documents and work flow concepts.
I have created no.of requisitions to test. Each requisition have 3 persons involved say A ,B , C
One for submitting ,other two for approval .
After person B approves., it will go to C. till now  Everything working fine ,
But In person C's notification list ,  the link called "Open Document " is missing to open the submitted requisition.
Do I NEED TO SET UP ANY THING .
How to resolve this .Any idea .Plz share.
Let me know for any clarification.
Thanks
Aravinda.

Dear friends
It's solved.
Just add Purchasing responsibilty to that user to whom  that "open document link " is not visible in the notification.
Thanks
Aravinda.

Similar Messages

  • Open Document Link on PO Approval WF

    In the PO Approval Workflow, if you have the proper responsibility, an "open document" link is displayed that, when clicked, takes the user to a screen entitled "Notifications to Releases".
    This function is available to our Purchasing Super User responsibility but is not available for the Purchasing Approver responsibility. I'm trying to change that.
    Using help, I determined that the form associated with "Notifications to Releases" is POXPOERL. That form is assocated with the following functions and menus:
    FORM_NAME     FUNCTION_NAME     MENU_NAME
    POXPOERL     PO_POXPOERL     CHV_CHVSSWKB_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXPOVPO_FUNCTIONS
    POXPOERL     PO_POXPOERL     PO_PURCHASE_ORDERS_GUI
    POXPOERL     PO_POXPOERL     POS_INTERNAL_HP_MENU
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPPOERL_VIEW     PO_REQUESTOR_GUI
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXPOERL_FUNCTIONS
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXBWVRP_FUNCTIONS     
    I've tried, under Functional Developer, to add several of these to the menu for Purchasing Approver. When they show up on the menu and I click them, I get a message stating: "You are not setup as a buyer. To access this form you need to be a buyer."
    All I want is for people to be able to see and use the "Open Form Command". Am I going about this the wrong way?

    I was probably not clear enough in my original question.
    We want people who are approvers - but not necessarily buyers - to be able to open the form from the link. I'm not set up as a buyer, but I have the Purchasing Superuser responsibility and I can open the form.
    I guess, bottom line... some more information on how to make links to eBiz forms work from WF would be helpful. I've not found much in the Oracle-supplied documentation that we have; I've read what's in the Developer's Guide and the Admin guide. Can anyone suggest a web link or two that might shed more light on the process?

  • New document alert: How to get PDF documents into Adobe Reader for iOS

    Opening PDF Files in Reader for iOS (iPhone and iPad) has been very helpful to many users of Adobe Reader for iOS.  However, Apple has drastically changed the user interface in iOS 7, which made the original document obsolete. 
    According to Apple Developer Support's App Store Distribution page, 89% of devices connected to the App Store are using iOS 7 during a 7‑day period ending June 29, 2014.
    Because of the exceptionally high iOS 7 adoption rate, Adobe Reader for iOS version 11.3 now supports iOS 7 only.
    Here are the new How-To documents for iOS 7.
    How to get PDF documents into Adobe Reader for iOS (iPad on iOS 7 version)
    How to get PDF documents into Adobe Reader for iOS (iPhone on iOS 7 version)
    (It had to be split into two separate documents because each contains way too many screenshots.)
    Hope these documents are as helpful as the original one.
    Please let us know if you have any feedback or suggestions on the topics for other help documents/tutorials.

    Dennis (or any Adobe rep),
    Any updates to the OP's question? I'm with a large government agency, and we're moving away from GoodReader for reasons I can't go into here, and the ability to add user-defined bookmarks within the app is a mandatory feature for the document reader we select. I have the latest version of Adobe Reader (11.6.1) installed on my government iPad, and the ability to add user-defined bookmarks still seems to be missing. Does Adobe have any plans to add this feature, or is it already present and I'm simply overlooking it?
    Thanks,
    Cam

  • How do I open documents in already in ibooks with Reader?

    How do I open documents already in ibooks in Reader?

    You realize that Adobe Reader doesn't read EPUB files (most of what iBooks does), right? It only reads PDF files.
    If you have a PDF already that in iBooks, you'll have to get it out of iTunes on your Mac or Windows computer. iBooks doesn't allow sharing with other PDF/EPUB readers.
    Follow the instructions in this document about using iTunes (the section called Personal Computer thru iTunes). You'll need to export the PDF to your computer, then re-import it using the instructions into Adobe Reader.
    iBooks is not a good sharing citizen!

  • How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "

    JDeveloper 11g, Windows 7(64 bit), ADF Faces
    package view.backing;
    import java.beans.IntrospectionException;
    import java.util.ArrayList;
    import java.util.List;
    import org.apache.myfaces.trinidad.model.ChildPropertyTreeModel;
    import org.apache.myfaces.trinidad.model.TreeModel;
    public class TreeModelAdapter {
    private Object _instance = null;
    private transient TreeModel _model = null;
    public TreeModelAdapter() {
    ArrayList<TreeItem> rootTreeItems = new ArrayList<TreeItem>();
    TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com");
    TreeItem treeItem2 = new TreeItem("Dog", "http://www.someurl2.com");
    TreeItem treeItem3 = new TreeItem("Cat", "http://www.someurl3.com");
    TreeItem treeItem2_1 = new TreeItem("Blue Heeler", "http://www.someurl4.com");
    TreeItem treeItem2_1_1 = new TreeItem("Rover", "http://www.someurl5.com");
    TreeItem treeItem2_1_2 = new TreeItem("Ruffus", "http://www.someurl6.com");
    rootTreeItems.add(treeItem1);
    rootTreeItems.add(treeItem2);
    rootTreeItems.add(treeItem3);
    ArrayList<TreeItem> treeItem2Children = new ArrayList<TreeItem>();
    ArrayList<TreeItem> treeItem2_1Children = new ArrayList<TreeItem>();
    treeItem2Children.add(treeItem2_1);
    treeItem2.setChildren(treeItem2Children);
    treeItem2_1Children.add(treeItem2_1_1);
    treeItem2_1Children.add(treeItem2_1_2);
    treeItem2_1.setChildren(treeItem2_1Children);
    this.setListInstance(rootTreeItems);
    public TreeModel getModel() throws IntrospectionException {
    if (_model == null) {
    model = new ChildPropertyTreeModel(instance, "children");
    return _model;
    public void setListInstance(List instance) {
    _instance = instance;
    _model = null;
    How can I open the links on the TreeItem treeItem1 = new TreeItem("Fish", "http://www.someurl1.com"); on a new page?

    In your af:tree nodeStamp facet you have access to the node (TreeItem in your case). If your TreeItem has a getter method for the url (you did not provide the TreeItem code) you can put an af:goLink in the nodeStamp and set the destination attribute to #{node.url} and set the TargetFrame of the golink to '_blank':
    <af:tree ...>
      <f:facet name="nodeStamp">
        <af:goLink text="goLink 1" id="gl3" destination="#{node.url}" targetFrame="_blank"/>Timo

  • How to get Open Balance for the year and Total Ending Balance?

    For a given account, how to get Open Balance for the year (Cumulative Ending Balance) and Total Ending Balance (Cumulative Ending Balance)?
    Is there any function module available? or should I read from some tables? Please advice.

    Hello Paul,
    You could try calling one of the following BAPIs - see which one meets your requirement. They are documented well so shouldn't be a problem finding out the correct one for your requirements.
    BAPI_GL_GETGLACCBALANCE      
    BAPI_GL_GETGLACCCURRENTBALANCE
    BAPI_GL_ACC_GETBALANCE      
    BAPI_GL_ACC_GETCURRENTBALANCE
    BAPI_GL_ACC_GETPERIODBALANCES
    BAPI_COND_VAL_DECRE_BALANCES
    You might have to put in some of your own logic after the BAPI call to get what you want.
    Hope this helps,
    Cheers,
    Sougata.
    p.s. Also look at FM FAGL_GET_ACCOUNT_BALANCE
    Edited by: Sougata Chatterjee on May 7, 2008 11:47 AM

  • How to get opening balance of a g/l account using query ?

    Dear all,
    I'm developing consolidated g/l accounts debit,credit totals month wise with opening & closing balances thru query based report,
    i'have got expected results except opening balance g/l account,
    How to get opening balance of a g/l account based on date as conditonal parameter ?
    Any one throw light on this ?
    Jeyakanthan

    Hi ,
    Please kindly help me on this.I don't know how to calculate opening bal and closing bal over a period of time by Quarter, and how to generate the reprot using crystal reports and please suggest me on this how to go ahead with this report.
    Here you can go through the reprot requirement , and also an attachment of my Report template.
    we have "Category of Investment" , "Income On Investment" ,"Gross yield" and "Net yield" are  report fields.
    1)"Category Of Investment " is Hardcoded.
    2)In this we have to get  "Investment" column from VTBFHAPO(BZBETR Field) table Database based on
    Flow type(SFHAZBA) in VTBFHAPO table ='0100' for bonds category.
    3)"Income on Investment" also we will get from DB using the following formula.
      Income On Investment= "Interest IncomeAmortizationCapitalgain"
    4)With the Date field(Making Date dimension based on date(DCRDAT) field in VTBFAHPO table.
    By Current Quarter,Year to Date,Last year)
    5)Opening bal---Investment
    Purchase--Flowtype=0100
    Meturity/Sales--Flowtype=0200
    Closing balance=Opening bal+(Investment or Purchase)-(Meturity or Sales)
                                      '0100'                 '0200'
    Here '0100' and '0200' are Flow types based on this i need to get value from the same Field.
    we need to Calculate "Gross yield" .
    The bellow are formulas  to evaluate "Gross yield "
    Ist Qtr  .Gross yield=Investment income/(((April opening balanceApril closing balance)/2)((May opening balanceMay Closing Balance)/2)((June opening balance+June closing balance)/2))/3)
    Ist qtr. Year to date   Gross yield=Investment income/(((April opening balanceApril closing balance)/2)((May opening balanceMay Closing Balance)/2)((June opening balance+June closing balance)/2))/3)
    Investment income=interest incomeamortisationcapital gain
    Iind Qtr.Gross yield=Investment income/(((July opening balanceJuly closing balance)/2)((Aug opening balanceAug Closing Balance)/2)((Sept. opening balance+Sept. closing balance)/2))/3)
    Iind Qtr. Year todateGross yield=Investment income/(((April opening balanceApril closing balance)/2)((May opening balanceMay Closing Balance)/2)((June opening balanceJune closing balance)/2))((July opening balanceJuly closing balance)/2)((Aug opening balanceAug Closing Balance)/2)((Sept. opening balance+Sept. closing balance)/2))/6
    This data should display over a period of time. based on "Current Quarter","YearToDate" and "Last year"
    The quarter starts from April,i,e FY,  I Like this i need to generate the report.
    Thanks in advance.

  • How do I open documents created in apple works that will no longer open?

    How can I open documents created in appleworks that will no longer open now that I have pages?

    If you have the Apple iWork '09 suite installed, you can open pure AppleWorks word processing, spreadsheet, or presentations in Pages, Numbers, and Keynote respectively. You can not open AppleWorks documents in Pages v5, Numbers v3, or Keynote v6.
    If you do not have the above iWork '09 suite, then download the free LibreOffice suite. Drag and drop your AppleWorks documents on the LibreOffice icon, and it will sort out what will open them. Note: LibreOffice will pause shortly after it takes you to an optional donation page — before continuing the download. Everything installs under /Applications/LibreOffice.

  • How to get open production orders by plant wise

    Hi,
    How to get open production orders by plant wise.
    i know from tcode COOIS, is it possible to get from this. if so what are the parameters we have to give to get open production orders by plant wise.
    is there any tcode or tables available , please provide details .
    regards,
    Hari priya

    Hi,
    What is your definition of Open Production Orders?
    Definetly you will get the report from COOIS for Plant wise.
    Whther you want to consider all the Orders having the Status REL but not DLV?
    Then there is a chance of having the Orders, still with PDLV status but GR is done for the full Qty. May be you don't want to consider the TECO status, eventhough the Order is short closed??
    Better to ommit the Orders with CRTD status also..
    So, based on this which status to consider and which status not to consider..
    You can define the "Selection profile status" in BS42.
    Use this selection profile in COOIS, so that the rsults will be accurate..
    Best Regards,
    Siva

  • HT2474 when I am opening any application including safari, these icons are not showing in dock, how to get open applications in my dock?

    when I am opening any application including safari, these icons are not showing in dock, how to get open applications in my dock?

    This could be a plist corruption problem, but I'm not sure.
    Sometimes, the preference list files get corrupted. You can usually just remove them and they'll get re-created. This may require you to reset certain settings. A notable exception to this is the Mail plist which actually stores the Library structure of your email accounts. Deleting the Mail plist will definitely cause lots of problems, but is recoverable.
    The plist files are stored in the /Users/username/Library/Preferences/ folder. They usually have the naming convention of com.company.programname.plist.
    A simple troubleshooting technique is to move a suspect plist file out of the Preferences folder and start up the app, again. It will re-create the plist from scratch.
    In your case, I would try the com.apple.dock.plist. You can use Activity Monitor to kill the Dock app and it will restart. Or, you can log out and log back in.
    There is a new file with Leopard called com.apple.dock.db. I haven't figured out what it does, but you might try moving it out. If anything gets worse, you can move the old file back in replacing the newly created one.
    This all sound somewhat odd, so I don't know if this will help.

  • How to get the "Document Info" in illustrator

    In illustrator using "Document Info" we can get the file information. Like that how to get the document information using script. Anyone please help me.
    Regards,
    Prabudass

    I think sample code in the SDK contains a 'skeleton' plugin, I'd start with that. It should also provide a list of suites that get automatically loaded, I think it's in Suites.h. Just make sure AIDocumentSuite is in the list, and if it's not, just follow the examples in that file to add it. That should end up with a global variable called 'sDocument', which has all the suite functions as methods.
    Then it's something like:
    AIDocumentSetup setup;
    AIErr error = sDocument->GetDocumentSetup(&setup);
    // check error to make sure it's kNoErr
    Then you just have to inspect the setup struct for (hopefully) the answers you're looking for.

  • How to get Adobe documents to Adobe Reader on Iphone?

    I downloaded Adobe Reader to my Iphone. When i tapped on a Adove file i got on my email(on my iphone) it said "saving to disk", wich disk is it talking about? And how can i reach it from my Adobe Reader app?

    MargretheS,
    What is the mail app that you use on your iPhone.  Apple Mail (the default iOS mail app) does not show the message like "save to disk".
    Did you find the answer to your question in How to get PDF documents into Adobe Reader for iOS (iPhone on iOS 7 version)?
    Please let us know if you have additional questions.

  • How to get payment document number from paid column in monthly invoice

    Dear experts
    I use SBO japan version and i need to know how to get payment document number from paid column in monthly invoice ?
    in table MIN1, only contain invoice and credit note document number, there is no payment document number
    thank you for your help
    Best Regards
    JeiMing

    Dear Gordon
    Yeah, you are right, i can use field MIentry in RCT2
    thank you
    Best regards
    jeiming

  • How to get the document path of the pictures uploaded for products?

    Hi Gurus,
    How to get the document path of the pictures uploaded for products uploaded through tcode COMMPR01?
    Many Thanks,
    Neeraj

    client path.
    I need to get the client path in order to download files form server to client.
    Best regards,
    Huy.

  • How to get the document number for a ware house order.

    Hello gurus,
    how to get the document number for a ware house order. [if GI is posted refering that WH order] .. is there any report?
    Thanks in advance

    There are several options.  When you post a Goods Movement, you can use LB12 -display Transfer Requirement for material document or LB11 Display TR for material.
    Depending on how your system is set up you may have gotten a Transfer Order automcatically.  In this case you can look at LT24 - Transfer Order for material.

Maybe you are looking for

  • How can I create events dynamic for a Group/List?

    Hey, atm I'm programming a little application where i want to add elements to my center-pane. Simpyfied I got: - Center Pane : here shall the elements appear on right click in bottom-pane. This pane shall be used as anything like a playground where y

  • Comma and Decimal point

    Hi Gurus, I am encountering a problem regarding printout of our SOA Instead of the standard format of the total value (comma then decimal point (ex. 2,559.62)) output is (decimal point then comma(ex. 2.559,62)). This always happens to a particular cu

  • COGS Posting at the time of Invoicing

    Hello Experts, We have a requirement wherein the COGS Posting should happen at the time of Invoicing. Our requirement is as below. At the time of Post Goods Issue Stock in Transit A/c Dr      Finished Goods A/c   Cr At the time of Invoicing we are ex

  • New to Aperture, Mac and unsure...

    ...about the age-old "managed vs. referenced" dilemma. I'm seeing many of the pros and cons of letting Aperture 3 manage my photos vs. managing them myself and referencing them with the software. What I'm not clear on is whether there is any way--usi

  • Photoshop CS5.1 Extended

    Hi,      My dad purchsed Abobe Photoshop CS5.1 Exteneded for me from Apple a few years ago. Since then I have changed the email address of the apple ID that he bought it on. I have recently bought a Macbook Pro and was wanting to download the Photosh