What is the relationship between gl_aloc_inp and gmf_xla_extract_headers?

Hi experts,

In the configuration of ALS, I want to use a custom source to get an account based in the code to a form of cost Allocation Maintenance award, but I can't determine the link between transaction_id (gmf_xla_extract_headers) and which column from table source.

Please help me or give me a hint. Thank you very much.

Best regards

Cong

Resolved in

Pre-processor accounting OPM (Doc ID 1353054.1) debugging scripts

Tags: Oracle Applications

Similar Questions

  • What are the relationship between JPA and Hibernate, JPA and TopLink?

    What are the relationship between JPA and Hibernate, JPA and TopLink?
    Can APP instead of Hibernate and TopLink?

    The Java Persistence API (JPA) is the persistence of mapping relational object
    standard for Java. Hibernate and TopLink provide a Java Open source object-relational mapping framework.
    They provide an implementation for the Java Persistence API. In my opinion, Hibernate and TopLink support JPA
    and they can also be seen as complementary to APP.

    We will wait to see the opinions of the other person.

  • What are the relationships between the logging and IKM?

    What is the best method to use in the following scenario:
    I have about 20 tables with the large amount of data sources.
    I need to create interfaces that join the source tables in target tables.
    The tables are inserted every few seconds with about hundreds of thousands lines.
    There may be a gap of a few seconds between the insertion of different tables that could be attached.
    The source and target tables are on the same Oracle instance and schema.
    I want to understand the role of: 'Logging CDC' and "IKM - incremental" and
    How can I use it in my script?
    In general, what are the relationships between "Logging" and 'IKM '?
    Use both? Or maybe it's better deelte and insert the target tables?

    I want to understand what is the role of "Logging CDC"?
    Can 'IKM - incremental' work without "logging"?
    Must 'Logging' have PK on the tables?
    What should I do if I can't say PK (there may be several identical lines)?

    Yael thanks in advance

    user604062 wrote:
    Hello
    Thanks for your quick response!

    No probs - its still fresh in memory I did a major project on this topic last year (400 tables, millions of lines per day (inserts, updates, deletes), sup-5 minute latency). The problem is it isn't that well written on the web, that you have read the blog of the example I linked to in my first answer? See also here: http://odiexperts.com/changed-data-capture-cdc/

    Always on logging:
    My source table is inserted all the time.
    The interface to join the source table in the target table.

    In ODI, the correct term would be your source table "fits" in the table target, unless you mean literally that want to join the the source with the taget table table? My question if you want to do with the result of the join?

    What exactly the "journaling" CDC updates?
    It updates the model of ODI? interfaces? The source of data in the model of ODI? The target table?

    Logging CDC configures and deploys the data capture mechanism (Triggers or log based capture, IE Logminer/streams/Goldengate) - it is not updated the model as such, she pointed out the metadata of the model of ODI repositoty as a CDC data store, allowing you, the developer say ODI to use log data if you wish (reported in the interface) There is no change in the target table, you get an indicator of metadata (IND_UPD) against a line during the integration (in C$ and I have tables$) that tells you if its insertion (I) and update (U) or deletion (D). It had ' lines allow you to synchronize the deletions, but yoy say its inserts only then you probably used use this option. "
    So the only changes are the source table to your interface, another diary data (if you use logging) or the table of the actual source (if not using the logging).

    This is the main thing that I don't understand!

    I hope I made a little clearer.

    Try the following as a quick test:

    Reverse a source table an engineer and the target (at least) table.
    Import the update incremental LKM and IKM.
    Import of the JKM you want to use.

    Create an interface between the source and the target without any deployed JKM.
    Configure the options of JKM on the model, the "Start log" to start the process of capture - this is quite a complex stage and a lot of things to understand what is happening in the source database, better to check code ODI sends to the database and to review the documentation of Oracle database for a description of what his weight (instantiate Tables (, sets of creating change, creation of subscribers etc. establishment of newspaper groups, creating views Journalising etc.) -you will need to consult your Source DBA database initially as ODI wants to make many changes to the source DB (in mode Archivelog process max, parallelism, size, Java etc.)

    Now, edit your interface and mark the table source for use "Journalized data bank.
    Restart your interface
    Compare the difference in the generated code in the journal of the operator, see the differences of the operator.

    >

    Thank you, Yael

  • What gets the relationship between the number of blocks and coherent?

    SQL> CREATE TABLE TEST(ID INT ,NAME VARCHAR2(10));
    
    SQL> CREATE INDEX IND_IDN ON TEST(ID);
    
    SQL> BEGIN
      2  FOR I IN 1 .. 1000
      3  LOOP
      4  EXECUTE IMMEDIATE 'INSERT INTO TEST VALUES('||I||',''LONION'')';
      5  END LOOP;
      6  COMMIT;
      7  END;
      8  /
    
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS(USER,'TEST',CASCADE=>TRUE);
    
    SQL> SELECT DISTINCT DBMS_ROWID.rowid_block_number(ROWID) BLOCKS FROM TEST;
    BLOCKS
    -----------
    61762
    61764
    61763         
    
               >> above , there have 3 blocks in table TEST .
    
    SQL> SET AUTOTRACE TRACEONLY;                                     
    
    SQL> SELECT * FROM TEST;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1357081020                                                     
                                                                                    
    --------------------------------------------------------------------------      
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |      
    --------------------------------------------------------------------------      
    |   0 | SELECT STATEMENT  |      |  1000 | 10000 |     2   (0)| 00:00:01 |      
    |   1 |  TABLE ACCESS FULL| TEST |  1000 | 10000 |     2   (0)| 00:00:01 |      
    --------------------------------------------------------------------------      
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
             72  consistent gets                                    >>  there have 72  consistent gets                  
              0  physical reads                                                     
              0  redo size                                                          
          24957  bytes sent via SQL*Net to client                                   
           1111  bytes received via SQL*Net from client                             
             68  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
           1000  rows processed                                                     
    
    SQL> SELECT /*+ INDEX_FFS(TEST IND_IDN)*/ * FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1357081020                                                     
                                                                                    
    --------------------------------------------------------------------------      
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |      
    --------------------------------------------------------------------------      
    |   0 | SELECT STATEMENT  |      |  1000 | 10000 |     2   (0)| 00:00:01 |      
    |*  1 |  TABLE ACCESS FULL| TEST |  1000 | 10000 |     2   (0)| 00:00:01 |      
    --------------------------------------------------------------------------      
                                                                                    
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       1 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              1  recursive calls                                                    
              0  db block gets                                                      
             72  consistent gets                                   >>  there have 72  consistent gets                  
              0  physical reads                                                     
              0  redo size                                                          
          17759  bytes sent via SQL*Net to client                                   
           1111  bytes received via SQL*Net from client                             
             68  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
           1000  rows processed                                                     
    
                                             
    
    SQL> SELECT COUNT(*) FROM TEST;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1950795681                                                     
                                                                                    
    -------------------------------------------------------------------             
    | Id  | Operation          | Name | Rows  | Cost (%CPU)| Time     |             
    -------------------------------------------------------------------             
    |   0 | SELECT STATEMENT   |      |     1 |     2   (0)| 00:00:01 |             
    |   1 |  SORT AGGREGATE    |      |     1 |            |          |             
    |   2 |   TABLE ACCESS FULL| TEST |  1000 |     2   (0)| 00:00:01 |             
    -------------------------------------------------------------------             
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                      >>  there have 5  consistent gets               
              0  physical reads                                                     
              0  redo size                                                          
            408  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    
                                                  
    
    SQL> SELECT COUNT(*) FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 735384656                                                      
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    | Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    |   0 | SELECT STATEMENT      |         |     1 |     4 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    |   1 |  SORT AGGREGATE       |         |     1 |     4 |            |          
    |                                                                               
                                                                                    
    |*  2 |   INDEX FAST FULL SCAN| IND_IDN |  1000 |  4000 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                                                                                                
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       2 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                                >>  there have 5 consistent gets     
              0  physical reads                                                     
              0  redo size                                                          
            408  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    
                                              
    
    SQL> SELECT COUNT(ID) FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 735384656                                                      
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    | Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    |   0 | SELECT STATEMENT      |         |     1 |     4 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    |   1 |  SORT AGGREGATE       |         |     1 |     4 |            |          
    |                                                                               
                                                                                    
    |*  2 |   INDEX FAST FULL SCAN| IND_IDN |  1000 |  4000 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                                                                                              
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       2 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                        >>  there have 5  consistent gets             
              0  physical reads                                                     
              0  redo size                                                          
            409  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    QUESTION:

    What gets the relationship between the number of blocks and coherent? How to calculate become consistent?

    You can see that your uniform is getting down to 6 to 12, is it not? Reading of the below thread Asktom.
    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:880343948514

    Aman...

  • What is the best between Firefox and Aurora?

    What is the best between Firefox and Aurora?

    Hello DarshanK, that depends on what type of user you are probably: https://www.mozilla.org/firefox/channel/

  • What is the difference between extensions and Plugins and Add-ons?

    I'm sorry if here is not the right place for this post.

    What is the difference between extensions and Plugins and Add-ons? Apparantely, they differ in some sense or aspect, but I do not know how. Please, if it is not too complicated, explain in detail and simple language. Thanks in advance to 1 million.

    Kind regards
    Danesh

    Hi Danesh,

    You should take a look at this article for an explanation. Plugins and extensions are essentially types of Add-ons as well as of the characters and themes.

    Hope this helps!

  • What is the difference between Firefox and Namoroka 64-bit? I have a 64-bit computer. Which should I use?

    What is the difference between Firefox and Namoroka 64-bit?
    I have a 64-bit computer. Which should I use?

    The officially supported only is Firefox - which is your best choice, unless you want to test the new features...

    http://www.Mozilla.org/en-us/Firefox/new/

  • What is the difference between dawn and the beta?

    What is the difference between dawn and the beta?

    Beta is the next version of Firefox that is due to be released in 5 weeks, and Aurora is the one after that--like an Alpha version of development.

  • What is the difference between AXIEM and EMSIght? What are the benefits of AXIEM by EMSight if any?

    I wonder what are the differences between AXIEM and EMSight. Are associated with application? One is better than the other? Please explain.

    AWR estimated AXIEM most powerful plan EM Simulator around.   AXIEM is at the center of continuous research and improvement, while EMSight is only worked on if revealed serious flaws.  Here is a summary of the differences:

    Mesh

    • EMSight must mesh the nearest grid drivers using rectangles.  This causes the mesh to have more elements mesh when there are small and large geometries.  The grid should be small enough to capture the small geometry but then causes large geometries to mesh more.   In addition, angled or curved structures causes inefficiencies mesh.

    • AXIEM STS forms, rather than a grid.  In addition, the mesh can be rectangle or triangle.   This allows a much more efficient mesh.   AXIEM generally have a much more efficient

    • AXIEM contains the ability to process forms to clean geometries that cause inefficiencies of the mesh.  EMSight does not have this feature.

    • AXIEM can forms thick metal mesh, EMSight can not, and user must make approximations when thick metal will change coupling (loss is recorded properly with the thickness of the metal)

    Ports

    • The ports are for the most part similar, but parasites due on AXIEM ports are less.  In addition, the AXIEM has a side wall, thus the effects of not move of the terms of reference of the edge of the line are a lot less AXIEM in.

    • Ports can be added to most any place in geometry with AXIEM.  For EMSight, the ports are usually only added outside the geometry and have limitations to the aircraft on either side of the reference speaker.

    Problem solvers

    • EMSight does not have a low frequency Solver.  Stop low-frequency and then extrapolate to DC.  This usually works well, but you must take into account if the extrapolation is accurate.  AXIEM presents both a low and high frequency Solver so will do better in a low frequencies generally much better in DC.

    • Solver of EMSight scales O (n) ^ 2 for memory and O (n) ^ 3 for the moment.   It has a special algorithm to break the question of memory, but the question of time is the killer.  AXIEM has a direct Solver which scales in the same way and an iterative Solver which will scale O (nlogn).   In other words, AXIEM can solve a lot of bigger problems than EMSight.

    • Several AXIEM processes are multithreaded as EMSight.

    Speaker

    • EMSight is inside a perfect driver side wall.   This works well if you the circuit is in the same cavity.  If not, you must know the rules of them on to the forms of space of the flanks and how that much to extend the port could reference planes.   AXIEM is not here.   AXIEM does not currently have to simulate a perfect driver side wall.

    I don't know that I missed a few aspects of the tools.   From the point of view of the AWR that AXIEM is the tool of choice, except in a few cases have been EMSight may be required.

  • What is the difference between tear and Brüning cd

    What is the difference between tear and Brüning a cd.

    Hi SirNickLong,
    Here are a few links to explain the difference:
    http://Windows.Microsoft.com/en-us/Windows-Vista/rip-music-from-a-CD
    http://Windows.Microsoft.com/en-us/Windows-Vista/demo-burn-a-CD-or-DVD
    hope this helps,
    Eddie B.

  • What is the difference between nc6320 and nx6320 laptops?

    What is the difference between nc6320 and nx6320 laptops?

    Can I use the same drivers for each of them?

    Hello:

    There is not much difference.

    If you want to compare all the details you can check this link:

    http://h18000.www1.HP.com/products/QuickSpecs/12428_div/12428_div.PDF

    You can probably use the same drivers for either, but they all have both their own support pages and separate driver.

    nc6320:

    http://h20000.www2.HP.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=1839154&lang=en&cc=us&TaskID=135&prodSeriesId=1839146&prodTypeId=321957

    NX 6320:

    http://h20000.www2.HP.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=1839169&lang=en&cc=us&TaskID=135&prodSeriesId=1839144&prodTypeId=321957

    Paul

  • What is the difference between containers and hyper-v server windows?

    Hello

    What is the difference between containers and hyper-v server windows?

    Thank you

    http://windowsitpro.com/Windows-Server-2016/differences-between-Windows-containers-and-hyper-v-containers-Windows-Server-201

    PS: Where's your homework due?

  • What is the difference between upgrade and custom installation options?

    * Original title: windows 7

    What is the difference between upgrade and custom installation options?

    Hello

    How to do a clean install:

    http://www.SevenForums.com/tutorials/1649-clean-install-Windows-7-a.html

    Sometimes the only way to upgrade is to do a clean install,

    " Upgrade Windows XP to Windows 7 "

    http://Windows.Microsoft.com/en-us/Windows7/help/upgrading-from-Windows-XP-to-Windows-7#T1=tab01

    To upgrade your Windows XP computer to Windows 7, you will need to select custom during installation of Windows 7. A custom installation keeps your programs, files or settings. It is sometimes called a 'clean' for this reason installation.

    "Upgrading from Windows Vista to Windows 7"

    http://Windows.Microsoft.com/en-us/Windows7/help/upgrading-from-Windows-Vista-to-Windows-7#T1=tab01

    You then have the repair facility, which is an In = Place Upgrade.

    "How to do a repair installation to repair Windows 7"

    http://www.SevenForums.com/tutorials/3413-repair-install.html

    See you soon.

  • What is the difference between RP1 and RP2 in ASR1006

    Hi can anyone tell what is the difference between RP1 and RP2 in ASR1006? Thank you

    Read all about here: Cisco ASR 1000 processors data sheet series road

  • 6921 ip phones. What is the difference between 'Standard' and 'Slimline '.

    Hello

    I am looking to buy some new 6921 charcoal IP phones and I am confronted with 2 options:

    CP-6921-C-K9 = Cisco Unified IP Phone 6921, combined with coal, Standard

    CP-6921-CL-K9 = Cisco Unified IP Phone 6921, charcoal, combined Slimline

    What is the difference between standard and slimline. Maybe it's simple but English is not native for me and found no difference anywhere.

    Thank you

    Mario

    Fix. Some people think that these are more modern, or they like just better.

Maybe you are looking for

  • How can I sync music without wifi?

    If someone can tell me how to get/sync music from iTunes to my iPhone 5 with a USB cable and NOT wireless or Apple music I would be happy to hear about it. It should and used to be a simple process. Now, it seems almost impossible. I don't want more

  • I don't want to use my iPhone for e-mail

    I am fairly new to any smartphone. I don't want to receive emails, or notifications by e-mail on my iPhone. I want to manage all email on my laptop, in the same way as before, I bought my iPhone. So I want to do two things: Delete everything related

  • Problem signing my COD file

    I signed up for the signature code and received 3 *.csi of BB files. I followed all the instructions and saved each CSI file according to the instruction. Each of the 3 files has been saved successfully. I'm using RIM BlackBerry JDE 4.6.0 and JDK1.6.

  • ¿¿permit system?

    Hi, I know how I can do so that my application can implement a permit system. When accessing the application, checks, somehow, the blackberry and look in the BES if blackberry has the required permissions to view a screen or not. I don't know how I c

  • Print of MS Outlook emails and their attachments in pdf format

    I have Acrobat Pro XI. Is it possible to print several emails and their attachments to PDF without having to open each one at a time? Attachments are for the most part, MS Word documents, and they must be printed to pdf and e-mail messages.