Integrate Business Activity Monitoring (BAM) with Oracle Forms Recognition

Hi All,
As per project requirement, I have to integrate Business Activity Monitoring (BAM) with Oracle Forms Recognition.
Does anyone have an idea how can this be achievable from OFR Verifier?
Thanks,
Moumi.

Hi All,
Apart from my previous queries, I found that there is an sample reporting program - Oracle Application Express application has been developed and tested using version 4.1 of AppExpress.
To access OFR tables I run the below script in below sequence in my local IPM environment as found in this link- http://workplacedba.blogspot.in/2012/11/ofr-odc-installation.html
Seq 1 - 01-OFR-AP-Tables_Oracle.sql
Seq 2 - 02-OFR-AP-Reporting_Oracle.sql
Seq 3 - 03-XX_ROUND_IT.fnc
Seq 4 - 04-XX_ROUNDDOWN.fnc
Seq 5 - 05-XX_ROUNDUP.fnc
Seq 6 - 06-OFR-AP-EBS-Views.sql
Seq 7 - 07-INVOICE_NUMBER_FORMATS_INS.sql
Seq 8 - 08-Insert Into Company.sql
I couldn't found the below queries in my installables -
Seq 3 - 03-XX_ROUND_IT.fnc
Seq 4 - 04-XX_ROUNDDOWN.fnc
Seq 5 - 05-XX_ROUNDUP.fnc
Seq 7 - 07-INVOICE_NUMBER_FORMATS_INS.sql
Seq 8 - 08-Insert Into Company.sql
can anyone provide me these sql scripts?
Thanks,
Moumi

Similar Messages

  • New with oracle form recognition where to start

    Hi everyone,
    I am new to oracle form recognition and I find the Oracle documentation very unhelpful! could you please point me to some useful links or tutorials on how to integrate OFR with ODC and Imaging ?
    Best Regrads.

    that was helpful but still am not able to make it work let me reexplain the situation.
    I have installed OFR and ODC?
    I have ODC put scaned files into "commit".
    then I have OFR runtime server pick them from "commit" to be analysed and classified and this is where nothing happen!
    capture batch setup:
    C:\Program Files\Oracle\Document Capture\Batches
    C:\Program Files\Oracle\Document Capture\Commit
    OFR directories setup:
    Input mode:
    batch-root directory:
    c:\Program Files\Oracle\Document Capture\Commit
    image-root directory:
    c:\Program Files\Oracle\Document Capture\Commit
    Runtime:
    c:\Program Files\Oracle\Document Capture\Export
    thx in advance

  • Business Activity Monitoring (BAM)

    Hi,
    How does BAM affect performance within SAP?
    Can anyone throw more light how BAM will help in process monitoring & measurement?
    Are there any relevant links where i can find exhaustive material related to BAM?
    I got across one product article called 'Optimize for SAP'
    Need more insight....
    Your inputs are welcome
    Thanks,
    Best regards,
    Nitesh

    Hello Nitesh,
    perhaps you can specify what you are really looking for and what you would like to measure and who should be the target audience.
    Marilyn already provided you with some link to the Netweaver focused pages on SDN which deal with what the market understands under BAM.
    But SAP provides also some other KPIs coming out-of-the-box with Business Process Monitoring in SAP Solution Manager. There you can find more information under https://service.sap.com/bpm --> Media Library --> Customer Information. The PPT "Business Process & Interface Monitoring - Part 2" provides a complete list of more than 200 key figures that come out of the box.
    It's hard to tell what you should use if you don't specifiy the things I mentioned in the first sentence.
    Best Regards
    Volker

  • Integrate XMLP APIs with Oracle Forms

    Hi,
    I want to integrate XML Publisher's APIs with Oracle Forms. I have done the following to achieve this.
    1. Built a Java class to
    a.Handle the Data extraction from Database using the data template
    b.Convert the RTF to XSL-FO format
    c.Render the report by merging the xsl and the data xml files
    2.Created a jar file of the java class file
    3.Imported these classes into Oracle Form, using Jimporter
    All works fine, when I execute the form in a client-server architecture.
    But am getting the 105101 non-ORACLE exception if I run the form, when the form is deployed in an Application Server. I have set the classpath to all the xmlp APIs (xdocore.jar, xmlparserv2-904.jar, and the jar of my java class) in the .env file and also in the system's classpath.
    Could someone please clarify what else has to be done to set this right. Also, as I am relatively new to Java, can anyone clarify, the java class what I have used should be a servlet in case my Form is accessed via an Application Server or just the java class would serve the purpose.
    Thanks,
    Suresh

    Hi,
    I was able to resolve this, after I went through few threads in the same forum. I set the classpath to i18nAPI_v3.jar, collections.jar, versioninfo.jar files in the .env file apart from the xdocore.jar and xmlparserv2-904.jar.
    Now am able to execute the form and everything works fine!!
    Thanks,
    Suresh

  • Integrate Sharepoint 2007 with Oracle Forms

    Hi,
    Is it possible to integrate Microsoft Sharepoint 2007 with Oracle forms 10g and above ? If so, is it the same way we integrate Word/Excel?
    Please give some tips.
    Regds,
    noneda

    Yes it is possible.
    It's different than Word/Excel, it's more like integrating a website into your form, theoretically you can also exchange data between the sharepoint and Forms/Oracle database.
    Tony

  • Active x controls in oracle forms 11g

    I have read a post regarding, the embeding of active x controls in oracle forms. Can anybody explain it in detail, tat how it can be done on Oracle forms 11g. My database is also 11g. And please explain how to draw activex control on canvas, coz i cant find any icon related to it on tool palette. please help me...
    Regards
    Vibin

    Vibin,
    Welcome to Oracle Forums!
    Please acquaint yourself with the FAQ and forum etiquette if you have not already done so.
    >
    I have read a post regarding, the embeding of active x controls in oracle forms.
    >
    You must have read some post of a client-server version of Forms. It is always better to post the link that you are referring to
    Can anybody explain it in detail, tat how it can be done on Oracle forms 11g. My database is also 11g. And please explain how to draw activex control on canvas, coz i cant find any icon related to it on tool palette. please help me...In web forms you use (Java) Beans.
    Cheers,

  • Mixing Java with Oracle Forms 11g

    What's going on is I wrote a program for work that allows the user to upload a document from their computer onto the database and then download it back later. Now I have to take that and integrate it into a button in Oracle Forms because our actual program runs from Forms. I imported the jar into the form and wrote a button with code I found online (modified slightly for my own use of course):
    DECLARE
         jo ora_java.jobject;
         rv varchar(100);
         ex ora_java.jobject;
    BEGIN
         JO := Upload.new;
         RV := Upload.startUploadPage(JO);
    EXCEPTION
         WHEN ORA_JAVA.JAVA_ERROR then
              message('Unable to load Upload page, ' || ORA_JAVA.LAST_ERROR);
         WHEN ORA_JAVA.EXCEPTION_THROWN then
              ex := ORA_JAVA.LAST_EXCEPTION;
              message('Java Error');
    END;
    but when I tried to compile it I got:
    Error 306 at line 8, column 8
    wrong number or types of arguments in call to 'STARTUPLOADPAGE'
    the java method that is supposed to be called here is:
    public static String StartUploadPage() {
    new Upload();
    return Upload.StartUploadPage();
    I did get from someone that apparently as written my code wont work anyway because apparently the jar importer in Forms doesnt transfer UI (ie Java Swing) and that in order to get the UI to transfer I would have to write a JavaBean on top of my code... but 1 I have no clue what a JavaBean is and the research I have done so far about it has just confused me more... and 2 I'm not sure what that has to do with the error considering that the method that is supposed to be being called by the line that threw the error doesn't have any JFrames or Java Swing of any kind connected to it... there is a tiny bit of Swing in the class to open up the first form that has the buttons for upload and download in it but that is all. I have 4 classes in that jar... 3 are the various Java Swing pages and have the absolute minimum logic in them possible... and the 4th one is the one that starts everything going, has the main class, and any serious logic that needs to be done the needed values are passed to that class and that class does all the work... that 4th class is the one that is being called in the PL/SQL. If it isnt any trouble could I maybe get a little help from someone on:
    1. How to write a JavaBean to allow my program to work the way it is supposed to in Forms and
    2. Why I am getting this error and how to make it go away

    Simplemente deberias utilizar la webutil, no hace falta programar nada nuevo, con la webutil puede transferir de un puesto cliente a la database, o viceversa.

  • How to connect to SQL server 2000 with Oracle Form

    Hi,
    I'm looking for the document of how to connect "SQL Server 2000" with Oracle Form 6i. Anyone knows that?

    Shay or other knowledgeable folks,
    Is there a way to utilize the wizard for "Business Tier > ADF Business Components > Business Components from Tables" for SQL Server 2000, 2005 or 2008. I can successfully execute sql via java programmatically or import a table from SQL Server with "Business Tier > ADF Business Components > Entity Object" wizard, but the Business Components from Tables simply doesn't see any tables under any schema. Without the "Business Components from Tables", i don't get the referential constraints imported into the application and to code all those from scratch is just not as elegant. So far i have only utilized the sql server jdbc driver from Microsoft (versions, 1.1, 1.2 and 2.0). Is there an alternative client that i need to use to enable selecting tables from that "Business Components from Tables" wizard. Is this a limitation of SQL Server, the jdbc driver or the wizard itself? Did anybody else experience the same issues? I am using Jdeveloper 11.1.1.0.1 against SQL Server 2005 (currently)
    Thanks,
    Andy

  • Enterprise portal integration with Oracle forms

    Hi
    Can anyone help me on this .
    "Enterprise portal integration with Oracle forms".
    I want to integrate oracle forms to EP .I am trying to work with app Integrator but I am not able to make any headway.Do you have any documents pertaining to this or any place where I can look for details.
    Thanks
    Alok

    Hi,
    i'm not aware of special integration feature with Oracle forms, but if as you said we are talking about a web application available via url then i see no problem doing so. the way you can implement the SSO is using something called Application Integrator which helps you build smart URL iView's that can use the portal framework (like systems, user profile , etc) , so you can build your oracle forms integration iView that will take the user password data from the portal (via system) using user mapping or sap logon tickets.
    for more details on Application Integrator see
    http://help.sap.com/saphelp_nw04/helpdata/en/70/5a3842134bad04e10000000a1550b0/frameset.htm
    regarding to the java applet, i don't really know what you mean by "jinitiator" but if your regular browser can do it then i see no reason for problems.
    i hope it helps

  • Integration of Oracle BAM with Oracle DI

    Dear all ,
    I have successfully installed Oracle Bam as well as Oracle Data Integrator
    my issue is that
    i want to integrate BAM with Oracle DI
    Does any one knows how to do it
    if any links for this kindly let me know
    Thanking you in Advance......
    CHeers

    What version of BAM are you using? BAM 10g includes an ETL tool called EnterpriseLink to push data into BAM.
    BAM 11g will include out of the box integration with ODI.

  • Can Microsoft active directory integrated with Oracle Applications

    Hi,
    Can anyone provide me any document on Microsoft Active Directory Integration with Oracle Applications(12.0.6)
    Manish

    Hi,
    It is possible, please refer to the following documents for details.
    Note: 376811.1 - Integrating Oracle E-Business Suite Release 12 with Oracle Internet Directory and Oracle Single Sign-On
    Note: 415007.1 - Oracle Application Server with Oracle E-Business Suite Release 12 FAQ
    Regards,
    Hussein

  • How can we achive active/active cluster setup with Oracle

    Hi Experts,
    How can we achieve active/active database setup with oracle WITHOUT USING RAC.. As far as I know it's impossible (unless I'm wrong)..
    We are using Oracle 11.2.0.1 64bit on Windows 2008 server. We deployed Oracle FailSafe but that's more of an active/passive solution based on a windows cluster.
    The other solution we were thinking about is to use DataGuard and replication.. two servers.. the oracle instance running on one server generating logs, and the other server receive the logs and apply them to the physical standby db.. Still, this is not a real active/active setup.
    So, is it possible to run 2 servers in an active/active cluster and have the oracle database in an active/active setup or have the instance running on multiple nodes (at the same time)?
    Thanks

    Let me give you a brief explanation of what the situation is and you can be the judge..
    My client have four databases with the smallest one being 20GB and the biggest around the 35gb (SGA 750mb to 1.4gb (Tiny by DB standards) and probably on a normal day, you can run all four of them on a decent desktop).. The DBs are used to keep track of people information. Through out the year, the databases are almost sitting idle, and by idle I mean, the odd update here and there, the odd report..etc. No hard real processing of any sort. Two days of the year (end of year) we have all the operators consolidating records and what's not and they will be pounding away entering data and updating the tables - with hourly reports that goes to 3rd parties. The client expects a 99.99 up time and availability during those 2 days.
    Now, tell me, How can I justify using RAC and spending hundreds of thousands of dollars in licensing and what ever extra costs introduced by the complexity of the environment for the above scenario knowing that I don't have any real use for RAC for 363 days of the year; and we MIGHT need it for 2 days of the year? This is the dilemma we're facing.
    Thanks
    Edited by: rsar001 on Sep 3, 2010 9:42 AM

  • How to define the tab space in the PL/SQL editor with Oracle Forms 4.5?

    When I use the PL/SQL editor with Oracle Form Builder, I found the tab space is very long that affects my programs readability quite a lot. Then, I tried to use Textpad to type my program. It looks fine with Textpad. However, when i tried to 'cut and paste' my code back to the PL/SQL editor, all tab spaces (approx. 8-character) are detected and the program looks awful again ~~ Would any one help me to solve my mentioned problem?
    Thanks for any advices!

    In 4.5 you cannot change this. In Forms 5.0 and above there is a registry value DE_PREFS_TABSIZE which allows you to set a value for the tabsize.

  • Using jfreechart with oracle forms 11g

    Hi everybody,
    I'm using jfreechart with oracle forms 11g to continue having graphs in my application since i'm migrating from forms 6i. I've already got it working and it's great. Just have one problem left. I don't know how to change the axis labels. In Bar charts, it comes with "Values" in y axis and "Category" in x axis by default. I wanted to change that or make it dissapear. Anyone knows how to?

    I've never used the jFreeChart, but according to their website you can use the "setLabel" method to set the label for an axis. Check out Axis (JFreeChart Class Library) for more information.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Use of Times ten database with Oracle Forms 11g

    Hi,
    We need to use some caching / pre-fetching solution with Oracle Forms 11g.  Is there a possibility that Oracle Forms 11g can be used with Times ten database.
    Regards,

    We have never tested TimesTen with Forms 11g but we suspect there are issues that may prevent if from being used.
    Sorry.
    Chris

Maybe you are looking for

  • Preflight panel Info. shows my placed 300 ppi PDFs at much less effective resolution

    Ï'm brand new to InDesign (graphic designer who primarily works in Illustrator, some Photoshop, until now). I understand resolution and PPI but not necessarily in-depth knowledge of the related necessary workflow needed within InDesign, if that makes

  • How do i replace my 5c with a 5 or 5s

    how do i replace my 5c with a 5 or 5s,  there is nothing out there for cases or anything to match the button layout on the phone,  i have spent $100 in 2 days buying case after case

  • Shared Pool: KGH No ACCESS Is Very High

    if you run the following query it shows you a very high value for KGH NO ACCESS (around 5GB) select * from v$sgastat where pool = 'shared pool' and (name in ('free memory', 'sql area', 'library cache', 'miscellaneous', 'row cache', 'KGH: NO ACCESS')

  • Interactive Text

    Can anyone point me in the right direction. What I am wanting to do is display text in a UI that is interactive. When the user clicks on a word, I want to add it to a swap table and replace it with an alternate value (such as a French word for an Eng

  • How can I buy movies?

    I want to down load and buY movies, please help me how to do it