Oracle Files with Workflow in OCS release 2

I am trying to configure email notification in the Workflow that comes with OCS release 2. Refering to Oracle Files Admin Guide, page 7-10, it says that I should conifgure sendmail to be used. I want to use OCS mail. Can this be done?
In fact, I need this to be done this way cos SendMail is turned off. My mid tier, calendar, Files, Mail, is sitted on a single server.

Files R2 integrates with Workflow 2.6.2. I believe Workflow 2.6.2 on UNIX requires Sendmail to be configured, but they support other mailers through UNIX gateways. Please refer to the Oracle Workflow Guide for more details.

Similar Messages

  • Oracle Alert with Workflow Mailer

    Hi,
    In order to check Alerts with Workflow Mailer, in TEST environment (Cloned from PROD Instance) , we need to setup Workflow Mailer.
    Question : How to setup Workflow Mailer in TEST environment , in order that no mails will be sent to customers ...
    Thank's

    In order to check Alerts with Workflow Mailer, in TEST environment (Cloned from PROD Instance) , we need to setup Workflow Mailer.This is correct if you are on 11i (ATG RUP4 or above) or R12
    Question : How to setup Workflow Mailer in TEST environment , in order that no mails will be sent to customers ...disable workflow for all users
    Re: disable workflow for all users
    Set WorkFlow Override Address After Clone Using SQL
    Set WorkFlow Override Address After Clone Using SQL
    Thanks,
    Hussein

  • HELP!! Oracle Files workflow definition needed! Please read!

    Dear friends,
    Please read the following and help me if you can. It is really a very important and urgent issue.
    We're in the middle of the OCS installation (precisely in the end of the storage layer). We have now to configure workflow, since this has to be done BEFORE the application (middle-tier) installation.
    One of the steps is loading the workflow definitions (.wft files) which will be used by Oracle Files. But the instructions we received say thses files are MISSING in LINUX installations (just like ours!).
    So if you have these .wft files in your installation please PLEASE mail them to me ([email protected]) as soon as possible. Documentation says these files are located in <oracle home>/ifs/files/admin/config. Probably you can also access them through Oracle Workflow Builder.
    I will be forever grateful to all of you that help me with this stuff! ;)
    Best regards,
    Vinicius

    Bradley,
    Both of these issues sound like they should be directed to Adobe.
    In the first case, it sounds like the file opens fine in Adobe, but once you combine this with other files and resave you get this error when you try and open the files again. It's Adobe that's saving the files at this point (Reports is pretty much out of the picture). You may want to try with Reports 9i, where a higher level of PDF is output, but that doesn't mean that Adobe shouldn't deal with the earlier versons.
    In the second case, Reports outputs PostScript via the standard windows printer drivers and APIs - there's no special settings for this (in fact it looks like this is a standard initialization parameter for the printer). Again, you should probably contact Adobe for more assistance.
    Hope this helps,
    Danny

  • What is possible with non oracle components in the EMGC 10g release 3

    Hello,
    What is possible with non oracle components in the EMGC 10g release 3
    Our customer wants to also monitor and maintain non oracle components with EMGC 10g release 3.
    Some non oracle components are:
    Routers,
    Firewalls,
    Application Servers,
    Switches,
    Mail Servers,
    DNS/DHCP servers,
    Print Servers,
    File Servers,
    NTP,
    Citrix,
    Terminal Server,
    Lotus Notes,
    Etc etc.
    Is there a document on which non oracle components can be monitored in the EMGC and what can be maintained with these components?
    Regards,
    Tim Abdoelhafiezkhan

    Take a look into Plug-ins, there are some none-oracle ones pre built by Oracle and others.
    There's a forum about Extensibility in the current category here.
    Also, for further extensibility, the new Connector Framework looks interesting, see the OEM Integration Guide.

  • Uploading a file (.doc, .xls, .txt) into an Oracle table with BLOB column

    Hello All :
    I have been trying to figure out for a simple code I can use in my JSP to upload a file (of any format) into an Oracle table with a BLOB column type. I have gone through a lot of existing forums but couldnot find a simple code (that doesnot use Servlet, for eg.) to implement this piece.
    Thanks a lot for your help !!

    Hi.
    First of all to put a file into Oracle you need to get the array of bytes byte[] for that file. For this use for example FileInputStream.
    After you get the byte array try to use this code:
            try {
                Connection conn = myGetDBConnection();
                PreparedStatement pstmt = conn.prepareStatement("INSERT INTO table1 (content) VALUES(?)");
                byte[] content = myGetFileAsBytes();
                if (content != null) {
                    pstmt.setBinaryStream(0, new ByteArrayInputStream(content), content.length);
                pstmt.close();
                conn.close();
            } catch (Exception ex) {
                ex.printStackTrace();
            }or instead of using ByteArrayInputStream try pstmt.setBinaryStream(0, new FileInputStream(yourFile), getFileSize());Hope this will help...
    regards, Victor Letunovsky

  • Upload text file to oracle table with checking and aggregation

    Hi Friends,
    I am new to ODI.  I have encountered a problem which is specific to ODI 11G (11.1.1.6.3) to upload text file to oracle table with checking and aggregation.  Would you please teach me how to implement the following requirement in ODI 11G?
    Input text file a:
    staffCode, staffCat, status, data
    input text file b:
    staffCodeStart, staffCodeEnd, staffCat
    temp output oracle table c:
    staffCat, data
    output oracle table d:
    staffCat, data
    order:
    a.staffCode, a.staffCat, a.status
    filter:
    a.status = ‘active’
    join:
    a left outerjoin b on a.staffCode between b.staffCodeStart and b.staffCodeEnd
    insert temp table c:
    c.staffCat = if b.staffCat is not null then b.staffCat else a.staffCat
    c.data = a.data
    insert table d:
    if c.staffCat between 99 and 1000 then d.staffCat = c.staffCat, d.data = sum(c.data)
    else d.staffCat = c.staffCat, d.data = LAST(c.data)
    Any help on fixing this is highly appreciated. Thanks!!
    Thanks,
    Chris

    Dear Santy,
    Many thanks for your prompt reply.  May I have more information about the LAST or SUM step?
    I was successful to create and run the following interfaces p and q
    1. Drag text file a to a newly created interface panel p
    2. Filter text file a : a.status = ‘active’
    3. Lookup text file a to text file b : a.staffCode between b.staffCodeStart and b.staffCodeEnd
    4. Drag oracle temp table c to interface panel p
    5. Set c.staffCat : CASE WHEN b.staffCat IS NULL THEN a.staffCat ELSE b.staffCat END
    6. Set c.data : a.data
    7. Drag oracle temp table c to a newly created interface panel q
    8. Drag oracle table d to interface panel q
    9. Set UK to d.staffCat
    10. Set Distinct Rows to table d
    11. Set d.staffCat = c.staffCat
    12. Set d.data = SUM(c.data)
    However, the interface q should be more than that:
    If c.staffCat is between 99 and 1000, then d.data = the last record c.data; else d.data = sum(c.data)
    Would you please teach me how to do the LAST or SUM steps?  Moreover, can interface p and interface q be combined to one interface and do not use the temp table c?  Millions thanks!
    Regards,
    Chris

  • How to use Oracle SQL Developer 4.0 to connect to Ms Access file with .accdb extension

    Hi all,
    I am using Oracle SQL Developer 4.0 and Ms Access 2013 under Windows 7 (64 bits)
    After browsing and selecting MS Access file with accdb extention, I got  an error message  :[Microsoft] " Data source name not found and no default driver specified".
    On Administravitve Tools=> ODBC Data Source Administrator=>Drivers I have                                                File                                date
    Name :                                                                               Version
    Microsoft Acess Driver (*.mdb, *accdb)                                 12.00.4518.1014                                        ACEODBC.DLL                    26/10/2006
    Would you please advise?
    Thank you very much in advance

    That MS Access driver is 64-bit, I think.  If SQL Developer, or JDK is 32-bit you need to use the 32-bit driver.   You can see if you have a 32-bit driver installed using  c:\windows\system32\odbcadm32.exe

  • Oracle WebADI: How to Download the WebADI Excel File with Parameter

    Hello Friends,
    How to Download the Oracle WebADI Excel File with Parameter??
    For Ex: How to download the Employees for Specific Department from Oracle WebADI.
    And After to change the specific changes on Employee Data to Upload.
    Thanks in Advance.

    Hi Team.
    Any Advise on it!!

  • Want attach the XML data file with layout template in Oracle 10g

    Hi All,
    I need a help from you genius guys.
    I am genrating reports in BI with xml the procedure which I am following is as below.
    1. generating XML from the RDF
    2. creating a template in .rtf format
    3.after that loading the xml to the template then getting the required report.
    This all is doing through the given buttons
    But now my requirement is to create the gui from user can select the report and get the desire output file so how we would be able to attach the XML data file with layout template in Oracle 10g.
    If you require more detail please let me knnow.
    Thanks,
    Harry

    I am not using Oracle apps.
    I am using oracle 10g reports and I get something in it like one patch I downloded and one java code is having which creates the batch file ...still I am working on it ..
    If you will get some please share so that it will be helpful.
    Thanks,
    Harry

  • Can not sync iPhone 4 since upgrading to latest software release.  Keep getting a message that required file can not be found.  I've tried restoring several times.  I am using  Mac PC with the latest software release.

    My iPhone 4 will not sync since upgrading to latest software release.  I keep getting the error message "required file cannot be found".  I've tried restoring several times with no success.  I am using a MacPro notebook with the latest software release.

    My iPhone 4 will not sync since upgrading to latest software release.  I keep getting the error message "required file cannot be found".  I've tried restoring several times with no success.  I am using a MacPro notebook with the latest software release.

  • How i can deal with oracle file by using php api

    how I can deal with oracle file by using php api ?

    What has this to do with Reflections and Reference Objects?

  • Oracle Apps RDF Report generates file with ^M (Carriage return) characters

    We are upgrading from 11i to r12 (also moving from HP unix to AIX on hardware side) and this rdf report generates a text file which is then eventually sent to a third party system for printing. Report works just fine in 11i as it generates a file without any ^M chars but in R12 environment, the same report generates file with ^M chars.
    Also want to understand how the Oracle Apps system hands over the output files to O/S which is saved.
    Pls advice
    Thanks
    Ram M.

    What type of concurrent program are we talk about here?
    This is a Report type of Concurrent program
    How does the text file get generated?
    Report is generating a Text file on :desname, a custom folder. 
    Was the binary mode used to copy the files from the old server to the new one?
    I believe RDF Reports were copied over in Binary format but none of the text files generated from old server are copied over.

  • How to upgrade from OCS 904 to 10g but not upgrading Oracle Files

    Hi All,
    We have installed OCS 904 from where we only are using:
    - Portal
    - Oracle Files
    Our idea is to upgrade this installation to OCS 10g but keeping the same version of Oracle Files (we don't want to migrate to content services for the moment).
    Is this possible? or if we want to keep Oracle Files we need to do a fresh install of OCS 10g in another location?
    Thanks in advance,
    Harvey

    >I want to upgrade it from RHEL 6 TO  RHEL 7 and from ORACLE 11G TO ORACLE 12C. I wonder if anyone could suggest the best url for for upgrading accordingly.
    which metric measures best? Fewest keystrokes?
    BTW - you are actually doing 2 upgrades. You are upgrading OS & you are upgrading Oracle version.
    So you can either over then up or up then over.
    How much down down time is available?
    How much risk do you want to include?

  • Oracle VM with Oracle E-business suite Release 12.1.1

    Hi
    We are migrating our Oracle E-business suite from IBM Power 5 AIX 6.1. to OVM Intel (x86_64) bit, we have tested the migration in our test environment. We want to know how good or bad is OVM with oracle e-business suite in production environment, and if anybody is working on production environment with the similar configuration in Production environment then please share your experience with us
    Thank you
    Regards
    Shahrukh Yasin

    Hi Sharukh,
    Virtualization of course the trend in modern era, and I personally advice you to have a thorough testing on performance and specifically simulate workloads and check the behavior. I don't personally go on to support Virtualization on Production environment as it incurs additional cost like CPU usage, memory usage borrowed by other environment being virtualized. And as it does not directly work with the hardware. May be some will be against this point, but I see as if it incurs additional resources. Being said this, I am not completely against Virtualizationas long as it is not a heavy 24/7 environment. I would go on to support the ideology, saying it's best to choose the right technology to right environment.
    Please refer following links for more information:
    https://blogs.oracle.com/stevenChan/entry/ebs_support_policies_for_virtualization_technologies
    https://blogs.oracle.com/stevenChan/entry/virtualization_ebusiness_suite
    https://blogs.oracle.com/stevenChan/entry/virtualization_the_ebusiness_s
    https://blogs.oracle.com/stevenChan/entry/using_oracle_vm_with_oracle_eb
    Using Oracle VM with Oracle E-Business Suite Release 11i or Release 12 (Metalink Note 465915.1)
    Regards,

  • Oracle workflow consultant (with workflow builder exp)

    May 25 2004
    Our client is a major bank in Jamaica and they have a requirement for an Oracle Workflow Consultant. This is a 6 months contract and it would be 3 weeks/month in Jamaica and 1 week/month back home. All expenses including trave, accomodation (5 star) and meals would be taken care of. There would also be a per diem and a bonus at the end of contract.cllient considering US/Canada based consultants.
    ·     A Technical Consultant with expert experience with Workflow
    ·     Expert technical experience and strong functional knowledge
    ·     Experience using “Workflow Builder” as a tool
    ·     Experience with configuration, customization, and modification of pre-configured workflows with Workflow Builder to suite business applications
    ·     Customization of workflow and optional set-ups such as enabling email process
    ·     Experience with configuration/escalation/exceptions in workflow
    ·     Workflow Builder is accessed at the systems administration level so consultant has to have experience with systems administration (application system administration)
    ·     A “workflow” guru would have performed this function for at least 50% of the time – (rest of the time he/she would have done application system administration, technical design/development…
    Skills:
    Very strong technical user level of workflow
    Very strong experience with Workflow Builder
    Oracle 11i, SQL or SQL Plus
    Workflow knowledge from HR or elements of HR Module
    Please contact for more details:
    Rohini Mehtani
    IT Resource Consultant
    Bevertec
    [email protected]
    416-695-7525 ext: 229

    Could you please tell me ...........
    Whether Oracle application version 11.5.9 is compatible with OAF 11.5.10 (patch p4045639_11i_GENERIC). If yes, then why my pages are not working?
    Not even the Existing FWK Tutorial application is also not working, nothing is working!!! Do I need to modify somehting?
    Please suggest any solution I have to Develop new self service application.

Maybe you are looking for

  • "How to get distinct values of sharepoint column using SSRS"

    Hi,     I have integrated sharepoint list data to SQL Server reporting services. I am using the below to query sharepoint list data using sql reporting services. <Query>    <SoapAction>http://schemas.microsoft.com/sharepoint/soap/GetListItems</SoapAc

  • How to preserve messages on ISP after setting up mac POP mail?

    I recently (YESTERDAY) set up POP mail (mail 3.3) on my new macbook to collect mail from my yahoo account. AFTER downloading my yahoo inbox I noticed that one of the default advanced settings in mac mail was set to ''remove copy from server > after o

  • The link from my email for verification of my apple account is not working correctly!

    So i created a new apple ID account. And they successfully sent an email link to verify the email address. When i open the link, it asked me to sign in. After i sign in, it directly sends me to a site saying, "Sorry! sorry your session has been expir

  • Using music from a pc

    I sort of wrote about this earlier today but not sure I framed the question correctly. My 16 y.o. daughter has a PC and she down loads tons of junk. After running Norton Anti Virus on her computer today I see she has a number of trojans on her PC. Sh

  • Directory navigation in java

    hi, can u help me how to list all the java files in a system into an open dialog box.for example when a browse button is clicked,the open dialog box should contain all java files in that system.