Oracle table for the field ' Date effectivity to "in the Bill of materials screen

Hi gurus Apps,

In Oracle EBS Bill of materials screen tab Date effectivity, there's column: date 'To' indicates the end until whose Nomenclature is active.

I want to know where this field Date effectivity to lies in the base table, I tried to help-> diagonostics but this field is not present in the given view.

Almost all areas at the level of BOM components are present in bom_inventory_components table except this date of entry into force to the field.

Please advice regarding in what table are present here.

Thank you
RG

Hi RG,.

These two fields EFFECTIVITY_DATE & DISABLE_DATE are available in the base table: BOM_COMPONENTS_B

SELECT EFFECTIVITY_DATE, DISABLE_DATE FROM BOM_COMPONENTS_B WHERE BILL_SEQUENCE_ID =: p_bill_seq_id

HTH
Sanjay

Tags: Oracle Applications

Similar Questions

  • By comparing the two tables for the integrity of the data

    Hi all
    I need to compare two tables for the integrity of the data through the SQL query.

    If you need to compare all the columns of t1 to t2:

    (SELECT * FROM t1
    MINUS
    SELECT * FROM t2)
    UNION ALL
    (SELECT * FROM t2
    MINUS
    SELECT * FROM t1);
    

    Kind regards
    Ankit Rouault
    http://theoraclelog.blogspot.in

  • Dictionary of Table for the ip address of the database

    What is the Oracle data dictionary Table for the ip address of the database

    Hello

    I think that could give him the IP address

    SQL > select SYS_CONTEXT ('USERENV', 'IPAddress', 15) double ipaddr;

    concerning

    Jafar

  • Base table for the customer in R12

    Hello

    What is the name of the base table for the customer in R12?

    Thank you
    GSM

    Please see (absorption of the projects of the TCA Architecture in version 12 [417511.1 ID]).

    Thank you
    Hussein

  • Can I use the same Oracle repository for the new application of FDM

    Hi all
    I have uninstall FDM and install and reconfigure FDM still and then restore FDM Apps present previously.

    To do this, I can resue the same Oracle repository for the restoration of the FDM application on newly installed instance.

    As far as I know, I need to make the backup of this repository then file repository and create it again and use it for the new application

    Please suggest, are there other ways to do this...

    Thanks in advance

    J

    You can reuse the repository. You will need instead of

  • Bug 7372061 R12 APPROVAL INITIATE BUTTON IS grayed OUT FOR THE BILLS WITH WI

    Hello

    Is it patch available for > > > > Bug 7372061 R12 APPROVAL INITIATE BUTTON IS grayed OUT FOR THE BILLS WITH TAX WITHHODLING
    In workbench Bill initiate approval checkbox is grayed out for the Bills with the withholding tax.
    Fixed apinvutb.pls 120.44.12000000.15



    I tried to search on metalink but theres no such fix name.


    Thank you

    Hello

    I think that you have nothing to do at the moment. As suggested before, log a SR and do escalate the issue.

    Good luck!

    Kind regards
    Hussein

  • How to take partial dump using EXP/IMP in oracle only for the main tables

    Hi all

    select*from v$version;
    
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    "CORE    10.2.0.1.0    Production"
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    

    I have about 500 huge data main tables in my database of pre production. I have an environment to test with the same structure of old masters. This test environment have already old copy of main tables production. I take the dump file from pre production environment with data from last week. old data from the main table are not necessary that these data are already available in my test environment. And also I don't need to take all the tables of pre production. only the main tables have to do with last week data.

    How can I take partial data masters pre prodcution database tables?  and how do I import only the new record in the test database.

    I use orders EXP and IMP. But I don't see the option to take partial data. Please advice.

    Hello

    For the first part of it - the paintings of masters just want to - use datapump with a request to just extract the tables - see example below (you're on v10, so it is possible)

    Oracle DBA Blog 2.0: expdp dynamic list of tables

    However - you should be able to get a list of master tables in a single select statement - is it possible?

    For the second part - are you able to qrite a query live each main table for you show the changed rows? If you can not write a query to do this, then you won't be able to use datapump to extract only changed lines.

    Normally I would just extract all the paintings of masters completely and refresh all...

    See you soon,.

    Rich

  • Alternatives to the dynamic tables for the display of dynamic data

    What methods are available for the display of the data to MySQL with PHP on a web page? Is there an alternative to a dynamic table when him varies the amount of data? whatever it is the basis of CSS?

    Thank you very much

    May 27, 2006 to macromedia.dreamweaver, mother of Pingus wrote:

    > if I could just output a div for example?

    Or a paragraph, or a

    , an unordered list, or any other container
    Tag, or the attribute src on a tag, or a combination any of the
    above. Consider the case where the database includes press releases-
    date, title, body. You might, say, do the repeat as this region:

    Press releases



    <& headlinefromdatabase="" &="">


    <& datefromdatabase="" &="">-<& bodyfromdatabase="" &="">



    Contact Information

    --
    Joe Makowiec
    http://Makowiec.NET/
    E-mail: http://makowiec.net/email.php

  • What Oracle Table contains the name of the Partition key field?

    What Oracle table/view retains the name of partition key field?

    All_Tab_Partitions does not seem to keep this information.

    When I use the toad-> pattern-> Tables-> Partitions, it lists the name of the key field of partition, that partition is based.

    Thank you

    all_part_key_columns
    or
    USER_part_key_columns

    Published by: OrionNet on December 5, 2008 15:56

  • Read the table for the next value (sequence issue)

    Is there a function in line with my_seq_no.nextval that can read a value from the previous field and get the next number in the sequence? I know how to create a sequence, but I thought that there is something as a function of getnextval.

    Thank you.

    Preston,

    The problem is that there is no such thing as a previous value in Oracle.
    You must specify a way (like number maximum.. etc..) to get the expected value.

    Sometimes, you can see the code as...

    insert into emp values
    (select max(empid) + 1 from emp) new_emp_id,
    ''XYZ' ename,
    .......
    ....
    ...
    from dual;
    

    As seen... the code above takes the maximum value of the emp table and gives you the identificateursuivant emp.

    The problem here is that all currently connected users will get the same value for the new empid, until a person inserts a record, then... all others would be unique constraint errors (if you have constraints on the right in place).

    Using sequences is the right way to ensure that all concurrent users get their own unique values for the new values.

    As for the getnextval, they could always get to a function which selects to the max (column-name) + 1 and returns it... but it has the same problems as the insert... Select above... So I would rather not provide code for such a thing... I would do more damage than help it. Please use a sequence for your case.

  • How to get the required column, the names of tables for the preparation of the report.

    Based on the MD50 how to get the exact name, the table names he joined for report development. as I am new on this project and the purchase of failet for R12.
    How can I start my approach to prepare the data for the report model? How can I search the database based on the respective diagrams of means?
    all input appreciated

    Hello

    You can find information about schema objects in eTRM Web site, you can also consult the documentation for product/module and see if it helps. If you already have any report (standard or custom), you can enable the trace and run the program to see which object it access or open the report using Report Designer and see the code.

    ETRM Oracle
    http://ETRM.Oracle.com

    Oracle Applications documentation
    http://www.Oracle.com/technology/documentation/applications.html

    Kind regards
    Hussein

  • Table for the code for method of payment for the suppliers site

    Hi all, does anyone knows how to get the value for the code for method of payment for the suppliers site in R12.1.3? I don't speak from that in the following path: 1 Paybles responsibility 2. Suppliers 3. Request for a 4 suppliers. Click on details of payment 5. Scroll to supplier Sites and press the update button 6. Note that, for example among the payment methods is checked as default thanks in advance, A.Stoynaov

    Hello

    Please check this note that contains the query:

    Default values for method of payment for providers at the level of the Table (Doc ID 737128.1)

    You can use this query to view the lines for a given provider site:

    SELECT *.

    Of iby_ext_party_pmt_mthds IEPPM

    WHERE IEPPM.ext_pmt_party_id IN

    (SELECT IEP.ext_payee_id

    Of iby_external_payees_all IEP

    WHERE IEP.supplier_site_id IN

    (SELECT APSS.vendor_site_id

    Of ap_supplier_sites_all of the PSA, ap_suppliers APS

    WHERE APS.vendor_id = APSS.vendor_id

    AND APS.vendor_name = '. '

    AND APSS.vendor_site_code = ''));

    Concerning

    Joel Purswani

    Support of Oracle

  • There is 'table' for the object_type values?

    I wonder if there is a system view, or a table for all the values that can appear in the all_objects.object_type column? Or maybe the only way to get this list of os values to query with the distinct keyword dba_objects.object_type?

    Thank you

    Look at the source of the view:

    Decode (o.type #, 0, 'NEXT ITEM', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTERS',)

    4, 'VIEW', 5, 'SYNONYM', 6, 'ORDER ',.

    7, 'PROCEDURE', 'FUNCTION', 8, 9, 'PACKAGE ',.

    11, 'PACKAGE BODY', 12, 'TRIGGER ',.

    13, 'TYPE', 14, 'TYPE BODY ':

    19, "PARTITION TABLE", 20, 'PARTITION OF THE INDEX', 21, 'CRAFT. "

    22, 'LIBRARY', 23, "DIRECTORY," 24, "QUEUE."

    28, 'JAVA SOURCE,' 29, 'JAVA CLASS', 30, 'JAVA RESOURCE. "

    32, "INDEXTYPE", 33, "OPERATOR",.

    34, 'TABLE SUBPARTITION', 35, "INDEX SUBPARTITION.

    40, 'LOB PARTITION', 41, "LOB SUBPARTITION.

    42, NVL ((SELECT "EQUIVALENCE OF REWRITING"

    AMOUNT $ s

    WHERE s.obj #= o.obj #.

    and bitand (s.xpflags, 8388608) = 8388608).

    "MATERIALIZED VIEW'),

    43, "DIMENSION."

    44, 'CONTEXT', 46, "SET OF RULES', 47, 'PLAN OF RESOURCES."

    48, GROUP "CONSUMER."

    55, "XML SCHEMA", 56, "JAVA DATA."

    57, 'EDITION', 59, "RULE."

    60, "CAPTURE," 61, "APPLICABLE."

    62, 'EVALUATION CONTEXT ',.

    66, 'JOB', 'PROGRAMME', 67, 68, "JOB CLASS", 69, 'WINDOW',

    72, GROUP 'PLANNER', 74, 'CALENDAR', 79 'CHAIN ',.

    81, 'GROUP OF FILES', 82 'MODEL OF EXPLORATION' 87, "ASSEMBLY,"

    90, 'IDENTIFICATION', ' 92, 'CUBE DIMENSION', 93, "CUBE."

    94, "MEASUREMENT RECORD", 95 "CUBE BUILD PROCESS,"

    100, "LINE WATCHER", 101, "DESTINATION."

    "UNDEFINED"),

  • Create a table for the web app components

    Hi all, I want to create one to display a list of web app components with the headings at the top of the table and the list of results, then under. See the result here Focus apartments, Brisbane

    I have 2 paintings put up here on the page, with the titles and the other containing the results. So there is no surprise for it being 2 completely separate tables that they don't line up correctly with each other during the display of the results.

    If I insert lines in the webapp layout, he repeats to each item in the list, which we don't want.

    How can I get these headers and data to align properly? No doubt there is a better way than this attempt. Thank you

    Create the table with thead and tbody element on the page. In the tbody add your module tag web app. In the available list web app only include the row in the table (not an entire table).

  • Export a table for the flat file and must insert sysdate in flat file column

    Hi, I created an interface allowing to export an oracle table to a csv file. All the columns in the table work well. Then I need to insert the sysdate in a column in the csv file.

    I made the map as working in the transit area, implementation is to_char(sysdate,'dd/mm/yyyy'). But the result is insert in column 14.

    I tried to create a variable refreshing that choose double to_char(sysdate,'dd/mm/yyyy'), maps then as the csv file column, but he only insert 1 row and the format is YYYYMMDD.

    I tried to use SELECT '< % = odiRef.getSysDate ("YYYYMMDD") % >' double to the variable and it also only insert a line in the flat file.

    I used the same methodology in ODI10g, it works fine.

    So, I wonder how it can be implemented in 11g.

    Thank you

    It turns out that I used the snapshot_date as a field name, it may be a reserved word. After that I changed the name of the field, it works fine. Thank you.

Maybe you are looking for

  • create the audio sample

    I can't find an answer to this question online.  I have a drum track I recorded and want to create a file "sample" of the trap.  The trap played unevenly so I would like to take the best shot of snare and make a sample.  Then I can use this sample wi

  • Card chipset drivers mother HP pavilion dv6 - 1367ca

    Hi I recently reformatted my laptop and im from problems with the drivers for it. I have all my other drivers properly installed next to my netwrok realtek driver and my driver chipset. When you go to the page of the driver for my laptop http://h1002

  • HP 5510 printer - no ink coming out the new hp cartridge authentic

    my printer says that I need to replace the... replaced black print cartridge w / new & hp black cartridge auth... when I try to print anything no color transfer paper except a very pale yellow... I checked to make sure that I inserted correctly. The

  • HP Pavilion 17-e01dx: E8B94UA

    Hi all I have a HP Pavilion e01dx 17. My battery started giving the error and needs replacement. Can anyone tell me what battery model is compatible with this model. This model is not sold in India and I got from the USA. Any help is appreciated

  • Blackberry blackBerry Passport Passport hangs the call

    If I flip my passport for Blackberry upside down during the telephone conversation, he cut off the phone, then it will be impossible to hang up the phone. Conversation will be on the set and you can't do anything until you restart the phone, which ta