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

Similar Messages

  • 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

  • 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.

  • 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

  • Shipping point field and associated table...

    Hi,
    Can someone tell me the field and table asscoiated with shipping point ?
    Also which transaction code we use for printing smartform for Bill of Lading ?
    Thanks.
    Regards,
    Tushar.

    Hi Tushar,
    some of the related tables which i found for Shipping point are <b>VTTK & VTTP</b> tables
    For the required tables and fields download this document from
    http://www.sap-img.com/sap-download/sap-tables.zip
    and look at the SD tables tables to know the shipping details..
    Reward if it helps
    Regards,
    Santosh

  • 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.

  • 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

  • Source field and source table

    Hi,
    Anyone can send below characteristics what are source field and table in SAP R/3
    Account Number     Business Imperative Code     CC function     cc office     cc region     cc service area     cc service line     Cost center office     cost center service     Client     Company Code     Contract     Cost Center     Document Date     Document Type     Employee     Fiscal week( posted)     Fiscal week( work date)     Fiscal year/period     Function     H/P     Industry Client     Job Level     Office     Project Cost center     Posting date     Project Function     PM Company code     PM cost center     PM function     PM office     PM region     PM service area     PM service line     Project Manager     Project Office     Project Partner     Project Region     Project Service Area     Project Service Line     Project Type     Region     Sector     Service Area     Service Line     Service Offering     Staffed Cost center     WBS Element     WBS status     Work Date

    Hi,
    If you know the technical name of the info object characteristic, go to SE16 in BI, Type table name RSOSFIELDMAP and enter your info object name. I will give you corresponding field name for that info object.
    Regards,
    Assgn points if helpful.

  • 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

  • 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

  • Field sales related tables and Transaction code

    Dear SAPGurus,
    I have been working with field sales activities in mySAP CRM..
    Can I have the list of the tables and transaction code related to Field sales sales activies..
    I am grateful for ur help....
    I would like to appreciate u by rewarding the points
    Thanks a lot

    Hi Pratik Patel,
    Thank u very much for sending the table names.They are all very useful unto me
    Can I have the more table in this area
    If u have the CRM Data model and its relationship...Pls share with me..
    I  appreciate ur help by rewarding the points
    Regards,
    CRM Consultant

  • Content Search web part - Display Project Enterprise Custom Fields and Lookup Tables

    My ultimate goal is to display a rollup table of our active projects (from PWA) on another site collection using the content search web part. I can return default properties (such as the project name, author and URL) fairly easily using the same basic steps
    in the link below.
    http://en.share-gate.com/blog/roll-up-sharepoint-2013-sites-using-search
    My problem is that I want to also display information associated with each project from our PWA enterprise custom fields (such as risk, phase, etc.)
    Because these custom fields do not appear to be site columns, I'm at a bit of a loss as to how this data is searched / indexed / mapped.
    Is it possible to display PWA enterprise custom fields in a content search web part?

    Hi Jennifer,
    According to your description, my understanding is that you want to display PWA enterprise custom fields in a Content Search web part in SharePoint 2013.
    As your active projects were from different site collection with the Content Search web part, you need to do a crawl for the content source, then create a managed property for the column in CA->Search Service Application->Search Schema. When you create
    the managed property, select Searchable, Queryable, Retrievable.  Then  map it to the crawled property based on the custom column. You can find the crawled property by searching the name of the column in crawled properties.
    More information, please refer to the link:
    http://technet.microsoft.com/en-us/library/jj219667(v=office.15).aspx
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

Maybe you are looking for