Mimic oracle flex field ?

Greeting Guru
Our boss want to store different tables all into one table.
and depends on the mapping from src and out_cols,  the data of the result table would have different interpretation.
We would then create view on top for the specific app for that set of data
There is the draft design that he borrows from oracle flex field
Does this looks correct ? Not sure if there is a better way to do this ?
See the script below for our first draft design.
-Thanks
drop table src
create table src
(id number,
cde clob,
desciption varchar2(4000),
primary key(id)
create table out_cols
id number,
src_id number,
col_name varchar2(100),
data_type varchar2(100),
primary key (id),
CONSTRAINT fk_src_id
    FOREIGN KEY (src_id)
    REFERENCES src (id)
drop table result
create table result
(id number,
ff001 number,
ff002 number,
ff003 number,
ff001_num number,
ff002_num number,
ff003_num number,
ff001_char varchar2(100),
ff002_char varchar2(100),
ff003_char varchar2(100),
ff001_dat date,
ff002_dat date,
ff003_dat date,
CONSTRAINT fk_ff001
    FOREIGN KEY (ff001)
    REFERENCES out_cols (id),
CONSTRAINT fk_ff002
    FOREIGN KEY (ff002)
    REFERENCES out_cols (id),
CONSTRAINT fk_ff003
    FOREIGN KEY (ff003)
    REFERENCES out_cols (id)

my boss want to store different tables all into one table.
and depends on the mapping from src and out_cols,  the data of the result table would have different interpretation.
and we will create a view on top of the results for the specific app that needs that set of data.
It should work but the design seems not to be the best use case ..?

Similar Messages

  • TO ADD A CUSTOM ENTRY IN RIGHT CLICK POP UP MENU IN ORACLE HRMS FLEX FIELDS

    We are building a custom help for Oracle HRMS. For this I need to add a custom Help entry in the right click pop up menu. I did this by adding the code APP_POPUP.INSTANTIATE('POPUP10','Custom Help',TRUE,'LINE') in the APPCORE lib. After this change the right click menu shows the new entry 'Custom Help' when user right clicks in any of the form but the new entry Custom Help' doesn't show up when I right click in flexfields. I am sure I need to do some thing else for flex fields.. Does any one have any idea on this ?

    You have to refer to the Current Form, Current Block , Current Item so that the menu appears only in the form where you want to see.

  • How to implement Key Flex Fields in new oracle apps custom forms.

    how to impletement key flex fields in oracle apps custom forms
    if any technicle document is there then send me on this forum and also send me on my email id.
    [email protected]
    Thanks & Regards,
    Pranay Patel

    Hi,
    Please see the note:730068.1 - How To Invoke a DFF from a custom form
    Thanks,
    Ajikumar G

  • Implementing Key Flex fields in Oracle apps custom form.

    Hi all,
    I have developed a custom form from scratch. Need to implement key flex fields in my form. Kindly help me and please share any document for Key flexfields implementing. Quick response will be highly appreciated. Thanks a in advance.
    Please mail to [email protected]
    Regards
    Aiyaz
    Please send me a complete document for implementing flex fields in a custom form. Screen shots in the docs will be very much help full.
    Regards
    Aiyaz
    Edited by: user6422762 on Jan 27, 2011 9:44 PM

    There are so many special cases and cases with Oracle Apps that you will need to ask this question in the dedicated Apps tech forum rather than here. Please post this question here: OA Framework

  • Oracle apps R12.1.3 Key Flex fields not retrieving Data Automatically

    Dear All,
    I have developed a custom form with 10G forms in R12.1.3 version,
    i have attached the Stock Locator Flex field to one of the column i am able to attach the KFF but no values are returning in that ,
    it always says no exsisting combination
    Pls find below how i am calling the Flex field
    FND_KEY_FLEX.DEFINE(
    block => 'TNV_DEMO_SO_SERIAL_INFO_V',
    Field => 'LOCATOR_KFF_ID',
    Description => 'LOCATOR_KFF_DESC',
    ID => 'LOCATOR_ID',
    autopick => 'Y',
    Appl_short_name => 'INV',
    Code => 'MTLL',
    Num => '101',DISPLAYABLE => 'ALL',
    VRULE => '\\nSUMMARY_FLAG\\nI\\nAPPL=INV;NAME =INV_VRULE_POSTING\\nN',
    VALIDATE=>'FULL',
    QBE_IN=>'Y',
    DERIVE_ALWAYS=>'Y',
    updateable => '');
    Pls suggest.

    yes i have used template.fmb only , and am using FND_KEY_FLEX.DEFINE as i mentioned earlier ,
    i have not given any where clause -- should we give any where clause to retrieve the data into the combinations(LOV)?It depends on what values you want to retrieve.
    i mean my requirement is if i give % and press tab all the valid combinations should be displayed.
    its showing no entries found.Did you review 420787.1 referenced above?
    Thanks,
    Hussein

  • Flex Fields in Oracle BPM 11g

    Hi!
    Which is the procedure to move flex fields from development to productive environment? In development I have created flex fields one by one... How can we avoid it in a productive environment?
    Thanks!
    Ana

    You can use "User Metadata Migration Utility" to move the flex fields to new environment.

  • Flex Fields Mapping in HR - BI Apps (hr_file_flex_kff_dff_user_config_map)

    Please refer to the below post for Flex Field Mappings in HR using the file hr_file_flex_kff_dff_user_config_map.csv
    http://download.oracle.com/docs/cd/E20490_01/bia.7963/e19039/anyimp_configworkforce.htm#CIADDICF
    I follow the example of W_JOB_D:
    Job Dimension:
    JOB_CODE
    JOB_NAME
    JOB_FAMILY I think this is typo as the OBAW field is JOB_FAMILY_CODE and not JOB_FAMILY
    Anyways, I need to map other flex fields from EBS, is there any other document that explains it further than in the url I have posted.
    If any of you have carried out this flex mapping for HR analytics using EBS R12, please let me know.

    good question...I have no idea...i looked into this briefly and I am wondering if it has anything to do with the following flexfield limitation..I dont think this is the reason but thought I would mention it. If you find out why this limitation is there, let me know..I would be interested. Also..CHAR datatype has a limitation of 2000 but that doesnt seem to be the problem. I think its a EBS side limitation..not a BI side one.
    Here is the exerpt on hidden flexfields and the link for flexfields:
    "Normally, Oracle Application Object Library can create new code combinations (dynamic insertion) from your form with a foreign key reference using only the concatenated segment values field. However, if you expect the concatenated length of your flexfield to be defined to be larger than 2000 (the sum of the defined segments' value set maximum sizes plus segment separators), then you should create these non-database fields to support the dynamic creation of new combinations from your form.
    *If you do not have these fields and your users define a long flexfield (> 2000 characters), your users can experience truncation of key flexfield data when trying to create new combinations*."
    URL: http://download.oracle.com/docs/cd/E18727_01/doc.121/e12897/T302934T457085.htm

  • Issue with Supplier site descriptive flex field upgrade from 11i to R12

    We ran into some issue when upgrade Supplier site descriptive flex field from 11i to R12.
    In 11i. we defined descriptive field on JG_PO_VENDOR_SITES. in the segment definition, we defined one of the attributes default value based on Form Field Value, and the statement is like this:
    SELECT decode(:SITE.COUNTRY,'IT','AP ITALIAN TRANSACTIONS','AP AUTOFATTURA') FROM dual
    All above worked fine in 11i, whenever the flexfield field is open in forms, the default valuse shows based on the real-time value in :SITE.COUNTRY.
    In R12, Supplier site management is in HTML format. There is no forms, which means no form value. Do you have an alternative soluction for implement the same logic in R12?
    Thank you and regards,
    Kate
    Edited by: user12100435 on Feb 12, 2013 9:06 AM

    Kate,
    Have you logged a SR and see if Oracle support can help?
    Thanks,
    Hussein

  • How can I pass Flex Field value to the Call Wrap Up screen?

    Hello helpers,
    I am trying to get a value from the 'Flex Field' passed over to the 'Call Wrap Up' screen by using Form Personalization.
    Oracle was configured by a subcontractor and therefore I do not know what the exact name of the textfield is in the Flex Field however the label is 'Method of Contact'. When i set 'Show Custom Events' to 'On', I get the response: 'CSXXXRC.INCIDENT_TRACKING.STATUS_CODE:WHEN-NEW-ITEM-INSTANCE' When i enter a value in the Method of Contact field in the Flex Field.
    Can anyone help?
    I am a complete Newbie to Oracle.... I only know a bit about Oracle Form Personalization.
    Any help would be much appreciated,
    S

    Seems like you're talking about a from from the eBusiness-suite. There are special rules for that, ask your question in the eBusiness-suite-forum OA Framework

  • Error in compiling Flex fields

    Hi,
    I am facing flex field complilation errors.
    Deleting existing compiled flexfield information.
    Compiling all application flexfields.
    /backup/backups/db/SILP15/apps/apps_st/appl/fnd/12.0.0/bin/fdfcmp APPS/***** 0 Y
    An error occurred while compiling application flexfields.
    Continue as if it were successful [No] :
    Backing up restart files, if any......Done.
    You should check the file
    /backup/backups/db/SILP15/apps/apps_st/appl/admin/SILP15/log/adadmin.log
    for errors.
    [oracle@erpapps bin]$
    Application Id: 702
    Short Name: BOM
    Name: Bills of Material
    Flexfield Name: $SRS$.CSTJELINESRPT
    Title: $SRS$.CSTJELINESRPT
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Ledger/Ledger Set
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLADJNL
    Title: $SRS$.JGSLADJNL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLAJNLLG
    Title: $SRS$.JGSLAJNLLG
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLAJNLTP
    Title: $SRS$.JGSLAJNLTP
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLASDJNL
    Title: $SRS$.JGSLASDJNL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLATPABL
    Title: $SRS$.JGSLATPABL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLATPDBL
    Title: $SRS$.JGSLATPDBL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Application Id: 7003
    Short Name: JG
    Name: Regional Localizations
    Flexfield Name: $SRS$.JGSLATPSBL
    Title: $SRS$.JGSLATPSBL
    Compilation aborted for current descriptive flexfield...
    APP-FND-00798: Invalid reference XLA_SRS_SUBLEDGERS in value set attached to segment Journal Entry Source
    Please check the WHERE clauses of your table validated value sets.
    Continuing...
    Flex compilation process complete ...
    =====================================
    Number of successful key flex compilations : 134
    Number of failed key flex compilations : 0
    Number of successful descriptive flex compilations : 8744
    Number of failed descriptive flex compilations : 8
    =====================================
    Tip: To find failed flexfield compilations, please search for following string in this log file:
    'Compilation aborted for current'
    Concurrent request completed
    Current system time is 04-MAR-2010 13:09:51
    thx
    Edited by: user12007410 on Mar 4, 2010 1:13 AM

    Hi Helios,
    We are using R12.0.6 and db is 10.2.0.3, Linux OS.
    I have checked this Doc ID, which contains following:(below is my checking please)
    Solution
    1. Follow the Note.877352.1 instructions carefully;
    2. Apply the patch 8626820:R12.JG.A;
    3. For packages OKL_... and ICX_ ... please now follow Note.754340.1;
    4. For the FV_... and FUN_.... please follow Note.758497.1;
    5. For the GR_MIGRATE_TO_12 now follow the Note.733646.1;
    (for note's step 5 about patch 6997324 open an SR with Support if you require a password)
    6. Finally, to drop the view called ICX_PO_VENDOR_SITES_V, just execute in a SQL*plus (user APPS) session: drop view ICX_PO_VENDOR_SITES_V;
    My Checking: (I have checked the file version mentioned in below patches also, having same versions of already applied patches)
    1: I have check the patch# 8348599 mentioned in 877352.1 not already applied, so should I apply it?
    2: I have check the patch# 8626820 mentioned in step#2 not already applied, so should I apply it?
    3: I have check the doc id 754340.1 which containg the following patches:
    - 7641584 -------> Already appled
    - 8201911 -------> Already Not appled ----------> Should apply this?
    - 7659470 -------> Already appled
    - 6708042 -------> Already appled
    - 7662017 -------> Already appled
    4: I have check the doc id 758497.1 which containg the following patches already appled:
    - 7376249 -------> Already appled
    - 7372270 -------> Already appled
    - 7372268 -------> Already appled
    5: I have check the patch# 6997324 mentioned in step#5 already applied.
    6: I have checked this view ( ICX_PO_VENDOR_SITES_V) is not exist. what should I do?
    Thanks,
    fazijee

  • Using Flex Fields in BPM worklist

    Hi,
    Am trying to use flexfileds in BPM worklist so that I can have additional attributes from the payload associated from the humantask type , in the task header that appears in home page.
    Am able to create new label and then tried following steps :-
    1. Clicked Edit mappings by task type and selected my task type whose payload attributes are required to be mapped with the flex fields.
    2. The value "default/sampleta!1.0*soa_b4396581-d005-4374-be29-5cd725c3e134/Humantask" gets populated in the fields "Edit mappings by task type".
    3. However , it shows the message "There are no simple Payload Attributes associated with this TaskType".
    I thought that I need to make use of Mapped Attributes section in the Data tab found in humanworkflow task . However when I tried adding attribute there it showed me following error message :-
    Error in workflow service Web service operation invocation.
    Error in workflow service Web service operation invocation. The error is ORA-30501:Error in authenticating user.
    Error in authenticating and creating a workflow context for user jazn.com/dev_soa_admin.
    Verify that the user credentials and identity service configurations are correct.
    Verify that the SOAP connection information for the server is correct.
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceSOAPClient.convertSOAPFaultException(TaskQueryServiceSOAPClient.java:242)
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceSOAPClient.invoke(TaskQueryServiceSOAPClient.java:203)
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceSOAPClient.authenticate(TaskQueryServiceSOAPClient.java:253)
         at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.authenticate(AbstractDOMTaskQueryServiceClient.java:167)
         at oracle.bpel.services.workflow.query.client.AbstractDOMTaskQueryServiceClient.authenticate(AbstractDOMTaskQueryServiceClient.java:185)
         at oracle.tip.tools.ide.pm.modules.humanworkflow.task.taskflow.wizard.lookup.LookupUtil.listAttributeLabels(LookupUtil.java:436)
         at oracle.tip.tools.ide.pm.modules.humanworkflow.task.taskflow.wizard.lookup.LookupUtil.listProtectedAttributeLabels(LookupUtil.java:406)
         at oracle.tip.tools.ide.pm.modules.humanworkflow.task.taskflow.wizard.lookup.LookupDataProviderImpl.handleFlex(LookupDataProviderImpl.java:105)
         at oracle.tip.tools.ide.pm.modules.humanworkflow.task.taskflow.wizard.lookup.LookupDataProviderImpl.getResult(LookupDataProviderImpl.java:38)
         at oracle.tip.tools.ide.workflow.api.FlexFieldDetailsPanel.initializeAttributeCombo(FlexFieldDetailsPanel.java:175)
         at oracle.tip.tools.ide.workflow.api.ConnectionComponent._applicationServerChanged(ConnectionComponent.java:350)
         at oracle.tip.tools.ide.workflow.api.ConnectionComponent.access$1000(ConnectionComponent.java:60)
         at oracle.tip.tools.ide.workflow.api.ConnectionComponent$1.run(ConnectionComponent.java:361)
         at java.lang.Thread.run(Thread.java:619)
    ORABPEL-30044
    I have couple of questions :-
    1. For the payload attribute to appear in the BPM worklist sreen while mapping for the flex field , I understand that it should be of simple type . My payload looks like this :-
    <ns:employees>
    <ns:employee>
    <ns:name>John</ns:name>
    <ns:age>37</ns:initiator>
    <ns:salary>20000</ns:salary>
    </ns:employee>
    </ns:employees>
    I expected name , age , salary to appear in BPM worklist for mapping after I select task type against "Edit mappings by task type" while doing flex field mapping however it is showing me : There are no simple Payload Attributes associated with this TaskType
    2. Please advise if I need to anything extra like adding mapped attributes (in Data section of Humantask) or Collections in Task parameter window .
    Can anyone please help me on this .
    Thanks in advance !

    Are you sure the xml is correct here:
    <ns:employee>
    <ns:name>John</ns:name>
    <ns:age>37</ns:initiator>
    <ns:salary>20000</ns:salary>
    </ns:employee>
    It should be <ns:age>37</ns:age>, I believe.
    I have a xsd definition like this:
    <element name="loanApplication">
    <complexType>
    <sequence>
         <element name="SSN" type="string"/>
         <element name="email" type="string"/>
         <element name="customerName" type="string"/>
         <element name="customerAge" type="int"/>
         <element name="customerAnnualIncome" type="double"/>
         <element name="city" type="string"/>
         <element name="state" type="string"/>
         <element name="country" type="string"/>
         <element name="loanAmount" type="double"/>
         <element name="carMake" type="string"/>
         <element name="carModel" type="string"/>
         <element name="carYear" type="string"/>
         <element name="creditRating" type="int"/>
         <element name="creditRisk" type="string"/>
         <element name="creditMaxAmount" type="double"/>
    </sequence>
    </complexType>
    </element>
    And I am able to do the mapping without any issues.

  • Defaulting the mandatory field to space in a flex field - Urgent...

    Hi ,
    I have a flex field which is used to render address based on the country selected ( Country is an LOV..)
    The flex field details are.
    Appl Short Name: AR
    Name: Remit Address HZ
    Type: descriptive
    Address Line 1 is mandatory in the flex field configuration.
    My requirement is to default the Address Line 1 with space which I am doing by setting the vo.setAddressLine1(" ")
    once the VO is initialized and in the screen Address Line 1 is getting defaulted to space.
    But if the user removes the space in it and tabs out, even then I have to default the Address Line 1 with space.
    (i.e. if Address Line 1 is null then I have to default it to space)
    But as it is a flex field it does not have any Action Type. How can I default it if the user makes the field null..
    I tried in the VORowImpl to set the value to space if it is null but it is not working...
    public String getAddress1() {
    String value = (String) getAttributeInternal(ADDRESS1);
    if ( value == null || "".equals(value ) )
    return " ";
    return (String) getAttributeInternal(ADDRESS1);
    When the user makes this field as null and clicks on Apply button, the form validation appears saying the field
    is mandatory.( I cannot set the Disable Client Side validation to True for the Apply Button..)
    Is there a way
    1. To set the value of the VO attribute to space if it is made null
    or
    To set the VO attribute to a space before the form validation error appears?

    Hi Friends,
    I got the answer. The following link gives the details.
    http://www.oraclearea51.com/oracle-technical-articles/oa-framework-articles/184-set-dff-segment-required-in-oaf.html

  • Flex fields in default BPM view 11.1.1.3.0

    Hi
    I Jdeveloper 11.1.1.3.0 I have created a SOA composite with a BPEL flow containing a Human task. In this task I have added data fields (flex fields) which I'm able to show in the Oracle BPM worklist using the Adminstration menu option and adding the flex fields.
    I'm able to create a private view with these new flex fields now showing as column in the BPM worklist.
    But when trying to define these filels in the public views they do not show up in the definition page as available/selected columns. I cannot find anywhere in the documentation where it says that flex fields only can be used in private BPM worklist views. So how do I add a flex field to a public view?
    I do not want all my BPM worklist users to have to create private views themself. I want the new flex fields to be shown in the default worklist columns for all my users by default. Can this be done?
    Best regards
    Johnny

    It this true - that no one can help here???

  • Protected Flex field and Custom Views

    Hi,
    I have created some project variables in oracle bpm 11.1.1.6.0 project.After deployment, these variables are coming as Protected flex field but for some reason these are not visible when I define custom views.
    I also tried creating Protected flex field on BPm workspace, mapped these variables to human task payload, yet again when creating custom view i cannot see them.
    This problem is only happening with protected flex field and not public flex field.
    Please let me know how to add protected flex fields in custom view.
    Regards...

    why do you think it's an apps question?

  • Error in compling flex field.

    Hi,
    I have receiving the following ERROR, when compile flex fields using adadmin.
    FYI, I have been also applied CPU-Jan-2010 patch(8317778).
    where I can see that what is the issue?
    Enter your choice [5] : 3
    Connecting to APPS......Connected successfully.
    Connecting to APPLSYS......Connected successfully.
    Deleting existing compiled flexfield information.
    TRUNCATE TABLE FND_COMPILED_ID_FLEXS REUSE STORAGE
    TRUNCATE TABLE FND_COMPILED_ID_FLEX_STRUCTS REUSE STORAGE
    TRUNCATE TABLE FND_COMPILED_DESCRIPTIVE_FLEXS REUSE STORAGE
    Compiling all application flexfields.
    /backup/backups/by_fayaz/DBA_APPS/SILP15/apps/apps_st/appl/fnd/12.0.0/bin/fdfcmp APPS/***** 0 Y
    Log filename : /backup/backups/by_fayaz/DBA_APPS/SILP15/apps/apps_st/appl/admin/SILP15/log/l2666384.req
    Report filename : /backup/backups/by_fayaz/DBA_APPS/SILP15/apps/apps_st/appl/admin/SILP15/out/o2666384.out
    An error occurred while compiling application flexfields.
    Continue as if it were successful [No] : No
    Time is: Mon Jan 18 2010 15:44:47
    Backing up restart files, if any......Done.
    You should check the file
    /backup/backups/by_fayaz/DBA_APPS/SILP15/apps/apps_st/appl/admin/SILP15/log/adadmin.log
    for errors.
    Thx.

    Hi,
    Here is the output:
    First out:
    Time is: Mon Jan 18 2010 15:57:56
    Backing up restart files, if any......Done.
    Time is: Mon Jan 18 2010 15:57:56
    There is no timing information available for the current session.
    AD Administration is complete.
    Errors and warnings are listed in the log file
    /backup/backups/by_fayaz/DBA_APPS/SILP15/apps/apps_st/appl/admin/SILP15/log/adadmin.log
    and in other log files in the same directory.
    second Output:
    tail -100 /backup/backups/by_fayaz/DBA_APPS/SILP15/apps/apps_st/appl/admin/SILP15/log/l2666384.req
    Application Id: 8901
    Short Name: FV
    Name: Federal Financials
    Flexfield Name: $SRS$.RXFVFTXR
    Title: $SRS$.RXFVFTXR
    Compilation was successful for current descriptive flexfield.
    Application Id: 8901
    Short Name: FV
    Name: Federal Financials
    Flexfield Name: $SRS$.RXFVTBTS
    Title: $SRS$.RXFVTBTS
    Compilation was successful for current descriptive flexfield.
    Flex compilation process complete ...
    Flex compilation process complete ...
    =====================================
    Number of successful key flex compilations : 134
    Number of failed key flex compilations : 0
    Number of successful descriptive flex compilations : 8697
    Number of failed descriptive flex compilations : 11
    =====================================
    Tip: To find failed flexfield compilations, please search for following string in this log file:
    'Compilation aborted for current'
    Concurrent request completed
    Current system time is 18-JAN-2010 15:43:40
    [oracle@erpapps SILP15]$
    thx.

Maybe you are looking for

  • Green Screen on HP 15 with AMD Radeon R2

    I am having a similar problem on a laptop that my wife had just purchased for herself through her college, it is no more then a week old, and all flash powered games and videos are only showing green screens (for videos) and a notice that I need to u

  • XI sending # chanracter in null IDOC segments

    Hi, We are doing a File to IDOC scenario. We are picking the file through FTP using  a file adapter. The File contains data in XML format of ORDERS.ORDERS05. On R/3 side it is received as an IDOC (type ORDERS.ORDERS05). However in R/3 we see that the

  • How can I extend the Vector class?

    Hi All, I'm trying to extend the Vector class so I can get add a .remove(item:T) method to the class.  I've tried this: public class VectorCollection extends Vector.<T> That gives me the compile error "1017: The definition of base class Vector was no

  • How to create a partition using Boot camp assistant 4.0.1 ?

    Hi, i would like to "Partition" my drive and not "Install" windows 7 like the assistant asks me... I wanted to increase the size of my bootcamp partition. So i used winclone to save it and now to restore it i need a NTFS partition that is normally cr

  • Download of purchased movie causes CTD...

    Hi, I purchased a movie on iTunes Store but I cannot download it due to CTD on every attempt. All apps are up to date. Any hint about it? Thanks in advance.