Attaching Customized Oracle Document with a WorkFlow

Hi Guys!
This thread is created by a total novice. So please bare with me for a while.
Please see the following question;
Q:1 Is it possible to attache a custom developed oracle form with a workflow. If yes what is way?.
Q:2 I have to route a document through number of users, who only instert their corresponding values. My solution to this is; that first make a work flow, then you have to have a oracle form as a document. Attach that document with the workflow and above all attach a hierarechy to it. Please advice that is this the right way or not? If not, please suggest some other solution; thanks.
Bilal Ahmed

Hi Juan,
For your issue, you can consider the actions as below:
Best Regards,
Eric
Eric Tao
TechNet Community Support

Similar Messages

  • How to attach an Excel document with the Workflow notification?

    Hi,
    I need to pass an Excel document through workflow process in several notification nodes. Do you have any demonstration example which shows how to implement it? I found some threads like this, but nobody send me the example. I think I need the example's with Oracle Text and workflow 2.6.3 and an example inside Oracle Collaboration Suite(OCS) Files. Please send these examples to [email protected]
    Thanks a million
    Tulip

    Hi,
    I had the same issue and I found that Oracle Workflow does not attach files. The solution is to create a table with blob, clob, ordsys, etc data types and reference to the file from a notification and a message.
    I did an interface with java to read the document, and then put the link in the oracle workflow message. The link opened the file.
    So, for any workflow development is recomended to use your own Entity-Relation Model, including the process number and the files attached to that process.
    Regards,
    Santiago Meneses
    [email protected]
    Quito-Ecuador

  • Not able to attach the scanned document with Interaction Record in SAP-CRM

    Hi Experts,
    I have a scanned document and I am trying to attach it with Activity in Interaction Record.
    I maintained the document ID refering to scanned document in table TOA01 with interaction record guid; however the attachment gets displayed in SAP-CRM GUI but i am not able to see the attachment in SAP-CRM GUI.
    Please help if someone has encountered a similar issue or propose a way to attach the document with acitivity in interaction record.
    Regards,
    Amit Gupta.

    Hello Amit,
    I am not able to understand your requirement correctly. Are you trying to attach the Document as a Attachment to the Interaction record (or) trying to attach it as a Archive Link Document??
    If you could give me more info.. I think I will be able to assist you with this as I have worked in this area...
    Cheers..
    Anand

  • Attaching custom defined document to the BEx-report

    Hai
    I created a query in the Bex-Query Designer and then publish in the web through portals without using WebTemplates.
    Now my client wants to attach a custom defined document(which requirment gathering document) to this query . How can i attach this custom define document to the query .
    When i publish the report in the web then i have following tabs.
    DataAnalysis
    Graphical Display
    Information
    Information Broadcasting .
    when i go to 'information' there i have "Query Documentation" tab . When i press this tab how can i get the my custom defined document
    pls let me know
    kumar

    Hi ,,
    Do this way....
    Go RSA1 --> Documents -> meta data
    then select object type ELEM and select object name <the query u want>
    and add a text there or u can download from the file.
    In BEX in query property check mark the document display then it will show a link in report and when u click that it will show the details..
    did u check this as sent in ur previous thread....
    Thanks,
    Debasish

  • Oracle BPM with FileNet Workflow

    Hi,
    As part of the project we need to integrate the current workflows implemented in FileNet with Oracle BPM.
    Can any one help me how can i achieve this.
    Thanks in advance.
    Edited by: user613889 on Jun 29, 2010 3:18 AM

    looks like a duplicate of FileNet workflow with Oracle BPM

  • Moving documents with a workflow from a document library to a folder and back to the document library

    Hello all,
    I have created a document library with a folder inside of it.
    By means of a workflow, I could move a document that was in the document library to the folder using the action “update path and name”. Now I need to do the reverse path, that is, using a workflow I’d like to
    move the document that is now in the folder, back to the document library but I can´t find the action “update path and name”. Do you have any ideas on how to solve this?
    Thanks a lot!
    Regards.

    Hi Juan,
    For your issue, you can consider the actions as below:
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Cannot attach pictures or documents with firefox to an email to send

    When attempting to send an email with attachments the attachments will not load with the firefox brouser. Never had this problem with IE. What the heck is Firefox language.

    Go here for information how to access your firefox profile.
    http://mzl.la/NYhKHH
    Directions from the website link above…
    Windows 7 - Vista
    1. Click the Windows Start button and type %APPDATA%\Mozilla\Firefox\Profiles\ in the Search box at the bottom of the Start menu, without pressing Enter. A list of profiles will appear at the top of the Start menu.
    2. Click on the profile with “default” in the name to open it in a window.
    Windows XP
    1. Click the Windows Start button, and select Run....
    2. Type in %APPDATA%\Mozilla\Firefox\Profiles\ then click OK.
    3. A window will open containing profile folders.
    4. Double-click the folder with “default” in the name to open it.
    Once in the default profile look for a file called …. User.js and if it is not there use notepad to create a user.js file in the same folder. After you have created the file reopen it and copy the following text into the file and save.
    user_pref("capability.policy.policynames", "allowclipboard");
    user_pref("capability.policy.allowclipboard.sites", "https://www.mozilla.org");
    user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
    user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
    After the file is saved then restart firefox.

  • Attaching word documents with process intsnace??

    Hi All,
    Iam using WLI 8.1. One of our reqmqnt is such that we need to attach many word documents with process instances.
    I believe this is possible using a data type as RawData. Can somebody confirm this??
    Thanks,
    Prashanth Bhat.

    Any thoughts?
    Yep.
    Why are you posting this question in the iPod forum?

  • Nested Custom Oracle Objects as interpreted by JDBC

    Hello,
    I have a number of nested custom oracle objects that all extend ORAData and ORAFactory. Should I specify one object, it has no problem writing it to DB using OracleCallableStatement. But I need to write this custom oracle object with another (few) subobjects below, so I created different classes which all extend ORAData (.toDatum) of their own, and map to corresponding oracel objects, but now that I try to do SetObject -- I get
    java.sql.SQLException: Fail to convert to internal representation: prog.objMyObj@131303f
    so my question is: Can JDBC handle "nested" custom oracle objects? Or is it simple types only as part of one struct ?

    Doing the following should provide a correct tree. Try it with a simple example first.
    1. Create a type that you want in the database.
    2.Extract it using jdbc.
    3. Write it back without modification. If this fails then I would guess that you simply can't do it with the driver.
    4. if the write works then traverse it and print out the name of each object in it.
    If you get to the last step then it will allow you to determine the correct types (if you traverse it correctly.) You can then try more complex examples so you can figure out the correct way to produce it.
    (Note that if was me I would try to eliminate this entire thing. But then I am not a big fan of weird database objects.)

  • How to attach a document with the Requisition Workflow?

    I am testing the Oracle Requisition Demo workflow.Whenever i initiate the
    workflow process with Reminder Requisition Document Option.The browser pop up
    with the Error "The requested URL cannot be retrieved". Can anyone please guide me how do i attach a document with this process?
    Regards,
    Abrar

    This field in the demo is designed to execute a PL/SQL procedure not store and attached document.
    for example if you launch it from the demonstration Page instead of the launch process page the following will be populated into the document field. (PLSQL:WF_REQDEMO.REMINDER_REQ_DOCUMENT/WFDEMO:A1)
    You can store a CLOB or BLOB in a workflow document attribute. Here is a link to the doc.
    http://download-west.oracle.com/docs/cd/B13789_01/workflow.101/b10284/defcom11.htm#doc
    If you want to upload and pass documents through a workflow you can do it in a variety of ways. Personally I would use Oracle Files if I wanted it off the shelf. Or use Oracle Text and the database and pass the document throught the workflow as a URL. There is also the CMSDK.

  • SPD List serial WorkFlow attach Dynamic approvers, Document Sets attached to List

    SPD Workflow:
    System : SharePoint 2013
     1. Approver's should be fetched from a people picker item of another List based on condition (Filter with department)
     2. Workflow should be serial & approvers should be dynamic from above list item people picker based on department condition
     3. As it is a List workflow i.e., Custom List is associated to Workflow but I need to upload a document set as a List item
     4. When ever user creates a New List Item, Initiation page should allow him to attach multiple documents, while uploading first document into list from Intiation page, it should create a unique document set with a sequence number and other documents
    should be added in the same document set & that document set should be attached to list item.
    5. Action from Email should reflect the workflow approval.
    /*below point is not Important to achieve in SPD*/
    6. I would like to create a separate List or New List after 1000 document sets are uploaded to workflow list & workflow should be associated automatically when a New List is created
    *I know how to achieve It from server or client side coding..
    suggest optimized way to achieve above points in SPD 2013 & OOB only?
    V

    Hi,
    I had tested again with multi workflows which are assigned to three users, they all worked well.
    At first, the workflow would send an email to the first approver, when the first approver approved; then send an email to the second approver, when the second approver approved; then send an email to the third approver.
    When the third approver approved, the workflow would completed, then the assigner who started the workflow would receive an email that the workflow has been completed.
    You can create a simple workflow to check whether it works.
    Such as you can just only use the “Start Approval Process” one action to check whether it works.
    Did the issue occur in other lists or libraries?
    You can create a new list or library, then create an approval workflow to check whether it works.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Attachment in oracle application custom form

    Hi,
    Can any one please give idea/path how can i use Attachment in Oracle EBS in Custom Form?
    Thanks in advance
    Oraapp Nebie

    Define Document Entities
    Application Developer->Attachment->Document Entities
    Optional :
    Define Document Categories
    Application Developer->Attachment->Document Categories
    Define your attachment Functions
    Application Developer->Attachment->Attachment Functions
    Thats all your attachment for the form is setup
    Regards
    Prashant Pathak

  • Using a workflow to share documents with external users

    I'm trying to create a workflow that will share documents with external users. Those external users don't have SharePoint logons.
    One approach might be to send an email using a 2010 workflow. However there doesn't appear to be the ability to attach a document to that email.
    The other approach could be to use the Share function of SharePoint 2013 but can this be triggered using a workflow? If so how?
    Please note: I'm using SharePoint Online
    Thanks in Advance,
    Mark E.
    Learning SharePoint

    Hi Mark,
    You can use external sharing option in SharePoint Online. Below links might help:
    https://support.office.com/en-gb/article/Manage-external-sharing-for-your-SharePoint-online-environment-c8a462eb-0723-4b0b-8d0a-70feafe4be85
    https://support.office.com/en-in/article/Manage-sharing-with-external-users-in-Office-365-Small-Business-2951a85f-c970-4375-aa4f-6b0d7035fe35?ui=en-US&rs=en-IN&ad=IN
    http://www.adrit.de/Blog/Post/25/External-sharing-with-Office-365---Part-2--How-to-share-SharePoint-content-with-external-users-
    Best Regards,
    Brij K
    http://bloggerbrij.blogspot.co.uk/

  • Error in workflow while linking goods receipt document with parked invoice

    Hi All,
    I parked document using Tcode MIRO, when WF has been executed and goods receipt document has been created.At the time that we tried to link this goods receipt to parked invoice document in the workflow,The problem happens with work item saying the status as Error. See the below error.
    MIRO Invoice: 801061193 2010 Item: 000001     13.09.2010     09:24:58     Error     AP Workflow for MIRO/MIRA Parked Invoice
    Can anyone advice why it is coming so?
    Thanks in advance.

    Hi
    In SWEL go to workflow trace and see what exactly is the error. This error description is too generic to arrive at soln.

  • Error while creating document with attachment.

    Hi,
    I am getting an error "An error occured while creating the original attribute for PDF"
    I tried with out file attachment, it works as you know it is simple....
    I tried with various types of attachments like .TXT and .WRD (changed both wsapplication and docfile parameters), however i get the same error. I tried both from presentation and application server (by providing   pf_ftp_dest                = 'SAPFTPA'    pf_http_dest               = 'SAPHTTPA' )
    Any idea on how to solve this?
    All i need is create a DMS document with a PDF attachment from application server. Are there any other ways to solve this issue?
    ws_docdata-documenttype = 'ARE'.
    ws_docdata-description = 'BAPI DMS'.
    ws_docdata-statusextern = 'CR'.
    ws_file-storagecategory = 'DMS_C1_ST'.
    ws_file-wsapplication   = 'PDF'.
    ws_file-description = 'Job output'.
    ws_file-docfile = 'C:\CAD Integ BAPIS_46.pdf'.
    append ws_file to it_files.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
      EXPORTING
         documentdata               = ws_docdata
    IMPORTING
         return                     = v_ret
    TABLES
         documentfiles              = it_files   .
    BREAK-POINT.
    IF v_ret-type CA 'EA'.
      ROLLBACK WORK.
      WRITE : v_Ret-message.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = '5'.
    ENDIF.
    Thanks
    Pavan

    Hi,
    I found that it is due to document type = 'ARE'. I changed hte document type to one of hte standard type 'TST'. It works for presentation server, but does not work for application server. Any ideas? Any help is appreciated with points.
    ws_docdata-documenttype = 'TST'.
    ws_docdata-description = 'BAPI DMS'.
    ws_docdata-statusextern = 'CT'.
    ws_docdata-documentnumber = 'ZNG-10000000017'.
    ws_file-storagecategory = 'DMS_C1_ST'.
    ws_file-wsapplication   = 'PDF'.
    ws_file-description = 'Job output'.
    ws_file-docfile = p_file.
    append ws_file to it_files.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
      EXPORTING
        documentdata               = ws_docdata
       pf_ftp_dest                = 'SAPFTPA'
       pf_http_dest               = 'SAPHTTPA'
    IMPORTING
       documentnumber             = v_docnum
       documentpart               = v_docpart
       documentversion            = v_docver
       return                     = v_ret
    TABLES
       documentfiles              = it_files   .
    IF v_ret-type CA 'EA'.
      ROLLBACK WORK.
      WRITE : v_Ret-message.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = '5'.
    ENDIF.
    Thanks
    Pavan

Maybe you are looking for

  • Unable to install printer Deskjet 6122 on windows 7 (64bit)

    I bought a new HP Pavilion Model HPE h8-1237c running Windows 7 Professional (64bit). I'm not having any luck at trying to install my old HP Deskjet 6122 printer. Drivers on disk and newer downloaded ones are not compatible with the 64 bit OS. HP sug

  • Robocopy transfer speed in log file

    In xp or 2003 robocopy log transfer speed at the end log file. How to get this in w7 or 2008 r2? thanks

  • SXPG_COMMAND_EXECUTE failed for BRTOOLS - Reason

    Hi, My CI + DB in Suse Linux and SAP Karnal level is 159 My Dialog instace in on windows server and Karnal level is 159. When i trying to open the detail log of db13 from Dialog instace it was not opened and shows the error as below ( but it showing

  • Is there a possibility to import a theme (Idvd) to Premiere Elements or Pro

    Hi there, I finally have received my new MBP and was surprised by the new themes of idvd. These Themes are great and I would like to have them also in Premiere Elements or Premiere Pro. Does anybody have an idea or an advise how to get reasonable The

  • Extra sequence presets require certified graphics card?

    After installing Creative Suite 5.5 Production Premium I don't have the extra (third party) sequence presets that the full version has over the trial version. Last time I installed this on the same machine with the same OS I got those presets. Now I