Replacement of XLA_AP_PAY_AEL_GL_V view in Oracle R12

Dear All,
Can anyone let me know the replacement of XLA_AP_PAY_AEL_GL_V view in Oracle R12?
This is view is there in Oracle 11i but not in R12.
Thanks in Advance.

Dear all,
We also have the same question. Could anyone pls help? When we drill down from the GL Encumbrance form, error is returned. And when we trace the sql, this view is used in the select statement.
Please kindly advise.
HY

Similar Messages

  • Performance Issue with PAY_BALANCE_VALUES_V View in Oracle R12

    Dear all ,
      We have recently upgraded from 11i(11.5.10.2) to R12(12.1.3). We are facing one Issue with slow performance of the queries where PAY_BALANCE_VALUES_V is used. We have so many reports & logic in Payroll which uses this View.
    In 11i this works fine, however in R12 it takes very long time. There are no configuration changes we have done from 11i to R12.
    Is there any way to optimize the performance or alternate way to retrieve the Balances Data in Payroll ?
    Any heads up would be highly Appreciated.
    Thanks,
    Razi

    Hi Razi,
    The balance related performance issue is written in the following note.
    Note:1494344.1 UK Payslip Generation - Self Service Program Takes Much Time To Complete (Performance Issue)
    This issue was fixed in HR_PF.B RUP6 or patch:14376786. Did you apply this patch? If not, I suggest you apply it.
    Also, HR_PF.B RUP6 has some balance related performance issues.
    If you already have applied HR_PF.B RUP6, I suggest you log a SR with SQL trace.
    Thanks,
    Hideki

  • How to wrap a view in oracle

    Does any one know how to wrap a view in Oracle, I know it is not possible, yet. Are there any third party software to wrap the logic in the view.
    Thanks,
    Sanjay

    Your best bet is to write a view that queries the source tables and contains any necessary business logic
    CREATE VIEW VBASE AS SELECT A.COLUMN_A FROM TABLE_1 A, TABLE_2 B, TABLE_3 C WHERE A.ID = B.ID AND B.ID = C.ID;
    create a view for exposure to the user that queries the base view.
    CREATE VIEW VSECURE AS SELECT COLUMN_B FROM VBASE;
    and grant privileges to VSECURE.
    GRANT SELECT ON VSECURE TO SECURE_USER;
    This will allow the user to see, query, and describe VSECURE without seeing the definition for VBASE.
    The advantage of the this approach is that the query engine can still push predicates down into the base view to optimize the performance or the query where as this is limited with the pipeline function and can become a tuning headache.
    eg.
    SQL> -----------------------------------------
    SQL> -- create some tables
    SQL> -----------------------------------------
    SQL> CREATE TABLE table_1(ID NUMBER, MESSAGE VARCHAR2(100))
    Table created.
    SQL> CREATE TABLE table_2(ID NUMBER, message2 VARCHAR2(100))
    Table created.
    SQL> CREATE TABLE table_3(ID NUMBER, message3 VARCHAR2(100))
    Table created.
    SQL> -----------------------------------------
    SQL> -- populate tables with some data
    SQL> -----------------------------------------
    SQL> INSERT INTO table_1
    SELECT ROWNUM,
    CASE
    WHEN MOD ( ROWNUM, 50 ) = 0 THEN 'HELLO there joe'
    ELSE 'goodbye joe'
    END
    FROM DUAL
    CONNECT BY LEVEL < 1000000
    999999 rows created.
    SQL> INSERT INTO table_2
    SELECT ROWNUM,
    CASE
    WHEN MOD ( ROWNUM, 50 ) = 0 THEN 'how are you joe'
    ELSE 'good to see you joe'
    END
    FROM DUAL
    CONNECT BY LEVEL < 1000000
    999999 rows created.
    SQL> INSERT INTO table_3
    SELECT ROWNUM,
    CASE
    WHEN MOD ( ROWNUM, 50 ) = 0 THEN 'just some data'
    ELSE 'other stuff'
    END
    FROM DUAL
    CONNECT BY LEVEL < 1000000
    999999 rows created.
    SQL> -----------------------------------------
    SQL> --create base view
    SQL> -----------------------------------------
    SQL> CREATE OR REPLACE VIEW vbase AS
    SELECT a.MESSAGE,
    c.message3
    FROM table_1 a,
    table_2 b,
    table_3 c
    WHERE a.ID = b.ID
    AND b.ID = c.ID
    View created.
    SQL> -----------------------------------------
    SQL> --create secure view using base view
    SQL> -----------------------------------------
    SQL> CREATE OR REPLACE VIEW vsecure AS
    SELECT MESSAGE,
    message3
    FROM vbase
    View created.
    SQL> -----------------------------------------
    SQL> -- create row type for pipeline function
    SQL> -----------------------------------------
    SQL> CREATE OR REPLACE TYPE vbase_row
    AS OBJECT
    message varchar2(100),
    message3 varchar2(100)
    Type created.
    SQL> -----------------------------------------
    SQL> -- create table type for pipeline function
    SQL> -----------------------------------------
    SQL> CREATE OR REPLACE TYPE vbase_table
    AS TABLE OF vbase_row;
    Type created.
    SQL> -----------------------------------------
    SQL> -- create package
    SQL> -----------------------------------------
    SQL> CREATE OR REPLACE PACKAGE pkg_getdata AS
    FUNCTION f_get_vbase
    RETURN vbase_table PIPELINED;
    END;
    Package created.
    SQL> -----------------------------------------
    SQL> -- create package body with pipeline function using same query as vbase
    SQL> -----------------------------------------
    SQL> CREATE OR REPLACE PACKAGE BODY pkg_getdata AS
    FUNCTION f_get_vbase
    RETURN vbase_table PIPELINED IS
    CURSOR cur IS
    SELECT a.MESSAGE,
    c.message3
    FROM table_1 a,
    table_2 b,
    table_3 c
    WHERE a.ID = b.ID
    AND b.ID = c.ID;
    BEGIN
    FOR rec IN cur
    LOOP
    PIPE ROW ( vbase_row ( rec.MESSAGE, rec.message3 ) );
    END LOOP;
    END;
    END pkg_getdata;
    Package body created.
    SQL> -----------------------------------------
    SQL> -- create secure view using pipeline function
    SQL> -----------------------------------------
    SQL> CREATE or replace VIEW vsecure_with_pipe AS
    SELECT *
    FROM TABLE ( pkg_getdata.f_get_vbase ( ) )
    View created.
    SQL> -----------------------------------------
    SQL> -- this would grant select on the 2 views, one with nested view, one with nested pipeline function
    SQL> -----------------------------------------
    SQL> GRANT SELECT ON vsecure TO test_user
    Grant complete.
    SQL> GRANT SELECT ON vsecure_with_pipe TO test_user
    Grant complete.
    SQL> explain plan for
    SELECT *
    FROM vsecure
    WHERE MESSAGE LIKE 'HELLO%'
    Explain complete.
    SQL> SELECT *
    FROM TABLE ( DBMS_XPLAN.display ( ) )
    PLAN_TABLE_OUTPUT
    Plan hash value: 3905984671
    | Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 16939 | 2365K| | 3098 (3)| 00:00:54 |
    |* 1 | HASH JOIN | | 16939 | 2365K| 2120K| 3098 (3)| 00:00:54 |
    |* 2 | HASH JOIN | | 24103 | 1835K| | 993 (5)| 00:00:18 |
    |* 3 | TABLE ACCESS FULL| TABLE_1 | 24102 | 1529K| | 426 (5)| 00:00:08 |
    | 4 | TABLE ACCESS FULL| TABLE_2 | 1175K| 14M| | 559 (3)| 00:00:10 |
    | 5 | TABLE ACCESS FULL | TABLE_3 | 826K| 51M| | 415 (3)| 00:00:08 |
    Predicate Information (identified by operation id):
    1 - access("B"."ID"="C"."ID")
    2 - access("A"."ID"="B"."ID")
    3 - filter("A"."MESSAGE" LIKE 'HELLO%')
    Note
    PLAN_TABLE_OUTPUT
    - dynamic sampling used for this statement
    23 rows selected.
    SQL> -----------------------------------------
    SQL> -- note that the explain plan shows the predicate pushed down into the base view.
    SQL> -----------------------------------------
    SQL> explain plan for
    SELECT count(*)
    FROM vsecure_with_pipe
    WHERE MESSAGE LIKE 'HELLO%'
    Explain complete.
    SQL> SELECT *
    FROM TABLE ( DBMS_XPLAN.display ( ) )
    PLAN_TABLE_OUTPUT
    Plan hash value: 19045890
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 2 | 15 (0)| 00:00:01 |
    | 1 | SORT AGGREGATE | | 1 | 2 | | |
    |* 2 | COLLECTION ITERATOR PICKLER FETCH| F_GET_VBASE | | | | |
    Predicate Information (identified by operation id):
    2 - filter(VALUE(KOKBF$) LIKE 'HELLO%')
    14 rows selected.
    SQL> -----------------------------------------
    SQL> -- note that the filter is applied on the results of the pipeline function
    SQL> -----------------------------------------
    SQL> set timing on
    SQL> SELECT count(*)
    FROM vsecure
    WHERE MESSAGE LIKE 'HELLO%'
    COUNT(*)
    19999
    1 row selected.
    Elapsed: 00:00:01.42
    SQL> SELECT count(*)
    FROM vsecure_with_pipe
    WHERE MESSAGE LIKE 'HELLO%'
    COUNT(*)
    19999
    1 row selected.
    Elapsed: 00:00:04.11
    SQL> -----------------------------------------
    SQL> -- note the difference in the execution times.
    SQL> -----------------------------------------

  • How to migrate an existing Microsoft SSIS deployment if it is decided to replace SQL Server with an Oracle database?

    Hi Oracle Gurus!
    Currently, I am designing an ETL solution that transforms and loads a lot of data from flat files and sends it to an SQL Server 2008 R2 database for storage. However, at a future point of time, it may be decided to add or even replace SQL Server with an Oracle 11g database.
    Currently, I am writing script transforms in C# to dynamically generate SSIS packages to tansform and load the data into SQL Server. But considering that in future, an Oracle 11g or 12c database might be added to, or replace the SQL Server database, how do I make my script transforms (or whatever else I am developing currently for SQL Server) reusable to the extent possible?
    Or more precisely, what steps do I take, from an Oracle point of view, to ensure that any future migration of data to an Oracle database would be smooth to the extent possible?
    Looking up to my Oracle Gurus for enlightenment in this matter!
    Novice Kid

    When you're writing your on C# code to load data into the SQL Server you have to modify the routines so that they will work with Oracle.
    One approach is to use the extproc agent which would allow you to directly call external programs with all the logic in it to perform the load of your files and to put the data into the Oracle database. Another option would be to use utl_file package (or equivalents) which will allow you to open external files from your Oracle database and to directly read its content and then to pass it to the related tables.

  • UPK creation issues (Firefox 3.6.1, Oracle R12 (12.1.3), HP-UNIX)

    Hi, our organization is testing the following software upgrades:
    - Oracle R12 (from 11)
    - For HRMS, replacing IE 6 with Firefox 3.6.1
    Based on an email from one of our clients:
    - Trouble recording UPK in HRMS R12 with Firefox (works fine in R12 with IE6)
    - Example - did not register the field being clicked on
    - Some system prompts did not generate
    - System generated prompts not appearing in Topic Editor
    - When you publish or preview the UPK, the default prompt to enter characters is typo-ridden and says:
    -- "Entera valid valuee.g."Training Supplier 1."
    - Strangely, when copied-and-pasted, the typos disappeared.
    - And within the Topic Editor, the typos are also absent. They only seem to appear when actually using the UPK.
    Any tips would be much appreciated! Let me know if more detail needed.
    Thanks
    Bill

    Hi Bill,
    What build of UPK is being used - 3.6.1?
    Have you applied any applicable Service Enablement Packs - specifically for versions 3.6.1 (SP3 available) and 11(SP1 available)?
    I had a similar issue although it was with R11 and applying SP3 on UPK 3.6.1 sorted out all of my Firefox issues.
    I hope this helps somewhat.
    Regards,
    Greig

  • Oracle R12 responsibilities not showing

    Hi,
    After login oracle R12 Applications, responsibilities are not showing for the system administrator itself..
    Kindly do the needfull..
    Thanks,
    Vel

    Can you reproduce the issue from different clients and/or using different browser?
    Please make sure you meet the minimum requirements in the following docs.
    Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 [ID 393931.1]
    Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
    Do you get the same entries in JRE console window when you enable tracing? -- How To View The Java Console And Enable Tracing For Sun JRE (Native Plug-in) [ID 452853.1]
    If you still have the same issue, please check the application.log file along with Apache log files for any errors.
    Thanks,
    Hussein

  • What is the best way to replace the Inline Views for better performance ?

    Hi,
    I am using Oracle 9i ,
    What is the best way to replace the Inline Views for better performance. I see there are lot of performance lacking with Inline views in my queries.
    Please suggest.
    Raj

    WITH plus /*+ MATERIALIZE */ hint can do good to you.
    see below the test case.
    SQL> create table hx_my_tbl as select level id, 'karthick' name from dual connect by level <= 5
    2 /
    Table created.
    SQL> insert into hx_my_tbl select level id, 'vimal' name from dual connect by level <= 5
    2 /
    5 rows created.
    SQL> create index hx_my_tbl_idx on hx_my_tbl(id)
    2 /
    Index created.
    SQL> commit;
    Commit complete.
    SQL> exec dbms_stats.gather_table_stats(user,'hx_my_tbl',cascade=>true)
    PL/SQL procedure successfully completed.
    Now this a normal inline view
    SQL> select a.id, b.id, a.name, b.name
    2 from (select id, name from hx_my_tbl where id = 1) a,
    3 (select id, name from hx_my_tbl where id = 1) b
    4 where a.id = b.id
    5 and a.name <> b.name
    6 /
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=7 Card=2 Bytes=48)
    1 0 HASH JOIN (Cost=7 Card=2 Bytes=48)
    2 1 TABLE ACCESS (BY INDEX ROWID) OF 'HX_MY_TBL' (TABLE) (Cost=3 Card=2 Bytes=24)
    3 2 INDEX (RANGE SCAN) OF 'HX_MY_TBL_IDX' (INDEX) (Cost=1 Card=2)
    4 1 TABLE ACCESS (BY INDEX ROWID) OF 'HX_MY_TBL' (TABLE) (Cost=3 Card=2 Bytes=24)
    5 4 INDEX (RANGE SCAN) OF 'HX_MY_TBL_IDX' (INDEX) (Cost=1 Card=2)
    Now i use the with with the materialize hint
    SQL> with my_view as (select /*+ MATERIALIZE */ id, name from hx_my_tbl where id = 1)
    2 select a.id, b.id, a.name, b.name
    3 from my_view a,
    4 my_view b
    5 where a.id = b.id
    6 and a.name <> b.name
    7 /
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=8 Card=1 Bytes=46)
    1 0 TEMP TABLE TRANSFORMATION
    2 1 LOAD AS SELECT
    3 2 TABLE ACCESS (BY INDEX ROWID) OF 'HX_MY_TBL' (TABLE) (Cost=3 Card=2 Bytes=24)
    4 3 INDEX (RANGE SCAN) OF 'HX_MY_TBL_IDX' (INDEX) (Cost=1 Card=2)
    5 1 HASH JOIN (Cost=5 Card=1 Bytes=46)
    6 5 VIEW (Cost=2 Card=2 Bytes=46)
    7 6 TABLE ACCESS (FULL) OF 'SYS_TEMP_0FD9D6967_3C610F9' (TABLE (TEMP)) (Cost=2 Card=2 Bytes=24)
    8 5 VIEW (Cost=2 Card=2 Bytes=46)
    9 8 TABLE ACCESS (FULL) OF 'SYS_TEMP_0FD9D6967_3C610F9' (TABLE (TEMP)) (Cost=2 Card=2 Bytes=24)
    here you can see the table is accessed only once then only the result set generated by the WITH is accessed.
    Thanks,
    Karthick.

  • Preparing oracle R12 stagearea on Windows 2003

    Hi All,
    I have downloaded the oracle r12 software from edelivery and now i am trying to created the stage directory.
    I am have windows 2003
    Oracle 12.1.0.1
    I created a directory with StageR12.
    Then, i created a batch file with the following commands:
    Filename:createstage.txt
    unzip -d E:\StageR12 E:\R12Dump\B24453-01
    unzip -d E:\StageR12 E:\R12Dump\B24454-01
    unzip -d E:\StageR12 E:\R12Dump\B24455-01
    unzip -d E:\StageR12 E:\R12Dump\B24994-01
    unzip -d E:\StageR12 E:\R12Dump\B34431-01
    unzip -d E:\StageR12 E:\R12Dump\B50875-01
    unzip -d E:\StageR12 E:\R12Dump\B53824-01_1of4
    unzip -d E:\StageR12 E:\R12Dump\B53824-01_2of4
    unzip -d E:\StageR12 E:\R12Dump\B53824-01_3of4
    unzip -d E:\StageR12 E:\R12Dump\B53824-01_4of4
    unzip -d E:\StageR12 E:\R12Dump\B53825-01
    unzip -d E:\StageR12 E:\R12Dump\V15667-01_1of2
    unzip -d E:\StageR12 E:\R12Dump\V15667-01_2of2
    unzip -d E:\StageR12 E:\R12Dump\V15668-01_1of3
    unzip -d E:\StageR12 E:\R12Dump\V15668-01_2of3
    unzip -d E:\StageR12 E:\R12Dump\V15668-01_3of3
    unzip -d E:\StageR12 E:\R12Dump\V15669-01_1of3
    unzip -d E:\StageR12 E:\R12Dump\V15669-01_2of3
    unzip -d E:\StageR12 E:\R12Dump\V15669-01_3of3
    unzip -d E:\StageR12 E:\R12Dump\V15670-01_1of3
    unzip -d E:\StageR12 E:\R12Dump\V15670-01_2of3
    unzip -d E:\StageR12 E:\R12Dump\V15670-01_3of3
    unzip -d E:\StageR12 E:\R12Dump\V15671-01_1of3
    unzip -d E:\StageR12 E:\R12Dump\V15671-01_2of3
    unzip -d E:\StageR12 E:\R12Dump\V15671-01_3of3
    unzip -d E:\StageR12 E:\R12Dump\V15672-01_1of3
    unzip -d E:\StageR12 E:\R12Dump\V15672-01_2of3
    unzip -d E:\StageR12 E:\R12Dump\V15672-01_3of3
    unzip -d E:\StageR12 E:\R12Dump\V15673-01_1of3
    unzip -d E:\StageR12 E:\R12Dump\V15673-01_2of3
    unzip -d E:\StageR12 E:\R12Dump\V15673-01_3of3
    unzip -d E:\StageR12 E:\R12Dump\V15674-01_1of2
    unzip -d E:\StageR12 E:\R12Dump\V15674-01_2of2
    unzip -d E:\StageR12 E:\R12Dump\V15675-01
    unzip -d E:\StageR12 E:\R12Dump\V15676-01_1of4
    unzip -d E:\StageR12 E:\R12Dump\V15676-01_2of4
    unzip -d E:\StageR12 E:\R12Dump\V15676-01_3of4
    unzip -d E:\StageR12 E:\R12Dump\V15676-01_4of4
    unzip -d E:\StageR12 E:\R12Dump\V15677-01_1of2
    unzip -d E:\StageR12 E:\R12Dump\V15677-01_2of2
    unzip -d E:\StageR12 E:\R12Dump\V17202-01
    unzip -d E:\StageR12 E:\R12Dump\V18734-01
    unzip -d E:\StageR12 E:\R12Dump\V18967-01
    unzip -d E:\StageR12 E:\R12Dump\V19061-01
    unzip -d E:\StageR12 E:\R12Dump\V20322-01
    unzip -d E:\StageR12 E:\R12Dump\V26710-01now this batch file created some directory and executables in the E:\StageR12 dir and it stop at the following prompt:
    replace E:\StageR12/stage/disk.label? [y]es,[n]o,[A]ll,[N]one, [r]ename:
    I want to know which option do i need to use here.
    Please let me know the correct option, which will help me in configuring the proper Stage Area.

    now this batch file created some directory and executables in the E:\StageR12 dir and it stop at the following prompt:
    replace E:\StageR12/stage/disk.label? [y]es,[n]o,[A]ll,[N]one, [r]ename:
    I want to know which option do i need to use here.
    Please let me know the correct option, which will help me in configuring the proper Stage Area.Type "A" for All as it is safe to overwrite those disk.label files.
    Thanks,
    Hussein

  • Need help for learning how to develop interfaces for Oracle R12 EBS

    Hi all,
    I need to learn how to create interfaces in PL/SQL for Oracle R12 EBS Financials. I cannot find a good starting point for the documentation and examples to help me get started in this area. Would appreciate tips
    for this area.

    Hi,
    What kind of interfaces you are planning to develop?
    Oracle already provides list of APIs that can be used (in R12, it is responsibility).
    Oracle Integration Repository Documentation Resources Release 12 [ID 396116.1]
    Oracle Integration Repository
    http://irep.oracle.com/index.html
    If those APIs do not satisfy your requirements, you can refer to "Oracle Applications Developer" guide as well as SQL-PL/SQL guides.
    Applications Releases 11i and 12
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Database Documentation -- SQL-PL/SQL
    http://www.oracle.com/technetwork/database/enterprise-edition/documentation/index.html
    Thanks,
    Hussein

  • How to Create MultiSheet Excel Report Output in XML Publisher in Oracle R12

    Dear All,
    How to Create MultiSheet Excel Report Output in XML Publisher in Oracle R12.
    My Requirement is to develop RTF Template and geneate Excel output in Multiple sheet.
    plz guide me on this..
    thnx
    Khushal

    plz see
    BI Publisher: How to create Multisheet in Single Excel file using Excel Template [ID 1352000.1]
    for r12 you can use excel template
    i think it more appropriate for excel output

  • How to Configure a oracle R12 with RAC on two different  system .

    I have one laptop and one desktop
    Laptop----
    on laptop I have install vmware 8
    Host OS --win7
    Guest OS---linux 4
    Desktop ---
    On Desktop I have install Vmware 8
    Hosts OS --- Win XP
    Guest OS ---Linux 4
    Plz suggest How configure oracle R12 with RAC using both system .

    Hussein Sawwan wrote:
    on laptop I have install vmware 8
    Host OS --win7
    Guest OS---linux 4
    Desktop ---
    On Desktop I have install Vmware 8
    Hosts OS --- Win XP
    Guest OS ---Linux 4
    Plz suggest How configure oracle R12 with RAC using both system .If you want to configure RAC, then you must have the same OS installed on all RAC nodes -- See (RAC: Frequently Asked Questions [ID 220970.1], Does Oracle Clusterware or Oracle Real Application Clusters support heterogeneous platforms?) for details.
    Once you have the same OS, please refer to:
    Oracle E-Business Suite Release 12 High Availability Documentation Roadmap [ID 1072636.1]
    Using Oracle 10g Release 2 Real Application Clusters and Automatic Storage Management with Oracle E-Business Suite Release 12 [ID 388577.1]
    Using Oracle 11g Release 2 Real Application Clusters with Oracle E-Business Suite Release 12 [ID 823587.1]
    Thanks,
    HusseinHi Hussein,
    For Rac I am using both same OS (linux 4) for both nodes .
    Plz suggest its possible to install two nodes on different machine(diiferent virtual machine on different system ) .Can communicate both machine without any problem if its possible plz provide links.

  • How to Register a View in Oracle Applications

    Hi,
    I have created a Custom View and want it to see it in one of the BPA Pages. For this purpose I shall need to register the view in Oracle Applications.
    Can you please provide me clues to do so. I tried the Application Developer responsibility, there I can only query the view and not register them.
    Also if I try using backend I could get hold of Package AD_DD which registers a table. Any clues for registering the View would be welcome.
    Thanks

    Thanks for your response.
    Actually I need to show Sales Order Line No, Federal Id and a few other Fields on our Invoice. Now these are not available in Oracle Recievables view. So I was trying to create my own View.
    I created a View in database. Now I am trying to create a Data source and associate this (custom created) View to it. However my View is not showing in the Views List of Values.
    I am not sure whether I am doing it right. Can you please help me with this. Any pointers to a document which explains my requirement would be great.
    Thanks
    Sumit

  • Creating a Materialized View in Oracle 8i

    Hello -
    What are the steps and privileges required to create a materialized view in Oracle 8i?
    Thanks

    To create a materialized view in your own schema:
    You must have been granted the CREATE MATERIALIZED VIEW system privilege and either the CREATE TABLE or CREATE ANY TABLE system privilege.
    You must also have access to any master tables of the materialized view that you do not own, either through a SELECT object privilege on each of the tables or through the SELECT ANY TABLE system privilege.
    To create a materialized view in another user's schema:
    You must have the CREATE ANY MATERIALIZED VIEW system privilege.
    The owner of the materialized view must have the CREATE TABLE system privilege. The owner must also have access to any master tables of the materialized view that the schema owner does not own (for example, if the master tables are on a remote database), and to any materialized view logs defined on those master tables, either through a SELECT object privilege on each of the tables or through the SELECT ANY TABLE system privilege.
    Thanks
    Manish

  • Relink Error oracle r12 on windows

    error while relink oracle r12 on windows
    with the following error
    An error occurred while relinking application programs.
    Creating import libraries for FND
    Creating import library APPR60UE.lib on Sun Mar 18 02:03:43 EST 2012
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:2877: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:729: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:2924: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:1310: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    gnumake: `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/APPR60UE.lib' is up
    to date.
    Done with creating import library APPR60UE.lib on Sun Mar 18 02:03:43 EST 2012
    Creating import library CMDCART.lib on Sun Mar 18 02:03:43 EST 2012
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:2877: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:729: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:2924: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/imp_fnd_3760.mk:1310: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    gnumake: `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/CMDCART.lib' is up
    to date.
    Starting link of fnd executable 'APPR60UE.dll' on Sun Mar 18 02:03:46 EST
    2012
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2901: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:752: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2948: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:1333: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe -MAP:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/APPR60UE.map
    -NODEFAULTLIB -MACHINE:IX86 -NOLOGO -SUBSYSTEM:CONSOLE -DLL
    -OUT:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/APPR60UE.dll
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/APPR60UE.exp afsfld.obj
    fdxext.obj fdxidk.obj fdxidr.obj fdxsqk.obj fdxsqr.obj xitdas.obj fduxit.obj \
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/xitsrw.obj
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/xirfnd.obj
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/fdxsrw.obj
    E:/oracle/VIS/apps/apps_st/appl/po/12.0.0/lib/xirpo.obj
    E:/oracle/VIS/apps/apps_st/appl/fa/12.0.0/lib/xirfa.obj \
    E:/oracle/VIS/apps/apps_st/appl/ar/12.0.0/lib/xirar.obj
    E:/oracle/VIS/apps/tech_st/10.1.2/reports/userexit/uez.obj \
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDXIT.lib
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FND115W.lib \
    E:/oracle/VIS/apps/apps_st/appl/pay/12.0.0/lib/payst.lib
    E:/oracle/VIS/apps/apps_st/appl/fa/12.0.0/lib/fast.lib
    E:/oracle/VIS/apps/apps_st/appl/ff/12.0.0/lib/FF.lib
    E:/oracle/VIS/apps/apps_st/appl/po/12.0.0/lib/PO.lib
    E:/oracle/VIS/apps/apps_st/appl/inv/12.0.0/lib/INV.lib \
    E:/oracle/VIS/apps/apps_st/appl/gl/12.0.0/lib/GL.lib
    E:/oracle/VIS/apps/apps_st/appl/wip/12.0.0/lib/WIP.lib
    E:/oracle/VIS/apps/apps_st/appl/alr/12.0.0/lib/alrst.lib
    E:/oracle/VIS/apps/apps_st/appl/alr/12.0.0/lib/alstub.obj \
    E:/oracle/VIS/apps/apps_st/appl/eng/12.0.0/lib/ENG.lib
    E:/oracle/VIS/apps/apps_st/appl/dt/12.0.0/lib/dtst.lib
    E:/oracle/VIS/apps/apps_st/appl/mrp/12.0.0/lib/MRP.lib
    E:/oracle/VIS/apps/apps_st/appl/bom/12.0.0/lib/BOM.lib
    E:/oracle/VIS/apps/apps_st/appl/ar/12.0.0/lib/AR.lib \
    E:/oracle/VIS/apps/apps_st/appl/eng/12.0.0/lib/ENG115W.lib
    E:/oracle/VIS/apps/apps_st/appl/gl/12.0.0/lib/GL115W.lib
    E:/oracle/VIS/apps/apps_st/appl/inv/12.0.0/lib/INV115W.lib \
    E:/oracle/VIS/apps/apps_st/appl/wip/12.0.0/lib/WIP115W.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oranls10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    gnumake: *** [E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/APPR60UE.dll]
    Error 128
    Done with link of fnd executable 'APPR60UE.dll' on Sun Mar 18 02:03:46 EST
    2012
    Relink of module "APPR60UE.dll" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'CMDCART.dll' in product fnd ...
    Removing any existing temp directory
    rm -rf temp
    creating the temp directory
    mkdir temp
    changing permissions for the temp directory
    chmod 777 temp
    Getting the object file names for this CMDCART.dll
    gnumake -f E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk
    cmdcart.LIST
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2901: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:752: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2948: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:1333: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    Extracting objects from the library
    ar -xv -F coff E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/fndst.lib
    afplog.obj
    x - afplog.obj
    Creating temporary function list, if required.
    echo
    gnumake -f E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll
    Starting link of fnd executable 'CMDCART.dll' on Sun Mar 18 02:03:46 EST 2012
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2901: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:752: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2948: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:1333: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe -MAP:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.map
    -NODEFAULTLIB -MACHINE:IX86 -NOLOGO -SUBSYSTEM:CONSOLE -DLL
    -OUT:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/afpsmcrt.obj \
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/CMDCART.exp
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oranls10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    gnumake: *** [E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll]
    Error 128
    Done with link of fnd executable 'CMDCART.dll' on Sun Mar 18 02:03:46 EST 2012
    Relink of module "CMDCART.dll" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'CONCSUB.exe' in product fnd ...
    gnumake -f E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CONCSUB.exe
    Starting link of fnd executable 'CONCSUB.exe' on Sun Mar 18 02:03:46 EST 2012
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2901: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:752: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2948: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:1333: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe -MAP:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CONCSUB.map
    -NODEFAULTLIB -NOLOGO -SUBSYSTEM:CONSOLE -ENTRY:mainCRTStartup
    -OUT:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CONCSUB.exe
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/fdpocr.obj \
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oranls10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    gnumake: *** [E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CONCSUB.exe]
    Error 128
    Done with link of fnd executable 'CONCSUB.exe' on Sun Mar 18 02:03:46 EST 2012
    Relink of module "CONCSUB.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'FDULONG.exe' in product fnd ...
    gnumake -f E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FDULONG.exe
    Starting link of fnd executable 'FDULONG.exe' on Sun Mar 18 02:03:46 EST 2012
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2901: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:752: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2948: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:1333: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe -MAP:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FDULONG.map
    -NODEFAULTLIB -NOLOGO -SUBSYSTEM:CONSOLE -ENTRY:mainCRTStartup
    -OUT:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FDULONG.exe
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/fdulong.obj \
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oranls10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    gnumake: *** [E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FDULONG.exe]
    Error 128
    Done with link of fnd executable 'FDULONG.exe' on Sun Mar 18 02:03:46 EST 2012
    warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2948: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:1333: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe -MAP:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/fdfcmp.map
    -NODEFAULTLIB -NOLOGO -SUBSYSTEM:CONSOLE -ENTRY:mainCRTStartup
    -OUT:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/fdfcmp.exe
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/fdfcmp.obj \
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oranls10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    gnumake: *** [E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/fdfcmp.exe]
    Error 128
    Done with link of fnd executable 'fdfcmp.exe' on Sun Mar 18 02:03:54 EST 2012
    Relink of module "fdfcmp.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Relinking module 'fndcpesr.exe' in product fnd ...
    gnumake -f E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe
    Starting link of fnd executable 'fndcpesr.exe' on Sun Mar 18 02:03:54 EST
    2012
    process_begin: CreateProcess((null), lib.exe -NOLOGO -LIST
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDST.lib, ...) failed.
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2901: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:752: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/CMDCART.dll'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:2948: warning:
    overriding commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    E:/oracle/VIS/apps/apps_st/appl/admin/VIS/out/link_fnd_3760.mk:1333: warning:
    ignoring old commands for target
    `E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/FNDRTR45.exe'
    link.exe -MAP:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.map
    -NODEFAULTLIB -NOLOGO -SUBSYSTEM:CONSOLE -ENTRY:mainCRTStartup
    -OUT:E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/fdpesr.obj \
    E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/lib/FNDCORE.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasql10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/precomp/lib/msvc/orasqx10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oraclient10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/RDBMS/lib/oracommon10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranro10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oran10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/NETWORK/lib/oranl10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oranls10.lib
    E:/oracle/VIS/apps/tech_st/10.1.2/lib/oracore10.lib /LIB/MSVCRT.LIB
    /LIB/OLDNAMES.LIB "LIB"/KERNEL32.LIB "LIB"/USER32.LIB "LIB"/ADVAPI32.LIB
    "LIB"/WINSPOOL.LIB "LIB"/COMDLG32.LIB "LIB"/GDI32.LIB "LIB"/VERSION.LIB
    gnumake: *** [E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin/fndcpesr.exe]
    Error 128
    Done with link of fnd executable 'fndcpesr.exe' on Sun Mar 18 02:03:54 EST
    2012
    Relink of module "fndcpesr.exe" failed.
    See error messages above (also recorded in log file) for possible
    reasons for the failure. Also, please check that the Unix userid
    running adrelink has read, write, and execute permissions
    on the directory E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin,
    and that there is sufficient space remaining on the disk partition
    containing your Oracle Applications installation.
    Done with link of product 'fnd' on Sun Mar 18 02:03:54 EST 2012
    adrelink is exiting with status 1
    End of adrelink session
    Date/time is Sun Mar 18 02:03:54 EST 2012
    Rebase DLLs in AU_TOP/bin and copy DLLs back to PROD_TOP/bin
    Copy DLLs of ALR to E:/oracle/VIS/apps/apps_st/appl/alr/12.0.0/bin
    Copy DLLs of AP to E:/oracle/VIS/apps/apps_st/appl/ap/12.0.0/bin
    Copy DLLs of AR to E:/oracle/VIS/apps/apps_st/appl/ar/12.0.0/bin
    Copy DLLs of BOM to E:/oracle/VIS/apps/apps_st/appl/bom/12.0.0/bin
    Copy DLLs of CRP to E:/oracle/VIS/apps/apps_st/appl/crp/12.0.0/bin
    Copy DLLs of DT to E:/oracle/VIS/apps/apps_st/appl/dt/12.0.0/bin
    Copy DLLs of ENG to E:/oracle/VIS/apps/apps_st/appl/eng/12.0.0/bin
    Copy DLLs of FA to E:/oracle/VIS/apps/apps_st/appl/fa/12.0.0/bin
    Copy DLLs of FF to E:/oracle/VIS/apps/apps_st/appl/ff/12.0.0/bin
    Copy DLLs of FND to E:/oracle/VIS/apps/apps_st/appl/fnd/12.0.0/bin
    Copy DLLs of GL to E:/oracle/VIS/apps/apps_st/appl/gl/12.0.0/bin
    Copy DLLs of INV to E:/oracle/VIS/apps/apps_st/appl/inv/12.0.0/bin
    Copy DLLs of MRP to E:/oracle/VIS/apps/apps_st/appl/mrp/12.0.0/bin
    Copy DLLs of GMA to E:/oracle/VIS/apps/apps_st/appl/gma/12.0.0/bin
    Copy DLLs of PAY to E:/oracle/VIS/apps/apps_st/appl/pay/12.0.0/bin
    Copy DLLs of PO to E:/oracle/VIS/apps/apps_st/appl/po/12.0.0/bin
    Copy DLLs of WIP to E:/oracle/VIS/apps/apps_st/appl/wip/12.0.0/bin

    Do you have any suggestion about that error
    i want to start the application as soon as possibleWhat version of gnumake/make you are using? Make sure you use the one mentioned in (Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Microsoft Windows Server (32-bit) [ID 761567.1]), under "GNU Make (Shareware)" section.
    Thanks,
    Hussein

  • AP Check Printing in Oracle R12

    AP Check printing in Oracle R12 has changed significantly. Although there are many resources available, I still had to struggle to gather all of the necessary information. Now that we have implemented our solution, I have put together a blog to help everyone. Please visit this blog and provide your comments.
    http://ora12apps.blogspot.com/
    Thanks
    Rajeev

    AP Check printing in Oracle R12 has changed significantly. Although there are many resources available, I still had to struggle to gather all of the necessary information. Now that we have implemented our solution, I have put together a blog to help everyone. Please visit this blog and provide your comments.
    http://ora12apps.blogspot.com/
    Thanks
    Rajeev

Maybe you are looking for

  • JCOProxy error while calling a RFC

    Hi,    When i tr to call a RFC "CBIF_GLM1_BATCH_READ", i get a fatal error.The error message is: "JCOProxy error: Problem retrieving JCO.Function object." When i checked if i was able to connect to any of the functions other than BAPI's i got the sam

  • Refresh data in a jtable when data changes

    I have a jtable grdTable and a tableModel mytableModel which extend abstract table model I have a jcheckbox in the column 1 which i want to uncheck all I am doing the following.The data is changed ,I could see by doing susyem.out.println() but the da

  • Powerbook G4 freezing at blue bar startup

    Hi there I have a Powerbook G4 Titanium (1Ghz processor) 1Gb RAM. For nearly 5 years it has given me no problems. I have Tiger 10.4.8 installed. A week ago it suddenly started to get very slow and required restarting 3 or 4 times before the problem s

  • Auto Clearing of Part of Cutomer invoice against Down Payment Received

    Hi, I am working for a construction company project. The scenario is - At the time of contract customer pays the down payment e.g. USD 100,000. During the execution of the project customer will be billed every quarter. The invoice will be generated f

  • Table controlled partitioning - please share your experiences.

    hello , is anyone using table controlled partitioning in the sap on db2 for z/os enviroment? can you please share your [good/bad]experiences on the subject ? is there anything we should all watchout for ? thanks omer brandis visit the sap on db2 for