Lineage relationship for HANA tables is not shown

Hi,
We are using Information Steward version 14.2.1.220 and we ran Metadata integrator for SAP HANA. We are able to see the impact relationship for the tables but not lineage realationship. Some tables are populated from other tables by calling the procedures. But we are not able to see this lineage relationship.
Can anyone please tell the solution for it?
Regards,
Bhagyashri

Bhagyashri,
At this time SAP HANA Metadata Integrator does not parse SQL procedure and so it cannot automatically establish relationship among tables which are populated by those procedures. You can create a user defined relationship to capture the table relationships in this scenario.
Thanks,
Hemant

Similar Messages

  • In HDBC Table are not shown as replicated.

    Hi ALL ,
    I replicated some tables in  ECC .
    In LTRC its showing me the tables are replicated .
    But In HDBC Table are not shown as replicated.
    Can you please help me with this.
    Regards,
    Abhishek

    Hello Abhishek,
    Are you sure you're using the same DB connection for LTR and HDBC?
    Best regards,
    Ralph

  • Itinerary table is not shown in Expense Report (IFbA ABAP)

    Hi,
    We're working in SAP ECC 6.0.4. We enter transaction PR05, choose a travel and click on Results button which opens the Adobe Form "Expense Report/Travel Expense Statement". In some cases the Itinerary table is shown but in others it isnu2019t shown even there is data in PTRV_HEAD table.
    We've seen that the trips for which the itinerary table are not shown have the characteristic of not having additional destinations. In 4.7 the table is shown correctly (without IFbA).
    How can we correct this problem?
    Best regards.

    Hi Varsha,
    Please pay attention when you are requesting motnly period for
    start date : 1st July 2008
    end date : 1st july 2008
    After saving the period is changed to
    Start Date : 7/1/2008
    End Date  : 7/31/2008
    When you are requesting weekly period for the same interval, after sving the dates are changed again, according
    you settings of first day of the week. It it is Monday it could be as following
    Start Date : 6/30/2008
    End Date  : 7/6/2008
    So you are asking data for not quite the same period.
    Do you have data for monthly period in that interval?
    Regards,
    Victoria Gur

  • When I open TB, under "Accounts", it only shows the option "Create a new account". Option: "View settings for this account" is NOT shown.

    When I open TB, I no longer see any information about the TB account I've used for years. Instead, the main menu shows only "Accounts" -- "Create a new account - Email, Chat, Newsgroups, Feeds". Option: "View settings for this account" is NOT shown.
    Also the main menu does NOT show "Email - Read messages, Write a New Message" or "Advanced features", etc..
    The actual emails pertaining to the TB account I've used for years are still present under the "Users --> xxxxyyyy --> AppData --> Roaming --> Thunderbird' folder.

    http://kb.mozillazine.org/Recovering_a_profile_that_suddenly_disappeared

  • Table.Maint.Gen-- Events are only for DB tables? not for views?

    Hi,
    Are the events in Table.Maint.Gen only for DB tables? not for views? because I have written the logic in events of Table.Maint.Gen of a view but it is not getting executed.

    Hi,
    1.Yes,The events are only for the Data Base tables ,not for the Views.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/how%20to%20implement%20events%20in%20table%20maintenance.doc
    Regards,
    Shiva Kumar

  • Table Header not shown in Purchase Order Smartform

    I have downloaded an installed an SAP SmartForm for Purchase Order (/SMB40/MMPO_DE). Unfortunatelly the document with this form cutting the right side of the document by printing. The width of the tables is 19,5 cm, it should be 19,00 or less. Anyhow, I have started to reduce the width of all windows and included tables and of course the table cells. This works fine with all tables, also with a dynamic content, but if I reduce the static header table t_header(window winheader, cell hd_netwr) for 0,5 cm this doesn't appear on printform. I have tried then to restore everything like it was - no effect.
    What could it be ?
    Kind Regards

    I have found the solution and have localized the problem or vise versa.
    The table had the hight 0,99 LN and the window hight was 0,5 cm. It seems to me that this 2 parameters had a size-conflict. When I have changed the line hight to 0,5 cm it starts work.
    Why it was done on this matter and why the error was not shown during compiling the form and how it did work before I have touched the window - this questions could be addressed to SAP.
    Kind Regards
    Alexey Voynikov

  • Page Process Does Not Work When Column for APEX_ITEM.HIDDEN is not shown

    I have created a Report Region based on a SQl Query. In the query I have three columns that need to be within an array, but 2 of the 3 columns should not be displayed on the report. Therefore, I don't have Show checked for them in the Column Attributes of the Report Region.
    In my testing, if I don't display the columns that are within the arrays on the report and run the page process to insert records into a table, I receive the error of "no data found". In reverse, if I display the columns, my insert is successful.
    Is this how the arrays work? Or is there something I have not done correctly.
    Below is the query for the Report:
    SELECT APEX_ITEM.CHECKBOX(1,ROWNUM,'CHECKED')ATTENDED,
    APEX_ITEM.HIDDEN(2,C.PARTY_ID) ID, -----this is the column I want to hide-----
    APEX_ITEM.HIDDEN(3,C.PARTY_TYPE_CODE) PTYP, ----this is the column I want to hide----
    C.PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS NAME,
    C.PARTY_CASE_ID
    FROM CASE.PARTY C
    INNER JOIN DN.PERSON S
    ON C.PARTY_ID = S.PERSON_ID
    WHERE C.PARTY_CASE_ID = :P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO = :P18_SEQ
    Thanks,
    Keisha
    Edited by: user4579720 on Sep 16, 2009 2:30 PM

    Keisha,
    If you uncheck the "show" option, then the corresponding HTML for that item is not rendered on the page. Thus, when you try to inspect that item via APEX_APPLICATION.G_F02, it simply doesn't exist.
    One trick that I use when I want to have hidden items on the page, but not make them take up any space, is to concatenate them to items that will be visible.
    Using your query as an example, I would re-write it like this:
    SELECT APEX_ITEM.CHECKBOX(1,ROWNUM,'CHECKED')ATTENDED,
    APEX_ITEM.HIDDEN(2,C.PARTY_ID)
      || APEX_ITEM.HIDDEN(3,C.PARTY_TYPE_CODE)
      || C.PARTY_TYPE_CODE PARTY_TYPE_CODE,
    S.PERSON_ID,
    S.PERSON_FIRST_NAME AS NAME,
    C.PARTY_CASE_ID
    FROM CASE.PARTY C
    INNER JOIN DN.PERSON S
    ON C.PARTY_ID = S.PERSON_ID
    WHERE C.PARTY_CASE_ID = :P18_CDBCASE_ID
    AND C.PARTY_SEQ_NO = :P18_SEQThus, the second APEX report column will contain the HTML for the hidden items PARTY_ID & PARTY_TYPE_CODE, as well as the value for PARTY_TYPE_CODE. When you submit the page, you should not encounter any issues.
    Thanks,
    - Scott -
    http://sumnertechnologies.com/
    http://spendolini.blogspot.com/

  • How to set column widths in tables for selected table only, not globally throughout document?

    I've been utilizing the below script (thank you so much Ramkumar. P!) to set column widths throughout a sizable InDesign book with tables on every page and it is truly a time saver. At this point in time, I have three versions of it because there are different column widths throughout the book. Is it possible to augment the script to run only on a selected text frame (containing a table)? If so, would someone be kind enough to share the augmented script with me? I've been trying to figure out this seemingly simple change through trial and error with no success as yet. I realize this is a totally newbie request and I'm entirely at the mercy of the kindness of the Javascript gods that contribute within this forum. Seeing that in a different post related to this script, one such guru responded to a request as simple as "Where do I put the scripts in InDesign" gave me enough courage to ask for some help! Thank you in advance to anyone willing to provide a solution.
      var myDoc = app.activeDocument;
         var myWidths = [100, 100, 150, 150];
         for(var T=0; T < myDoc.textFrames.length; T++){
             for(var i=0; i < myDoc.textFrames[T].tables.length; i++){
                 for(var j=0; j < myWidths.length; j++){
                     myDoc.textFrames[T].tables[i].columns[j].width = myWidths[j];
         alert("Table width updated successfully...");

    Hello all
    I have the same problem in that I'm not a scripting person, but was able to get the above script working without problem, and it does set irregular table column widths perfectly, so thanks to Ramkumar. P for that.
    BUT, it changes the column width for ALL tables in the document, whereas I would like to just target the selected table.
    Any ideas as to how I might amend this script to achieve this?
    Thx, Christian

  • DB Connection Tables & Views not shown in 9.0.3 for 3rd Pty JDBC

    I am running JDeveloper 9.0.3 under Windows 2000.
    I have configured the 3rd party JDBC libraries under jdev.conf.
    Under connections, database connection, I am able to connect to the database and it does show me the three schema owner names in that database. I am signed on as one of those schema names.
    However, when I attempt to drill-down to the tables and views under those schemas, nothing is shown.
    Under 9.0.2, I was only able to see the schema of the userid I used to sign-on to the database, but I was able to drill-down to the tables and views and use them in generating UML diagrams and such.
    Any help would be appreciated.

    Robert,
    We changed the handling of schemas and catalogs between 9.0.2 and 9.0.3. The purpose of the change was to correct some problems with specific JDBC drivers where the old way was not working. While we tried to test with as many drivers as possible, it seems likely that we inadvertantly introduced an incompatability with your driver. If you can provide me with a few more details, I can try to isolate the problem and hopefully find a resolution.
    First of all, when you created the connection, did you use uppercase, or lowercase. And does the case you use match the case we display in the navigator?
    Second, if you run the code I've enclosed at the bottom of this message (replacing the values in <> with the appropriate values), do you get tables back? What is the value that is printed out for the catalog. If you are seeing a difference in case between the connection definition and the schema node in the navigator, can you try both cases?
    The enclosed code is basically the query we use to get the list of tables. However, we are doing some work internally with the catalog and schema, and see what the raw query returns should point me in the correct direction.
    - John McGinnis
    Oracle JDeveloper Team
    package mypackage1;
    import java.sql.*;
    public class Class1
    public static void main( String[] args )
    try
    DriverManager.registerDriver( ( Driver ) Class.forName( "<your driver>" ).newInstance() );
    Connection conn = DriverManager.getConnection( "<your url>", "<user>", "<password>" );
    DatabaseMetaData dmd = conn.getMetaData();
    String catalog = conn.getCatalog();
    System.out.println( "Catalog = " + catalog );
    ResultSet rs = dmd.getTables( catalog, "<user>", "%", new String[] { "TABLE" } );
    int i = 0;
    while ( rs.next() )
    System.out.println( "Table " + i++ + ": " + rs.getString( 3 ) );
    catch ( SQLException ex )
    System.err.println( ex.getLocalizedMessage() );
    catch ( Exception ex )
    ex.printStackTrace();
    }

  • UDF for table CRD1 not shown in XL Reporter

    Hi everyone,
    I created an UDF under "Business Partners - Addresses" (for table CRD1), but in XL Reporter it is not in the UDF list.
    Looks like XL Reporter only recognizes UDFs on the primary table level -- all UDFs built for "Business Partners" (OCRD) are in the list.
    However, I have to put this UDF  on CRD1 level since it's related to ship to zip codes.
    How can I work around it?
    Thanks.

    Hi,
    You have a correct assumption.  Only UDF in OCRD will be available to XLR but not CRD1.  For work around, you need to create UDF in marketing documents to get the UDF value from CRD1.
    Thanks,
    Gordon

  • Invoices posted for future dates could not shown in Outgoing Payment table

    Hi, Experts,
    We posted an A/P invoice for the future date (next month), and then we'd like to pay it under Banking -> Outgoing Payment -> Outgoing Payment the current date. But when we selected the vendor account, we could not find the invoice listed in the table.
    Would this be anyway to show all the invoices posted with a future post date in the outgoing payment table?
    Thanks!
    Lorrie

    Hi,
    As it seems to be the current behavior of the system, the best option could be Payment on Account.
    You can create a Payment on Account for payment on currenct date and when the AP Invoice is added you can Link the same to the Invoice afterwards.
    Look out for other options if provided here by the experts.
    Regards,
    Jitin

  • Many to many relationship for recursive table

    HI friends,
    I have a use-case where I have several tasks that are inter-dependent on each other. Like one task will execute only if other tasks (which can be more than one) are successful. I am not able to decide what the database design should be for this. If there should be a relationship table with a self-join something like this-
    CREATE TABLE Item (
    ItemId int,
    status varchar,
    PRIMARY KEY(ItemId));
    CREATE TABLE Item_Relation (
    itemId int,
    dependsOnItem int,
    PRIMARY KEY(itemId, dependsOnItem),
    FOREIGN KEY(itemId) REFERENCES Item (ItemId),
    FOREIGN KEY(dependsOnItem) REFERENCES Item (ItemId));
    is it recommmended because this is the only solution I see for this?
    Thanks.

    Looks like your trying to embedd business logic in the database tables. It should be in your java project only.
    I suggest you keep your database simple with basic associations between tables (foreign keys). The database
    is for storing data that many applications aside from yours will want to use. Your specific business logic requirements
    should not be in it.
    In your java code, you can use transactions in your sql to rollback if something isn't the way it should be.
    However, I would not suggest you put your task verification problem code handling in the rollback block of code.
    Instead, I suggest you query the database tables and determine if the previous tasks are ok to do the current unit of work.
    If so, perform the unit of work (say, write to some other database table). If not, return a message on what the problem is
    (better yet, have a validation function that verifies the pervious tasks have been done). All of that should be in a transaction
    to play it safe. Why you ask?
    The problem is, even if your validation function says the previous tasks are complete, by the time you perform the new unit
    of work, the database may have changed and the validation is not longer valid. Therefore you rollback may still occur (ensures the
    data in the database is not in an invalid state) Normally in that case, you rollback and tell the user to repeat the operation
    (see optomistic concurrency). Exactly how you plan on handling these side issues is up to you.

  • In SSRS , after exporting report in excel,wrap text property for cell and freeze column for SSRS table header not working in Excel

    I am working no one SSRS my table headers are freeze cangrow property is false and my report is working perfect while rendering data on RDL and i want same report after exporting in Excel also , i want my table header to be freeze and wrap text property
    to work after exporting in my report in excel but its not working ,is there any solution ? any patch ? any other XML code for different rendering ? 

    Hi Amol,
    According to your description, you find the wrap text property and fix column is not working after exporting into Excel. Right?
    In Reporting Services, when exporting to excel file, it has limitation for textbox.
    Text boxes are rendered within one Excel cell. Font size, font face, decoration, and font style are the only formatting that is supported on individual text within an Excel cell.
    Excel adds a default padding of approximately 3.75 points to the left and right sides of cells. If a text box’s padding settings are less than 3.75 points and is just barely wide enough to accommodate the text, the text may wrap in Excel.
    In this scenario, it supposed to be wrap text unless you merge cells. If cells are merged, word-wrap does not work correctly. If any merged cells exist on a row where a text box is rendered with the
    AutoSize property, autosize will not work. For the Fix Data Property, it can't be working in Excel. These are features when exporting to Excel. We can't change it because it's by design.
    Reference:
    Exporting to Microsoft Excel (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Georaster Raster Data Tables are not shown in SQLD 1.5 EA3 ?

    Contributors,
    I am a newbie in Oracle mainly using the Oracle Spatial GeoRaster. There is a kind of table called Georaster Raster Data Tables (RDT) in georaster feature. I wonder how to properly set the latest SQL Developer (1.5 EA3) to show georaster RDTs in the connection / objects pane (left hand side pane) ?
    My SQL Developer 1.5 EA3 does not show any RDT. Is it misconfigured ?
    Previous versions in my machine (version 1.2.1 and 1.1.3) have no problems in showing RDTs.
    My platforms are :
    * OS : MS Windows Vista Ultimate
    * Oracle Database 11g Release 1 (11.1.0.6.0) Enterprise/Standard Edition for Microsoft Windows 32-bit
    * JDK 1.6.0_06
    Please advise,
    =Damon
    (i have also post this in Spatial forum)

    This is just a bug.I have logged bug #7025395
    Sue

  • R/3 Table name not shown in RSO2

    I have a Z Table in my R/3 system which I can see from SE11 but when I try to create a Data Source from RSO2 with Create Data Source from DB table or view, it doesn't show that table name in the list.
    Do I have to create a view for that Z table or can I pull the data directly from the table?
    Please help !

    HI,
        Make sure ur table is active.
        or
        I think u have saved as a local object (tmp), so that it is not displaying in the RSO2 transaction. u can directly enter the name of the table u will get a information popup "Database table ZDANGER is a local object" press continue.
    u will able to use the table for generic datasource.
    regards,
    Md Zubair Sha

Maybe you are looking for

  • Purchase price difference between SAP R/3 and BWI report

    Hi Purchase price difference between SAP R/3 and BWI report What is purchase price variance ?, my user is telling that  in SAP R/3, purchase price variance 100 and in  BWI  report it is 200 . Any other terminologies are there for purchase price varia

  • Third party DVD burner?

    Can anyone recommend a reliable third party DVD burner for my iMac with Lion OS?  iDVD is no longer available.

  • DB connectivity issue

    Hi All, I am facing one problem When ever i am trying to connect to database it is hanging after logging banner & not able to get sql prompt checked all the background process are running properly. Please suggest Abhi

  • Targets to FDM

    Hi, Please confirm if there can be any non-hyperion tools used as target to Hyperion Financial Data Quality Management? If Yes what are those?

  • How to apply a number format to a cell within a table in Word 2011??

    I am creating a fillable PDF form and I need to be able to apply a phone number format to a cell in Word 2011 similar to how it is done in Excel...Can someone please HELP me? Thank You!