CRM generated tables

Hi All,
   I need to know which are the dynamically generated tables in CRM. In which application components in CRM generates this tables and what are its namespace.
Its pretty urgent. Could you let me know this info plz.
Regards,
Prasad

hi Dhinakar,
One of the very simple ways to do it is look into the TADIR table.The TADIR table contains a field called Genflag.All the generated tables have GENFLAG = X.
To know the application components check the tables TADIR,TDEVC and DD02L.
Hope it helps,
Regards,
Sourabh

Similar Messages

  • Generated Table not visible in tree

    hi,
    I have registered a Schema and
    select object_name,
    object_type,
    status
    from user_objects
    order by object_name,
    object_type;
    Results of the statement:
    OBJECT_NAME OBJECT_TYPE STATUS
    EXTRADATA177_L LOB VALID
    NAMESPACES178_L LOB VALID
    PLAYER TABLE VALID
    PLAYER$xd TRIGGER VALID
    PLAYER_T TYPE VALID
    SYS_C004803 INDEX VALID
    SYS_XDBPD$176_L LOB VALID
    I am wondering why the PLAYER Table doesn't appear in the connections tree on the left side (Tables node).
    Is this a bug or doesn't show SQL Developer these generated tables? Via DB Search I can find the table but I can't edit it.
    Thanks

    Yes, it is a bug since 2 years now!
    As (temporal) workarounds, you could:
    1. log on as "SYS" (or ask your DBA) and go change the "generated" flags for the tables you need (subtract 4 from sys.obj$.flags - would leave it at 0 normally).
    2. delete the AND O.GENERATED='N' line from the SELECT in +\sqldeveloper\extensions\oracle.sqldeveloper.jar\oracle\dbtools\raptor\navigator\table.xml+
    3. create a user defined XML extension, starting from the xml obtained above.
    Have fun,
    K.

  • Extraction from R/3 generated Table

    Hi,
    I have a situation that i have to extract from a table in ECC R/3 and that table name changes and changes mainly during transports as it is a SAP generated table containing the Fund and Fund Center.
    but i need to extract the data  but not able to use it as the table name changes.
    Anyone please can throw some light  on this how to use the extractor in this situation and how to work around with this table ????
    Thanks,
    GG

    It is generated when it goes to the target system, right?
    This table name would be stored somewhere, trace the R/3 programs associated with the table to figure out how it finds the table name.
    Have an FM based extractor which will follow the same logic to dynamically select from the table (by finding the table name in the same way as SAP programs do).

  • How to get SQL script for generating table, constraint, indexes?

    I'd like to get from somewhere Oracle tool for generating simple SQL script for generating table, indexes, constraint (like Toad) and it has to be Oracle tool but not Designer.
    Can someone give me some edvice?
    Thanks!
    m.

    I'd like to get from somewhere Oracle tool for
    generating simple SQL script for generating table,
    indexes, constraint (like Toad) and it has to be
    Oracle tool but not Designer.
    SQL Developer is similar to Toad and is an Oracle tool.
    http://www.oracle.com/technology/products/database/sql_developer/index.html

  • Merge API stub for 'Generate Table API...'?

    Hi,
    Has there been a request for a stub in the menu option 'Generate Table API...' that creates a merge procedure? If it generated the MERGE command for a given table that would be great and even better than trying to call the UPD procedure, trap the does not exist error and then call the INS procedure.
    The key to making this work is by passing the parameters for the actual match to the MERGE statement via the DUAL table in the source definition of USING clause. By doing this via the primary key of the table drives the cost for this procedure to unique scan via the PK which is 1 (one) logical I/O for the lookup and the decision to do an insert or update. The overall cost should be around 4.
    Thanks,
    ScottK
    The general pattern could be:
    PROCEDURE mrg (
    p_pk_col_1 IN table_name.pk_col1%type
    ,p_pk_col_n IN table_name.pk_coln%type
    ,p_non_pk_col1 IN table_name.non_pk_col1%type
    ,p_non_pk_coln IN table_name.non_pk_coln%type
    ) IS
    BEGIN
    MERGE INTO table_name target
    USING (SELECT
    p_pk_col1 alias_pk_col1
    ,p_pk_coln alias_pk_coln
    FROM dual) source
    ON ( source.alias_pk_col1 = target.pk_col1
    and source.alias_pk_coln = target.pk_coln)
    WHEN MATCHED THEN UPDATE
    SET target.non_pk_col1 = p_non_pk_col1
    ,target.non_pk_coln = p_non_pk_coln
    WHEN NOT MATCHED THEN INSERT
    column list
    VALUES
    parameter list
    END;
    Edited by: ScottK on Aug 11, 2011 3:17 PM
    Edited by: ScottK on Aug 11, 2011 3:48 PM
    Edited by: ScottK on Aug 11, 2011 3:49 PM

    You can always request this at the SQL Developer Exchange, so other users can vote and add weight for possible future implementation.
    Regards,
    K.

  • Robohelp 9 does not generate table headers

    Hi all,
    the new table style mapping works, but is of no worth for me if Robohelp is not able to generate table headers in the Word output. Having headers in Word is also a prerequisite for the first line to repeat on each new page.
    Is there a way to output the first line as a header?

    Hi,
    I can partially confirm that. HTML does have the concept of table headers, captions, footers and content. When using a table that is set up correctly, most browsers will render the table header on every printed page:
    <table>
         <thead>
              <tr><th>First heading</th><th>Second heading</th></tr>
         </thead>
         <tbody>
              <tr><td>Value</td><td>Value</td></td>
         <tbody>
    </table> 
    RoboHelp does not use such tables. You can manually create these tables in HTML mode. When converting that to Word, the table headings are correctly converted to a Word table heading. In my default Word template, these headers correctly repeat after every pagebreak. But when you switch to Design view, RoboHelp then removes the structure information. The above table will be recreated as: 
    <table>
      <tr><th>First heading</th><th>Second heading</th></tr>
      <tr><td>Value</td><td>Value</td></td>
    </table> 
    This table will not have it's first row set as a header in Word. 
    As to what to do, I can think of two options:
      - You can write a script to quickly transform the tables in your project to have a table structure that works for printed documentation. Since RoboHelp will reset your tables, you will need to execute this script every time you want to generate your Word output. Also, because the structure of the tables will be changed, you probably need to amend your css. (The first table row uses th instead of td.)
      - Personally, I use default RoboHelp tables and I use the macro Peter mentioned. Peter's site contains several macro's that will greatly improve the quality of the RoboHelp Word output.
    Greet, 
    Willam

  • Generating tables from database

    Hello,
    What Im trying to do is generate table information from my
    database. What Im doing right now is retrieving the information
    this way, which is combersome because alot of pages would be
    different because they dont all have the same number of columns.
    this is how the code looks now:
    <cfloop
    query="addtobom">#toppage#</a></td></cfloop>
    <td><div
    align="center">#column1#</a></div></td>
    <td><div
    align="center">#column2#</a></div></td>
    <td><div
    align="center">#column3#</a></div></td>
    <td><div
    align="center">#column4#</a></div></td>
    <td><div
    align="center">#column5#</a></div></td>
    <td><div
    align="center">#column6#</a></div></td>
    <td><div
    align="center">#column7#</a></div></td>
    </tr>
    </cfoutput>
    If there an easy line of code I can put in here that queries
    the database for columns that have info and avoiding null columns.
    Thanks for any help

    Normally the table of data you display matches the query.
    Your code will not run the way you have it. This should run
    but I am not
    sure what you are doing here.
    <cfoutput query="addtobom" maxrows="1"
    startrow="1">#toppage# </cfoutput>
    <table>
    <cfoutput query="addtobom">
    <tr>
    <td align="center">#column1#</td>
    <td align="center">#column2#</td>
    <td align="center">#column3#</td>
    <td align="center">#column4#</td>
    <td align="center">#column5#</td>
    <td align="center">#column6#</td>
    <td align="center">#column7#</td>
    </tr>
    </cfoutput>
    </table>
    You can check rows for null but I do not think you can check
    columns /
    fields.
    It depends on the database but
    WHERE (NOT (Cat IS NULL))
    "dennisquery" <[email protected]> wrote in
    message
    news:ekbcf5$7nm$[email protected]..
    > Hello,
    >
    > What Im trying to do is generate table information from
    my database. What
    > Im
    > doing right now is retrieving the information this way,
    which is
    > combersome
    > because alot of pages would be different because they
    dont all have the
    > same
    > number of columns.
    >
    > this is how the code looks now:
    >
    > <cfloop
    query="addtobom">#toppage#</a></td></cfloop>
    >
    > <td><div
    align="center">#column1#</a></div></td>
    > <td><div
    align="center">#column2#</a></div></td>
    > <td><div
    align="center">#column3#</a></div></td>
    > <td><div
    align="center">#column4#</a></div></td>
    > <td><div
    align="center">#column5#</a></div></td>
    > <td><div
    align="center">#column6#</a></div></td>
    > <td><div
    align="center">#column7#</a></div></td>
    > </tr>
    > </cfoutput>
    >
    > If there an easy line of code I can put in here that
    queries the database
    > for
    > columns that have info and avoiding null columns.
    >
    >
    > Thanks for any help
    >

  • Problem in using Auto-generated Table in Program

    Hi experts,
    I'm using some auto-generated table in my program. But the Problem is program is not activated due to non-existance of any type of table or structure or view of that Table type in the development server. i.e. table name in development is FMFMOADE12200014 and same in Production is FMFMOAPE14000018.
    How can I solve this problem to active the program and transport it?
    Thnaks in advance.
    Goutam

    Hi Friend  ,
    If  an Auto-generated tables  inside your program ,then you should not use that table directly  as internal table type .
    In that case you have used the Dynamic structure  in your program .
    tips is  you should check first the table is there in the  database  through your  programing using the standard function module for checking the table exsisting , then use the field symbols  for dynmaic creating of program  strucuture  ,including field creation  to tat strcuture  . this  will  make your  program more  lines in that  case you can  write  subroutine  for  creating the  fields  and adding  inside the dynamice strucure  .
    simple example  please see this link  :  [http://www.sap-img.com/ab030.htm]
    becasuse  we do have the  same  auto-generating table  concept  in Finance  base  on the Operating cencern  out table  name  & fields  inside  will be changing  ,Our  program has to support world wide Rollouts . so we used  dynamic structuring  inside Our program .
    Regards,

  • Middleware settings to map CRM Z table fields with ECC material master flds

    Hi,
    We want to create  a Z table in CRM,this table willl have 2 fields External Material Group and Old Material Number.These 2 fields in CRM table are corresponding to same material master (MM03) fields in ECC.The changes to these fields done in ECC material master should be updated in CRM Z table.
    I want to understand the middleware settings I need to do in order to map the ECC and CRM fields.
    Thanks in advance for your help
    Swapnil

    Hi Swapnil,
    I am new to Middleware, I am also having same requirement , can you please tell me the process how you resolved this thread.
    Thanks in advance,
    Regards,
    Santosh.

  • CRM generated xls cannot be "Saved as"

    Hi all,
    I have trouble saving as CRM generated xls file from within Excel 2013. Basically I need to save it as xlsx, but when I get to the "Save as" area and click on browse nothing happens.
    I believe it is something to do with the security settings of the Office.
    Thanks

    When we click Browse, Excel would call Explorer. In this link, it seems that something corrupted or the action has been blocked somehow.
    At this point, please try to disable anti-virues programs and firewall to check the behavior。
    Launch Excel in safe mode to avoid the add-ins interrupt is also a general troubleshoot steps worth to try. Thanks.
    Run "Excel.exe /s"
    Tony Chen
    TechNet Community Support

  • Generate Table API

    Is it possible to modify/customize the code generated by the 'Generate Table API' menu path, so as to add additional functionality etc.
    Thanks
    Paul

    There are no any reserved words in the table definition.
    The complete TYPE declaration:
    TYPE sqlInd_type IS RECORD ( OPE_MACHTIGING INTEGER := 0 OPE_STATUS INTEGER := 0 OPE_WIJZE_VAN_BETALING INTEGER := 0 OPE_STATUS_BETALING INTEGER := 0 );
    Thank you in advance.
    Moussa

  • How can I sort a dynamically generated table

    I am dynamically populating the columns in a table every time my page is loaded. (see code below)
    This is all working fine, and I am also able to use the built in pagination.
    However, I run into problems as soon as I click on a column header to try sort the table.
    I assume that because the columns are not defined in the JSP (because they are added dynamically), the sort criteria is referring to non-existant columns once the page reloads.
    I get an exception as follows
    Exception Details:  org.apache.jasper.JasperException
      #{currentRow.value['categories.category_id']}Can anyone suggest a solution so that I can sort the data for my dynamically generated table?
    Cheers,
    Ian
    //NOTE: I call populateTable(tableRowGroup1,dynamicRowSetDataProvider) in my prerender code.
    //tableRowGroup1 is defined as an empty (ie no children) row group in the JSP
    private void populateTable(TableRowGroup rowGroup, DataProvider dp) {
        rowGroup.setSourceVar("currentRow");
        try {
            FieldKey[] columnNames = dp.getFieldKeys();    
            for(int i=0; i < columnNames.length; i++) {
                String columnName = columnNames.getFieldId();
    info(i+": columnName");
    rowGroup.getChildren().add(
    createStaticTextColumn(columnName, "#{currentRow.value['"+columnName+"']}")
    } catch (Exception ex) {
    log("Error Description", ex);
    info("Error Description : " + ex);
    return;
    private TableColumn createStaticTextColumn(String heading, String dataField) {
    TableColumn tableColumn = new TableColumn();
    tableColumn.setHeaderText(heading);
    tableColumn.setSort(dataField);
    TextField staticText = new TextField();
    ValueBinding vb = getApplication().createValueBinding(dataField);
    staticText.setValueBinding("text", vb);
    tableColumn.getChildren().add(staticText);
    return tableColumn;

    I'm also having this problem, and I'm sure many more are too. It seems that no one has a solution, but perhaps that makes it even more value able for a sun dev to figure it out. It's surprising that it's so difficult to make dynamically generated tables with JSC.

  • Changing the readOnly attribute of fields in a JHeadstart generated table

    Hey Folks,
    I'm trying to set the readOnly attribute on a bunch of fields in a jheadstart generated uix table based on a http request param, using a <boundAttribute>. For some strange reason, the value of the param is ALWAYS seen as true within the table, no matter what the param actually is set to. I have other fields that are NOT part of the Jheadstart generated table, and it is working fine. However, when I try and apply the boundAttribute to the uix table, the readonly attribute is always seen as true. Why is this? Wouldn't the http request param be the same throughout the page no matter if it was in a uix generated table or not? What am I doing wrong? I'm using Jdev 10.1.2 and Jheadstart 10.1.2.2, using struts/uix.
    Thanks!

    Sure. First, note that this page submit to itself. Previewmode is a request param that gets toggled to true or false each time the page loads through a seperate boundAttribute.
    Here is the code for one of the fields on the uix table:
    <messageTextInput id="${ui:concat('DetailsInClaim:ProcRevDrug:',uix.current.tableIndex)}"
    model="${uix.current.ResubmitProcRevDrug}"
    text="${uix.current.ResubmitProcRevDrug}"
    name="ProcRevDrug"
    promptAndAccessKey="&amp;Procedure / Revenue"
    rows="1"
    maximumLength="12"
    columns="5">
    <boundAttribute name="readOnly">
    <if>
    <not>
    <comparison type="equals">
    <convert javaType="string">
    <dataObject default="${!param.previewMode}"/>
    </convert>
    <fixed text="true"/>
    </comparison>
    </not>
    <fixed text="true"/>
    <fixed text="false"/>
    </if>
    </boundAttribute>
    </messageTextInput>
    However, our consultant figured out that applying the value of ${param.previewMode} directly to the readOnly attribute WITHOUT using a bound attribute actually worked. (within the messageTextInput tag do readOnly="${param.previewMode}"
    Not sure why that would work as when a <boundAttribute> would not.

  • Issue in Store XML into Schema generated tables and Validation XML against registered schema.

    Hello friends,
    I am facing some problem when store xml into generated tables from registered schema.
    This is my Schema
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.abc.inf.in/test" targetNamespace="http://www.abc.inf.in/test" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:include schemaLocation="abc.xsd"/>
      <xs:element name="project" type="student">
      <xs:annotation>
      <xs:documentation> This is a Documentation</xs:documentation>
      </xs:annotation>
      </xs:element>
    </xs:schema>
    -- This is my xml document
    <project versao="2.00" xmlns="http://www.abc.inf.in/test">
      <test xmlns="http://www.abc.inf.in/test">
      <intest version="2.00" Id="testabc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  >
      <ide>
      <cUF>35</cUF>
      <cNF>59386422</cNF>
      <natOp>this is post</natOp>
      <indPag>1</indPag>
      <mod>55</mod>
      <serie>1</serie>
      </ide>............
    Not giving full because it's too long.
    1. I Successfully registered Schema into database
    2. Then i generate table from registered Schema
    2. In my java code i validated XML document against Schema and it's successfully validate.
    3. But when i stored this XML into this generated table it's give me error
       Like :
    INSERT INTO XMLTABLE
    VALUES
    (XMLTYPE(bfilename('MYDIR','testabc.xml'),NLS_CHARSET_ID('AL32UTF8')))
    Error report:
    SQL Error: ORA-31061: XDB error: XML event error
    ORA-19202: Error occurred in XML processing
    LSX-00333: literal "94032000" is not valid with respect to the pattern
    And i have to store this xml into this tables so what i have to do ?

    Thanks for your reply odie_63.
    I got this my error solution. My XML document is not well structured based on my registered XML Schema.
    Means In My XML Document there are some invalid value and that not match my schema pattern so it's gives this error
    SQL Error: ORA-31061: XDB error: XML event error
    ORA-19202: Error occurred in XML processing
    LSX-00333: literal "94032000" is not valid with respect to the pattern
    For Solution we have two ways
    1. I have changed this literal "94032000" value in my xml file then save it.
    2.
    - We have to delete this schema then
    - we have to change Schema pattern for particular element
    like :--
    <xs:restriction base="xs:string">
      <xs:whiteSpace value="preserve"/>
      <xs:pattern value="[0-9]{3}"/>
    </xs:restriction>
    - then store xml into database it works..
    Thanks.

  • How to find the CRM related Tables form a Particular DataSource

    Hi friends
               <b>How to find the CRM related Tables form a Particular DataSource
      of BusinessContent.</b>
      ex: i had taken CRM - DataSource ........ 0CRM_LEAD_H (Lead Header Data)
           for this DS i assign IS and extract data. But i want to Know from which
           CRM tables it was comming.
           ie ..I want to know the what tables linked to Datasource(0CRM_LEAD_H)
           How it has to check?

    Just for your info, you can find as useful (for a methodology to solve this kind of issue) this weblog:
    SAP BW and Business Content Datasources: in pursuit of the origins
    Hope it helps!
    Bye,
    Roberto

Maybe you are looking for

  • Can not refer to a field in the structure INCLUDE

    Hi gurus, I have tried to declare an internal table like ( SAP standard ) DATA: BEGIN OF OBJECT_TAB OCCURS 0.         INCLUDE STRUCTURE RQMQMEL1. DATA:   SELECTED,         PM_SELECTED TYPE PM_SELECTED,         LIGHTS, "add some more fields       END

  • How to get Material Document List (MB51) Data

    Hi , Can anybody please explain me the procedure to get MB51 data through report . Here my requirement is to display the data with additional selection screen parameters & add some more fields in out put of ALV GRID Display. Thanks in advance. --Hams

  • Picture Resolution on Apple TV

    When my apple tv syncs with my iphoto, does it save a full version (high resolution) photo to apple tv? I'm just wondering if my hard drive ever crashes, if I could restore all of my photos from my apple tv? Thanks.,

  • What's wrong with COM.ibm.db2.jdbc.app.DB2Driver?

    Hello everybody, first of all I posted this on http://www-105.ibm.com/developerworks/java_df.nsf/AllViewTemplate?OpenForm&RestrictToCategory=33 so you can check the IBM forum as well, may be some IBM gurus can comment this... I'm using the COM.ibm.db

  • The server has experienced an error on startup.

    Has anyone seen this error before? The server has experienced an error on startup. This problem must be fixed before using the system. I am not sure what caused it but I first saw it after restarting the server and now when I go to http://localhost/p