How to adjust table order in OBIEE.

now i design logic model in admin tool. tableA join tablleB (tableA.id = tableB.user_id)
after i design it, i drop tableA.id, tableB.user_id) into answer. then i check sql log in analytics web applications.
the sql is like below, my questions is if i want to adjust table order i how to implement it ? "from tableA, tablleB" to "from tablleB, tableA"
select tableA.id , tableB.user_id
from tableA, tablleB
where tableA.id = tableB.user_id

up....

Similar Messages

  • How to adjust table height, make no redundant height

    by default, table will be too high if just a small number of columns,
    just wanna no redundant space, how to achieve it?

    Use CSS.

  • Usage of TAble Functions in OBIEE

    Hello All,
    I have created a table function in the database.
    Is it possible to use/call table functions in obiee.Please let me know how to use table functions in OBIEE.
    Thanks in advance.

    Hi,
    Thanks for your reply.
    I want to use this table function to generate answers report.
    In the query i am using unions,bind variables.I can not create a database view on this query.The best solution would be creating a table function.
    But,i do not know how to access/use/call this table function to create answers report.
    Thanks in advance.

  • How to re-arrange the columns present in pivot table view in obiee 10?

    Can you please tell me How to re-arrange the columns present in pivot table view in obiee 10?

    I have columns as 1,2,3,4,6,7, in pivot table view.
    I have calculated item (column 5 as summation of 1,2,3,4) and caluclated itme (column 9 as summation of 6,7)...now if i arrange ascending then calculated columns 5,9 don't get affected.
    I need the order as 1,2,3,4,5,6,7,9

  • SD-How to find table of link between delivery and sales order?

    Hi Experts,
    I have a requirement as below.
    In LIPS table (SD document: Delivery: Item data), in this table has one kind data.
    One record has maintianed 2 fields PSPNR(Project definition (internal)) and PS_PSP_PNR(Work Breakdown Structure Element (WBS Element)).
    How to find sales order number of the above record? Could you tell me which table link the delivery item data and sales order number?
    Thanks a lot,
    Frank

    Hi frank
    Check the following tables  VBAP , VAPMA , VBUP . It may help you
    Regards
    Srinath

  • SD-How to find table link of special delivery and sales order number?

    Hi Experts,
    I have a requirement as below.
    In LIPS table (SD document: Delivery: Item data), in this table has one kind data.
    One record has maintianed 2 fields PSPNR(Project definition (internal)) and PS_PSP_PNR(Work Breakdown Structure Element (WBS Element)).
    How to find sales order number of the above record? Could you tell me which table link the delivery item data and sales order number?
    Thanks a lot,
    Frank

    hi,
    check this.
    [https://forums.sdn.sap.com/click.jspa?searchID=20150250&messageID=3784069]

  • How to use Table valued MSSQL  function in OBIEE

    Hi all,
    Can some one help me to understand how to use table valued function in OBIEE? I want to use a table valued function (MSSQL function, with some input parameter), in the physical layer to pull the data?
    I know for MSSQL Stored Procedure we can write as
    EXEC SP_NAME @Parameter = 'VLUEOF(NQ_SESSION.Variablename)'
    but now I have a table valued function in the query window I can get the data as
    select * from myfunction(parametervalue)
    In physical layer of OBIEE I have tried as
    select * from myfunction('VLUEOF(NQ_SESSION.Variablename)'), but I'm getting error as the NQ_SESSION variable doesn't have a value , but actually I have initialized the variable but still Im getting error.
    Can some one help me to solve this.
    Thanks,
    Mithun

    Follow this link and try yourself. let me know for issues
    Substring instr issue in obiee
    Appreciate if you mark
    Edited by: Srini VEERAVALLI on Feb 20, 2013 8:13 AM

  • How to change the order of download options as per our convience in obiee

    hi frineds,
    How can i change the order of the download options in obiee dashboard ?
    like if you press download option you see
    download to excel
    download to excel 2000
    download data
    download webpage(mhtml)
    how to change this order.????????

    The download options are setup in OracleBI\web\msgdb\messages\viewscontrolmessages.xml
    - Search for the tag *<WebMessage name="kmsgEVCDownloadLinks">* that contains the download links within the hyperlink tag
    - Each hyperlink tag is a download option
    - Reorder as you require
    - The actual text that gets displayed as a link can also be customized by editing the entry for a message such as kmsgEVCLinkDownloadExcel in the OracleBI\web\msgdb\l_en\messages\viewmessages.xml [the customization is locale specific]
    - Restart the presentation server

  • How to adjust limit in Purchase Order

    Hi Gurus,
    I would like to ask what are the steps on how to adjust the over all limit of the PO.It is my first time to handle Purchase Order with Limit and i am not familiar with the steps
    We have here a scenario. During the creation of Service Entry , we received this error "no over all limit for unplanned services amounting to XXXX.XX exists". We have created 2 CMs for this PO but the limit was not deducted .
    Please help
    Edited by: zadini29 on Jan 19, 2011 1:36 AM

    Hi,
    we can answer to it by freigt conditions that we can use in pricing procedure. make that condition entry possible at PO creation.
    you can change the vendor of that condition at PO itself. just select that condition and click on overview button at buttom, system will show you new page where you can give your vendor code of tranpoter.
    When you will do GR, system will allow you to settel delivery cost at MIRO. just select planned delivery / service option where you give PO number in MIRO.
    FERT is what is the default feright condition given by SAP. you can make use of it.
    Rgds
    S

  • How to adjust adhoc query when the database table changed.

    DearFreinds,
            I have created an adhoc Query , however after few days there was a requirement to remove some fields and change the length of some fields . Now the Adhoc query showing as to adjust , however when iam trying to adjust nothing is happening. Could any one let me know how to adjust with the table strucutre in the adhoc query.
    Regards
    madhu.

    Hi Sumit,
           Yes i have adjusted the database from se11 itself by going into utlity > adjust database . However i can still see the
    adhoc query -> infoset asking me when iam trying to go in change mode saying the database table has been changed do you want to adjust . 
    I have adjusted by going to more functions still there is no change. Please let me know what exactly i have to do.
    regards
    madhu

  • Table order in join, how?

    obiee generate sql like this
    select ... from ( select ... from T1, T2) d1 left outer join (select ... from T1, T3 ) d2 on d1.c1 = d2.c1
    in this case I need right outer join (becouse first select have less rows then second)
    or change like this
    select ... from ( select ... from T1, T3) d2 left outer join (select ... from T1, T2 ) d1 on d1.c1 = d2.c1
    is it possible?
    maybe in BMM or where else?

    elunin!,
    as per your subject line - "table order in join", I think specifying the driving table option looks pertinent. Thus in the bmm layer you have the option driving table, which might help.
    J
    -bifacts
    http://www.obinotes.com

  • How to adjust order quantity to match lot quantity

    Hello everyone.
    Is there any feature that adjust the ordered quantity to match sales/purchasing lot quantity automatically?
    (OM or PO)
    For example,
    Item A's sales lot quantity is 10.
    When customer ordered 3 Item A ( or User is ordering 3 Item A to the supplier )
    I expect the sales/purchasing order quantity will be adjust 10 automatically.
    Regards
    Kei Machida

    Hi Venkat,
    You can up date the price or quantity in the billing document based on the delivered material batch quality parameters.
    But for this you need to take ABAPer help.
    I hope this will help you,
    Regards,
    Murali.

  • Adjust posting order of new/modified entities in ADF BC

    Hi,
    I have any ADF application which has two tables:
    BUDGET
    BUDGET_ID: NUMBER(12) -- Which is a sequence from DB sequence BUDGET_SEQ
    BUDGET_DETAIL
    BUDGET_ID: NUMBER(12) -- Foreign key to BUDGET(BUDGET_ID)
    LINE: NUMBER(7) -- A sequential number based on the master with one based, for ex: BUDGET_ID/LINE may be 1234/1, 1234/2, 1234/3 ..., and 1235/1, 1235/2, 1235/3...
    CONSTRAINT BUDGET_DETAIL_UK UNIQUE (BUDGET_ID, LINE)
    In JDev 11.1.1.2.0, the Model project has 2 entity objects, 2 view objects, 1 association and 1 viewlink, they are BudgetEO, BudgetVO, BudgetDetailEO, BudgetVO, Budget_BudgetDetail_Assoc and Budget_BudgetDetail_ViewLink (based on the association) to access the BUDGET and BUDGET_DETAIL table.
    When we mark budget, we will create a row in BudgetVO and then create some rows in BudgetDetailVO. In the BudgetDetailVO, we always reorganize the "Line" attribute to be sequential after create new row and delete row. The code like the following:
    private void reorganizeLineNo() {
    RowSetIterator iter = this.createRowSetIterator(null);
    try {
    int idx = 1;
    while (iter.hasNext()) {
    Row row = iter.next();
    row.setAttribute("Line", new Number(idx++));
    } finally {
    iter.closeRowSetIterator();
    My problem is if we add/remove BudgetDetail(s) in the following sequence, it will violate DB constraint BUDGET_DETAIL_UK:
    1. Create bRow1 in BudgetVO
    2. Create bdRow1 in BudgetDetailVO under bRow1, here bdRow1.Line=1
    3. Commit. Everything works fine
    4. Set bRow1 as current row
    5. Add a new bdRow2 in BudgetDetailVO under bRow1, here bdRow2.Line=2
    6. Remove bdRow1, here will call reorganizeLineNo(), so bdRow2.Line=1 now.
    7. Commit, exception occurs for violating DB constraint BUDGET_DETAIL_UK.
    The SQL running in DB is in order of (presodo):
    1. INSERT INTO BUDGET (BUDGET_ID) VALUES (BUDGET_SEQ.nextval);
    2. INSERT INTO BUDGET_DETAIL (BUDGET_ID, LINE) VALUES (:TheBudgetId, 1);
    3. Commit
    4. INSERT INTO BUDGET_DETAIL(BUDGET_ID,LINE) VALUES (:TheBudgetId, 1); -- Violate BUDGET_DETAIL_UK
    5. DELETE FROM BUDGET_DETAIL WHERE BUDGET_ID=:TheBudgetId AND LINE=1
    6. Commit.
    How to adjust to posting order in ADF BC to post the DELETE in step 5 before the INSERT step 4?
    Many thanks!
    Regards,
    Thomas.

    This work flows screens for this kind of constrain violation. On solution would be to commit the operation after inserting line 2, and then deleting line 1.
    I think this is a poor design, because you will run in trouble if more the one user is working in your system.You have to edit a bunch of rows only you deleted one. It's never a good idea to have an editable pk or even a part of it.
    I would try to decouple the line number from the primary key all together. You could easily generate the line number when you show the lines (i.e. using an index of the iterator). This way you can use a sequence number as pk for the line item. The order of the line items is simply the order of the sequence numbers (which will never displayed to the user).
    Timo

  • How to do Performance tunning in OBIEE

    Hi All,
    We are using OBIEE 10.3.4 version on windows envorinment .In our OBIEE project we are using 9 reports my requriment is we need to do performance tunning for OBIEE side.For eace report accessing its taking around 80 sec.We need to decrease these accessing time,is there any possibility to access all the reports with less response time in OBIEE side.
    Could you anyone suggest how to do performance tunning in OBIEE side.
    Thanks,
    Vijay.

    Vijay,
    Plz refer
    http://www.business-intelligence-quotient.com/?p=119
    http://prolynxuk.com/blog/?p=173
    http://businessdecisionsystems.com/blog/?p=486
    Here is the section from the BIEE admin guide:
    =======================
    Usage Examples
    This section provides a few examples of how to use Oracle hints in conjunction with the Oracle BI Server. For more information about Oracle hints, refer to the Oracle SQL Reference documentation for the version of the Oracle server that you use.
    Index Hint
    The Index hint instructs the optimizer to scan a specified index rather than a table. The following hypothetical example explains how you would use the Index hint. You find queries against the ORDER_ITEMS table to be slow. You review the query optimizer's execution plan and find the FAST_INDEX index is not being used. You create an Index hint to force the optimizer to scan the FAST_INDEX index rather than the ORDER_ITEMS table. The syntax for the Index hint is index(table_name, index_name). To add this hint to the repository, navigate to the Administration Tool's Physical Table dialog box and type the following text in the Hint field:
    index(ORDER_ITEMS, FAST_INDEX)
    Leading Hint
    The Leading hint forces the optimizer to build the join order of a query with a specified table. The syntax for the Leading hint is leading(table_name). If you were creating a foreign key join between the Products table and the Sales Fact table and wanted to force the optimizer to begin the join with the Products table, you would navigate to the Administration Tool's Physical Foreign Key dialog box and type the following text in the Hint field:
    leading(Products)
    So, the table names "order_items" and "products" in the above documentation will not be the same after BIEE puts aliases on them.
    ============
    Hope this is useful..
    Edited by: Deepak Gupta on Aug 1, 2011 7:18 AM

  • External Table Authentication in OBIEE 11g

    Hi ,
    I have a security table, which contains userid,displayname,group . I have imported Security table in Physical Layer. I'm creating session variables based on condition.
    When am trying to logging into analytic s getting an error, invalid username and password . I'm using 11.1.1.6.0 version
    How to handle external table authentication in OBIEE 11g version.
    Regards,
    Malli

    Hi fiaz,
    That links talks about 10g version.
    Step1: We have imported a secutiry table in Physical layer.
    Step2: Creating a session variable by selecting initilazation block.
    Select user_name,group from security_table where user_id=':USER' and pwd=':password';
    step3: created DISPLAYNAME,GROUP & USER VARIABLES in edit target window
    After these modifications i was trying to logging with new user, which is there in security table.
    I am getting an error that is invalid user or password.
    Is there any other changes does it required here.
    Regards,
    Malli
    Edited by: user10675696 on Dec 26, 2012 9:39 PM

Maybe you are looking for