KZA1 trx and related tables

Hi,
what are the tables related to trx KZA1 (overhead) ?
Thanks
Best regards

Hi,
is there a standard report which shows overhead data ?
Best regards

Similar Messages

  • Object Tables and Relational Tables

    the statement below are they true for both Object and Relational tables?
    Rows are stored in extents
    can rows can be made up of one column
    collection types can be used in a column
    Thanks!

    >
    Rows are stored in extents
    >
    Yes - in the sense that rows are stored in 'blocks' and extents are comprised of one or more blocks. So since rows are in blocks and blocks are in extents then rows are in extents.
    >
    can rows can be made up of one column
    >
    Yes
    CREATE TABLE ONE_COLUMN_TABLE (NAME VARCHAR2(30));collection types can be used in a column
    >
    yes
    CREATE TYPE num_varray AS VARRAY(10) OF NUMBER(12, 2)
    CREATE TABLE varray_table (col1 num_varray)
    INSERT INTO varray_table VALUES (num_varray(100, 200))

  • Syntax of DDL options and related (table) column names

    Hi,
    where can I find something like a mapping between DDL options and related table column names?
    For example I do have the table options PCTFREE, FREELISTS and NOCOMPRESS. The related table columns out of user_tables are PCT_FREE, FREELIST and COMPRESS.
    PCT(_)FREE wins an Underscore, FREELIST(S) wins an "S" and it is "NOCOMPRESS" if COMPRESS has a value "Y(es)".
    Hope somebody can help.

    So far I didn't find any information that is not in
    the DDL script gernerated from
    DBMS_METADATA.get_DDL.Alright, I give you an example:
    I create a table with the following DDL:
    "CREATE TABLE IntBuch (
    int_bunr integer NOT NULL,
    int_sdat double precision NOT NULL,
    int_hblz char(8) NOT NULL,
    int_hkto char(7) NOT NULL,
    int_hdat double precision NOT NULL,
    KtoNr char(7) NOT NULL,
    BLZ char(8) NOT NULL,
    CONSTRAINT PK_IntBuch PRIMARY KEY (int_bunr)
    USING INDEX
    PCTFREE 10
    STORAGE (
    INITIAL 1000
    NEXT 500
    PCTINCREASE 0
    MINEXTENTS 1
    MAXEXTENTS 4096
    PCTFREE 20
    LOGGING
    CREATE UNIQUE INDEX intid
    ON IntBuch (int_bunr DESC)
    CREATE INDEX hkto
    ON IntBuch (int_hblz,int_hkto)
    COMMENT ON TABLE IntBuch
    IS 'Kommentar zu DB-Tabelle InBuch'
    COMMENT ON COLUMN IntBuch.int_sdat IS 'Kommentar zu DB-Spalte int_sdat'
    ALTER TABLE IntBuch
    ADD CONSTRAINT Gutschrift FOREIGN KEY (int_hkto,int_hblz) REFERENCES Konto
    ON DELETE CASCADE
    ADD FOREIGN KEY (KtoNr,BLZ) REFERENCES Konto
    ADD FOREIGN KEY (int_bunr) REFERENCES Buchung
    ON DELETE CASCADE
    After that I read the DDL with DBMS_METADATA.get_DDL and I get
    " CREATE TABLE "UOENDE"."INTBUCH"
    (     "INT_BUNR" NUMBER(*,0) NOT NULL ENABLE,
         "INT_SDAT" FLOAT(126) NOT NULL ENABLE,
         "INT_HBLZ" CHAR(8) NOT NULL ENABLE,
         "INT_HKTO" CHAR(7) NOT NULL ENABLE,
         "INT_HDAT" FLOAT(126) NOT NULL ENABLE,
         "KTONR" CHAR(7) NOT NULL ENABLE,
         "BLZ" CHAR(8) NOT NULL ENABLE,
         CONSTRAINT "PK_INTBUCH" PRIMARY KEY ("INT_BUNR")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 16384 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS" ENABLE,
         CONSTRAINT "GUTSCHRIFT" FOREIGN KEY ("INT_HKTO", "INT_HBLZ")
         REFERENCES "UOENDE"."KONTO" ("KTONR", "BLZ") ON DELETE CASCADE ENABLE,
         FOREIGN KEY ("KTONR", "BLZ")
         REFERENCES "UOENDE"."KONTO" ("KTONR", "BLZ") ENABLE,
         FOREIGN KEY ("INT_BUNR")
         REFERENCES "UOENDE"."BUCHUNG" ("BU_NR") ON DELETE CASCADE ENABLE
    ) PCTFREE 20 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS"
    If there are no more DDLOptions possible than that, it is fine for me. If not, but all kinds of options are to find in only one or two tables of the database ( user_tables for table options, dba_constraints and dba_segments for column options, primary and foreign keys, user_indexes and user_segments for indexes ...), that is fine for me, too. (As long as I get to know which tables are "sufficient" for that.) If it is different than both of that, that's bad.
    However if you want to use defaults instead of
    absolut values, it is better to remove certain parts,
    like the storage clause, from the generated output.I understand this, but I am more interested to have all and not leaving out some of them in order to have the defaults in the database after running the DDL.
    A totally different approach could be to
    a) create a database link from one DB to another.
    b) create table <new_table> as select * from
    <old_table@dbLink> where 1=2;I keep that in mind, thanks for that hint.

  • How to define join in physical layer between cube and relational table

    Hi
    I have a aggregated data in essbase cube. I want to supplement the information in the cube with data from relational source.
    I read article http://community.altiusconsulting.com/blogs/altiustechblog/archive/2008/10/24/are-essbase-and-oracle-bi-enterprise-edition-obiee-a-match-made-in-heaven.aspx which describes how to do it.
    From this article I gather that I have to define a complex join between the cube imported from essbase to my relational table in physical layer.
    But when I use Join Manager I am only able to define jooin between tables from relation source but not with the imported cube.
    In My case I am trying to join risk dimension in the cube based on risk_type_code (Gen3 member) with risk_type_code in relation table dt_risk_type.
    How can I create this join?
    Regards
    Dhwaj

    Hi
    This has worked the BI server has joined the member from the oracle database to cube. So Now for risk type id defined in the cube I can view the risk type code and risk type name from the relational db.
    But now if I want to find aggregated risk amount against a risk type id it brings back nothing. If I remove the join in the logical model then I get correct values. Is there a way by which I can combine phsical cube with relational model and still get the aggregated values in the cube?
    I have changed the column risk amount to be sum in place of aggr_external both in logical and phsical model.
    Regards,
    Dhwaj

  • Storing XML data in CLOB and relational tables

    I would like to ask whether there is a possibility to store XML data using normal relational tables and CLOBs in the same time. For example I have some XML data (structured data) which I would like update very often and some which are only a kind of description. I found something about it in http://technet.oracle.com/tech/xml/infoocs/otnwp/about_oracle_xml_products.htm . But I do not know how to use Oracle8i views and some functionality of XML SQL Utility to retrieve XML data in one file.
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Maciej Marczukajtis ([email protected]):
    I would like to ask whether there is a possibility to store XML data using normal relational tables and CLOBs in the same time. For example I have some XML data (structured data) which I would like update very often and some which are only a kind of description. I found something about it in http://technet.oracle.com/tech/xml/infoocs/otnwp/about_oracle_xml_products.htm . But I do not know how to use Oracle8i views and some functionality of XML SQL Utility to retrieve XML data in one file.<HR></BLOCKQUOTE>
    Czesc Maciek,
    There are some good examples with XSQL Servlet. From what I understand you have one XML file and you need to save a portion of document in relational tables and other portion in CLOB.
    Yes, you can do that.
    You can do it many ways. I can suggest (2).
    1. Use the views
    2. call your java procedure that will do
    the xml processing, brake it down and insert
    releval frogments into different tables/columns
    null

  • Link between Komv structure and related table

    hai,
    I have one problem in CIN.
    In Purchase Order for
    ED - JM01 or JEXC
    CESS -ZECS or JEC1
    CSTLST - JIP1 or JIP2
    stored in KOMV Structure,
    other than KOMV  TABLE where this values are stored..
    (In KONV no values found for that one)
    pLEASE, tell me Table name .....in which i get above condition value
    thank you
    Manoj..

    Hi,
    1)GOTO>SE11>Open the table.
    2)Just beside the CONTENTS & DISPLAY BUTTON-->Click on Graphics Button
    3)New Graphics window ill popup.
    4)check for the forign key and check table button.
    you will find all the related tables,and Relations.
    This will be very helpful for future reference also.
    Hope it resolves the query.
    Regards,
    Gurpreet

  • Transtype field and related tables

    Hi!
    i'm trying to build a query using the OJDT and JDT1 tables, pointing towards the actual documents that created that especific transaction, there is a field on this tables named 'CreatedBy' with the "DocEntry" value or the "DeposId" value if we're talking about a deposit and a loong etc for all the other tables with different id names for their documents.
    now, the Transtype field of the OJDT table has some clues about the table that i need to join, for example , according with the documentation , the '13' value is an A/R invoice so i figured (correctly) i need to join the query with the table OINV and use the "docentry = createdby" to retrieve the exact document, another example: the deposit uses the OPDS table so the condition "createdby = deposid" gives me the deposit values.
    here is the problem , the transtype field has 40 o 50 posible values, ¿so anyone has some info about what table is related to every  transtype value?

    apparently no one understood anything i said, so i'm answering myself here:
    OF COURSE I KNOW THE LIST OF OBJECT TYPES IS INSIDE THE DOCUMENTATION...
    that's not what i'm asking, this is the info i wanted:
    15     Delivery - table ODLN
    16     Returns - tableORDN
    203     A/R Down Payment - table ODPI
    13     A/R Invoice - table OINV
    165     A/R Correction Invoice  - table  OCSI
    166     A/R Correction Invoice Reversal - table  OCSV
    14     A/R Credit Memo - table  ORIN
    132     Correction Invoice - table  OCIN
    20     Goods Receipt PO  - table OPDN
    21     Goods Return  - table ORPD
    204     A/P Down Payment  - table ODPO
    18     A/P Invoice  - table OPCH
    163     A/P Correction Invoice - table  OCPI
    164     A/P Correction Invoice Reversal - table  OCPV
    30     Journal Entry   - table OJDT
    19     A/P Credit Memo  - table ORPC
    69     Landed Costs  - table OIPF
    24     Incoming Payment  - table ORCT
    25     Deposit  - table ODPS
    46     Vendor Payment /outgoing payment  - table OVPM
    57     Checks for Payment  - table OCHO
    67     Inventory Transfers  - table OWTR
    76     Postdated Deposit  - table ODPT
    59     Goods Receipt  - table OIGN
    60     Goods Issue  - table OIGE
    162     Inventory Valuation  - table OMRV
    68     Work Instructions  - table OWKO
    i'm still missing:
    182     BoE Transaction
    OBOE? OBOT
    321     Internal Reconciliation
    OITR(?) InitObjTyp  Reconc. Initiator Object Type  nVarChar  20
    58     Stock List
    -2     Opening Balance (?)
    -3     Closing Balance (?)
    202     Production Order (?)
    -1     All Transactions

  • Junction table and related tables

    Hi,
    I was given a junction table. Is there a SQL query that I can run on the junction table so that it returns me the 2 related tables? Please help. Thanks.

    Hi Anjela,
    I searched the oracle website and quite a lot of oracle pdfs that I had but could not get any term called "Junction table". Never mind...but I feel you must have termed it wrong. If possible please explain in detail about this which will help in answering your query.
    Regards,
    Murali Mohan

  • Table and related table keys

    Hi, 
    Have two tables, related, and wish to not use form / subform to handle relationship.
    What is the best way to assign PK in primary table to FK in related table?
    L
    Leon

    Have two tables, related, and wish to not use form / subform to handle relationship.
    What is the best way to assign PK in primary table to FK in related table?
    Hi Leon,
    I don't know what the underlying thought of your question. And also why you do not wish to use the form / subform relationship. I think you mean the parent-child relation? In all my applications I do not use that parent-child relation either. In fact
    what is normally used as a subform is in my systematics another main form. This gives me the possibility to "walk along relations" in a two-way direction, for any relation.
    I am sure there are more best ways for the PK. For every table I use an autonumber PK. The FK in a related table is of type long. I have experienced that the shorter the key is, the faster the retrieval is. And the long type is in my opinion the
    best.
    Using a strict naming convention for the field of the PK related to its table, and the field of the FK, I have managed that all relations are generated completely automatic.
    Imb.

  • Sql*loader and relate tables

    I have a file formated like the following:
    111|1,2,3|
    222|7,8|
    Oracle relate table looks like:
    tab1 (id1 number, id2 number)
    Can sql*loader handle this kind of data? I should have 5 records in tab1 once the load is finished.
    tab1 should have:
    111,1
    111,2
    111,3
    222,7
    222,8

    NO
    It will not work like that.
    You have to have data file like
    111|1
    111|2
    111|3
    222|7
    222|8
    Prashant

  • MB5S and related tables.

    Hi,
    I'm looking for a table related to trx MB5S.
    I found EKBES but is a structure.
    What is the respective table of structure EKBES ?
    Yours faithfully

    Hi,
    There will not be any direct representation of a structure e with atable.
    However, u can take some fields of this structure, go to SE84, and in ABAP dictionary from there, in the table fields, enter the fields, and execute.
    System will list u out all tables , where these fields exist, with their descriptions.
    By means of this description of the table one can easily choose  the table
    Regards
    Krishna

  • Getting list of reports  and related tables used in those reports using sdk

    some columns are changing in the database tables.
    we like to know how many reports are affected by that .
    please can any one help me in getting list of reports and tables associated with them using  bo sdk.
    thanks for your help in advance

    Open the report with RAS. Then with the ReportClientDocument object:
    oReportClientDocument.getDatabaseController().getDatabase().getTables() will trutns Tables collection object that contains the table information for the report. Then use get() to get Itable object.

  • Programs and Related Tables

    Hi Gurus,
              Using transaction STAD I am able to view the Transaction code accessed by users.  It also shows the program that was called with that TC. Can you help in finding out how to get the tables which are updated or modified when a specific program is called.

    Hi Parvez,
    In STAT there is option in Expan mode -> Tables Access
    In STAD try to find with all details.
    ****Reward points if Helpful*****
    Regards,
    Ganesh

  • PRQ field and related table.

    Hi,
    in what table is located the field ESTKZ ?
    I want to create a characteristic with the above field for PRQs.
    Regards

    ESTKZ is in the following tables:
    EBAN             Purchase Requisition
    ESTKZ           Creation Indicator (Purchase Requisition)
    EKEH             Scheduling Agreement Release Documentation
    ESTKZ           reation Indicator (Purchase Requisition)
    EKES             Vendor Confirmations
    ESTKZ           Creation Indicator: Vendor Confirmation
    EKET             Scheduling Agreement Schedule Lines
    ESTKZ           Creation Indicator (Purchase Requisition)
    EKETH            Scheduling Agreement Schedules: History Tables
    ESTKZ            Creation Indicator (Purchase Requisition)
    It is in the following structure if you are desiring to use it in a characteristic (e.g. release strategy?).
    CEBAN                          Communication Release Strategy Determination: Requisition
    ESTKZ                          Creation Indicator (Purchase Requisition/Schedule Lines)
    Regards

  • Engineer between Logical Model and Relational Model

    I am trying to update changes from one model to the other but there are dublicate entries generated instead of updates.
    The Logical Model was imported from Oracle Designer, the Relational Model was imported from data dictionary.
    Our rule is, that the name of Entities/Tables and Attribute/Columns are identical.
    So I changed the Naming Standard of the Logical Model in Preferences
    from Separator = Space to Separator = Character with char = Underline.
    If the entity is not existing, it is created with the correct name.
    If the entity exists, a new entity is created with Namev1.
    The same happens when I try to update changes in the other direction.
    How can I achieve that the existing entity (or table) is updated and not a new one is created?
    Or in other words, is there a way to link entities to corresponding tables?
    Walter

    Hi Walter,
    The Logical Model was imported from Oracle Designer, the Relational Model was imported from data dictionaryit's good to import entities and related tables from Designer repository together. Data Modeler will import the link between them and use that link in synchronization between logical and relational model. After that you can import details for physical model from database.
    If you don't have tables in Designer repository and keep the same names for entities, attributes, tables and columns then you can engineer logical model to relational and import details from database.
    Philip

Maybe you are looking for

  • How to read 'clicked header' AND selected row from multicolumn listbox?

    I have a multicolumn listbox filled with 6 columns and about 500 rows. I want the user to be able to click on a column header, and sort the listbox alphabetically on that column. I've written the code for that, and that works. (using the 'itemnames'

  • PDF Online Transparency Issue

    I have a system that opens PDF files in the browser incorrectly. The PDF makes the background transparent in Internet Explorer v. 9.0. I can open the document in reader/acrobat standalone and it displays fine, it only has an issue when used with the

  • Function module GET_SMTP_PPF

    Hi experts, How to use this function module GET_SMTP_PPF plz suggest me Thanks, Shiva Title was edited by:         Alvaro Tejada Galindo

  • Safari freezes after several hours of use on Macbook pro

    I just bought a Macbook Pro.  When using safari, it freezes at least once a day to a point I can't force quit, and had to do a hard shut down.  I've figured out that if I am using my computer and safari for more than a couple of hours, Safari just fr

  • Infinite session for single user SAP BIBO 4.1 SP4 patch2

    Hello, I am currently using SAP BI BO 4.1 SP4 Patch2 on Windows server 2008R2 and Sybase as database. On BI launch pad after 20 minutes session expire but when user click on OK button after that BO creating infinite session in CMC for same user. Any