Does Oracle OSFM work with standard MRP in R12.1?

Hello All,
         We are in R12.1.3. I read in the OSFM User Guide that Lot Based Jobs don’t work with ASCP and a comment about OM and Oracle Projects. We are currently using standard MRP. Yesterday i came to know that OSFM will not work with standard MRP. Please let me know if there is a way to make OSFM work with Standard MRP.
      We don't have ASCP and are not planning to implement it for this requirement.
Thanks,
Vishnu

Hi,
The static INIT() functions were added to the ORDIMAGE/AUDIO/VIDEO types
in 8.1.7 to make it easier for applications to construct an ORDIMAGE/etc
object. Given a simple table, eg:
CREATE TABLE IMAGES ( ID INTEGER, IMAGE ORDSYS.ORDIMAGE );
In 8.1.7 and later its simply a matter of the following to insert a new row:
INSERT INTO IMAGES VALUES ( 42, ORDSYS.ORDIMAGE.INIT() );
Where ORDSYS.ORDIMAGE.INIT() is simply a static function that returns an
initialized ORDSYS.ORDIMAGE object. Prior to 8.1.7, it was necessary to
use the standard database object type constructor syntax to initialize
an ORDSYS.ORDIMAGE object. For example:
INSERT INTO IMAGES VALUES (
42,
ORDSYS.ORDIMAGE(
ORDSYS.ORDSOURCE( EMPTY_BLOB(), NULL, NULL, NULL, NULL, 0 ),
NULL, NULL, NULL, NULL, NULL, NULL, NULL ) );
Below I've included some PL/SQL functions that you can use with 8.1.6 instead
of having to use the full constructor.
Hope this helps,
Simon
CREATE OR REPLACE FUNCTION ORDIMAGE_INIT RETURN ORDSYS.ORDIMAGE AS
BEGIN
RETURN ORDSYS.ORDIMAGE(
ORDSYS.ORDSOURCE( EMPTY_BLOB(), NULL, NULL, NULL, NULL, 0 ),
NULL, NULL, NULL, NULL, NULL, NULL, NULL );
END;
CREATE OR REPLACE FUNCTION ORDAUDIO_INIT RETURN ORDSYS.ORDAUDIO AS
BEGIN
RETURN ORDSYS.ORDAUDIO(
NULL,
ORDSYS.ORDSOURCE( EMPTY_BLOB(), NULL, NULL, NULL, NULL, 0 ),
NULL, NULL, EMPTY_CLOB(), NULL, NULL, NULL, NULL, NULL, NULL );
END;
CREATE OR REPLACE FUNCTION ORDVIDEO_INIT RETURN ORDSYS.ORDVIDEO AS
BEGIN
RETURN ORDSYS.ORDVIDEO(
NULL,
ORDSYS.ORDSOURCE( EMPTY_BLOB(), NULL, NULL, NULL, NULL, 0 ),
NULL, NULL, EMPTY_CLOB(), NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL );
END;
null

Similar Messages

  • Does ORACLE functions work with Oracle Database 10G

    Hi,
    I am wondering if ORACLE functions work with Oracle Database 10G or is it mandatory to use OCI functions?
    Thanks in advance!

    I was able to run a simple query with ora_* functions using 10g on Windows.
    The Oracle OCI calls used by PHP's ora extension still exist in the Oracle 10g libraries
    But I cannot recommend this obsolete extension.
    -- cj

  • Does Oracle 10g  work with Windows 7?

    Hi All,
    I am using windows 7 ultimate 32 bit edition. does oracle 10g and forms & Reports 10g work with that? plz tell me.

    Are you asking whether it is certified (i.e. whether Oracle has tested it and verified that it works)? Or are you asking whether it is an unsupported configuration that happens to work (more or less)?
    Oracle hasn't certified any available version of Oracle on Windows 7. It is projecting that 11.2 will be certified on Windows 7. So it's not a supported configuration. Now, it's entirely possible that it could be installed and might work reasonably well. But I'd expect that a few things wouldn't work-- whether those are features you happen to be using, though, is a different question.
    Justin

  • How does Oracle failsafe work with dataguard

    Question: Till now we used two nodes with failsafe and a database server.
    We need a solution for the following:
    * location 1: the same as above.
    * location 2: database server(standby) and maybe another instance(node).
    Scenario: The production database at location 1 fails and needs to failover(dataguard?) to the standby db at location 2. The failsafe instances at location 1 still point to the production database(which is down).
    Does dataguard point the failsafe instances to location 2. Is there maybe a better solution stategy(keep in mind the costs)?
    Or do we need RAC configured with dataguard?
    Thanx,
    Pim

    I was able to run a simple query with ora_* functions using 10g on Windows.
    The Oracle OCI calls used by PHP's ora extension still exist in the Oracle 10g libraries
    But I cannot recommend this obsolete extension.
    -- cj

  • Does oracle Toplink work with oracle VARRAY ??

    Does anybody know if oracle Toplink support oracle collections such as VARRAY ?
    The Oracle Toplink workbench seems not recognize the Oracle collection type.

    The documents [http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/toplink.903/b10064/mappingi.htm#1028481] do show some examples but it is unclear when/where in your application code this example code should be placed.
    For example, let's say in my Oracle database I have a data type defined as follows:
    CREATE TYPE person_name_ty AS OBJECT (
    first_name VARCHAR2(30),
    last_name VARCHAR2(30)
    Now I want to retrieve one of these, say through a stored procedure.
    How could this be done? Where in code would it be done?
    Thanks

  • How does Oracle client communicate with a database server

    Looking to idenify how Oracle Database Client for OpenVMS communicates with database server and whether the protocol used is secure. Realize that it is using whatever the configured network protocol is (ie. tcpip) but is languauge it uses ( ie. SQL, etc..)  secured/encrypted and if not what steps can be taken to encypt

    Arizuddin wrote:
    I have installed oracle client 10g on client pc for getting connection to Oracle databse 10g (runng on windows server) usng ODBC through SAGE ACC PAC (ERP). Working fine earlier. Now all of a suddent user starts complaining about database connection. When checked his pc registry values. Two values of ODBC keys are reset to null. Those are DSN and DRIVER values. How come this values reset to null? What is causing this to reset?Nothing in this has anything to do with the sever. You need to check what the client did on his machine that caused registry to get modified?
    How does oracle ODBC works with Oracle database? Need to know all the steps involved?The connectoin from any client is initiated by a client process. This client process is supposed to get a server process to do his work. So if this is done, the client can work now with oracle . Please see the concepts guide for the gory details of the entire process.
    HTH
    Aman....

  • Does INNER JOIN work with Oracle 8i ? (ORA-00933)

    hi,
    I try to execute the sql:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    INNER JOIN
    HR_EMP A1
    ON
    A0.MANAGER_ID=A1.EMP_NO
    WHERE
    A1.NAME = 'michael'
    but I caught an exception:
    java.sql.SQLException: ORA-00933: SQL...(message in
    chinese)
    Does INNER JOIN work with Oracle 8i ?
    thanks.

    INNER JOIN syntax is introduced in 9i, it does not exists in 8i. You can rewrite your statement:
    SELECT
    A0.FULL_NAME,A0.MANAGER_ID,A0.DEPT_NO,A0.TOP_DEPT
    FROM
    HR_ORG A0
    , HR_EMP A1
    WHERE
    A0.MANAGER_ID=A1.EMP_NO
    AND
    A1.NAME = 'michael'

  • Does Oracle OLAP comes with Oracle Database 10g ?

    1.Does Oracle OLAP comes with Oracle Database 10g or do we need seperate software to have this ?.
    2.If I create a Cube with Analytic work space manager the cube is going to be stored in the Database ( meaning the in the table space where OLAP is Stored).
    3. What is the difference between Analtyic work space manager and discoverer For Olap.
    Help is higly appreciated ..
    Thanks, Prasad

    One thing to point out : The OLAP option is a costed database option, so while this is automatically installed and part of your database you do have to purchase additional licenses to use this feature. You will need to check with your Oracle account manager to see if you are actually licensed to use this feature.
    If you have existing 9i OLAP cubes these can be quickly and easily migrated to 10g OLAP and the documentation explains how to do this. However, there are many new features that are part of 10g OLAP that will improve the performance of your data model that will not be enabled as part of a migration process. Based on my experiences it would be quicker and easier (depending on the size of your existing 9i OLAP cubes) to consider rebuilding your data model using these new 10g features. You should be able to export all the dimensions to XML templates from 9i OLAP and import the templates into the 10g schema and reload your dimensions.
    For the cubes you will probably want to consider using partitioning, composites and compression to provide maximum flexibility and performance for your new data model. There is more information on these features within the OLAP documentation and in the many whitepapers and presentations on the OLAP home page on OTN.
    For moving data from SQL Server to 10g OLAP much depends on the nature of the data transfer. If it is a one-off bulk data load then you could consider using the normal MS command line tools to dump the data out and transfer it to Oracle. Alternatively, you could consider using Oracle Data Integrator to manage the extraction of the SQL Server data and the data load process into Oracle 10g relational tables. If you decide to use Data Integrator this will require additional licenses.
    If you can extract the data from SQL Server to flat files you can use Oracle Warehouse Builder (basic ETL is free as part of the 10g database license) to load that flat file data via external tables. Warehouse Builder can also be used to define your OLAP data model (think of Warehouse Builder as a more powerful version of Analytic Workspace Manager) and provides tools to load the data directly into your OLAP dimensions and cubes. You can get more information on managing OLAP data models with Warehouse Builder the Warehouse Builder home page on OTN.
    There are no facilities to modify Discoverer Viewer to add customisations. You can add company logos, modify certain colors and/or hide certain features but it is not possible to add additional features. You may want to consider using BI Beans to provide this type of environment. BI Beans is the development framework used to create Discoverer Viewer. You can create customised JSP pages that look identical to Discoverer Viewer pages with the added benefit of providing your own specific features. You can get more information on the BI Beans home page on OTN.
    Keith Laker
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • Can Oracle APEX work with other databases?

    Can Oracle APEX work with other databases like Microsoft SQL Server or Sybase... etc.?

    Though, the Generic Connectivity does not cost extra.
    It doesn't have all the features of Transparent Gateway, but if you can access the foreign database with an ODBC driver,
    it's an easy way to integrate multiple databases.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14232/gencon.htm#HETER007
    In one application, I pull data into materialized views from MS Access and Lotus Notes.
    Since Apex lives in an Oracle database, it inherits all of the functionality of Oracle.
    There's not much it can't do.

  • Does T61p can work with any USB3.0 Express Card?

    Does T61p can work with any USB3.0 Express Card?
    For example AKA BC398 with chip NEC 700200?
    Or any other?

    i don't think many people have tested these cards, theortically it should support them, but not at the full speed. Since the ExpressCard slot is 1.0 standard.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • Does Oracle Portal come with preceeded OC4J (with PDK)

    Hi,
    I had installed the preceeded OC4J extension (with PDK in it) from http://download.oracle.com/otndocs/tech/ias/portal/files/pdk101202_oc4j_extended.zip.
    What I dont understand are the following:
    1) Does Oracle Portal come with this download?
    2) If so how do I verify whether it is installed or not... I tried accessing http://localhost:7778/pls/portal and http://localhost:8888/pls/portal but in vain, am I missing some configurations?
    3) How do I view the Oracle Portal if it has been installed?
    Regards,
    Nithya

    "Download the pre-seeded OC4J. This download contains the portlet standards, JPDK, OmniPortlet, and Web Clipping already deployed and ready to use within OC4J 10.1.2.0.2. Simply download, extract, and start OC4J."
    You only downloaded the deployed portlets.
    If you want Portal up and running, you still need the have some midtier installed

  • Does creative cloud work with windows 8

    does creative clould work with windows 8?. I see windows 7 as a minimum requirement with no mention of windows 8

    lewis0,
    Welcome to Adobe Community .
    Minimum requirements means that you have to have these as the minimum configuration to install the Adobe Products . You can surely go ahead and install the product on a windows 8 PC and it should work fine.
    Regards,
    Kartikay Sharma

  • Does apple tv work with hdmi to VGA hd15 cable?

    I have a Phillips tv and there is no hdmi to hdmi connection. But there is a VGA 15 input. Does apple tv work with it? I seem to be getting a black screen.

    I tried hard. Four different manufacturers, including Belkin, none of HDMI to VGA works with rMBP. However, all of them work with other sources, like Dell notebook.
    HDMI directly from rMBP to HDMI intput works fine.

  • Does apple tv work with ee router

    does apple tv work with my ee smartbox router

    Doubtful.
    What allows for streaming content from an iPad to a television thru an Apple TV is Apple software included with iOS on the iPad and the Apple TV software. Unless there is a 3rd party android app that provides for this, no.

  • Does Apple TV work with ipads?

    Does Apple TV work with ipads?

    http://www.apple.com/airplay/
    http://support.apple.com/kb/HT5209
     Cheers, Tom

Maybe you are looking for

  • Help with sound to LCD TV when using HDMI

    I would love any assistance with a problem I am having. I have a new mac mini with a 40" Proscan LCD. I am using a mini-DVI to HDMI adapter and am getting great video - 1080. My issue is that via Keynote I need to get sound to the LCD TV. It is comin

  • How do i transfer music from one account to another?

    I want to transfer music from my account to my friends account, how do i do that?

  • Table Control[Accept Input Only] - "ENTER" Key

    Hi Folks, I'm reviving this unanswered thread in relation to table control: when the user press enter, all the values entered disappear. [url]Re: Table control (Enter key)[url] I have a table control that accepts "ONLY" input, meaning to say, there w

  • I am having a serious issue with IMOVIE

    I created an imovie and uploaded it to my Google Drive account.  The movie was converted into to some unknown files.  I went back to Imovie and noticed that the movie is no longer there.  Can anyone help me recover this document back into Imovie.  He

  • Very Slow performance with large files

    Using iTunes with my AppleTV I've been in the slow and painful process of digitizing my dvd library and when converting the LOTR (extended edition) trilogy I ran into a problem post-conversion. They play fine in Quicktime 7.3.1, I can add them to the