How to show grand total at bottom in Pivot view?

Hi All,
How to show the report Grand total at bottom in pivot table?Plz help.
Regards,
Vaishnavi

Hi ,
Thanks for the reply but My report structure is like below:
AAA,BBB,CCC,DDD,EEE,FFF,GGG,HHH & III my report columns.I have arranged those columns in measure & i have to calculate the variance against each column like below structure.As per the report here I have lto calculate variance for 4 columns like AAA,BBB,CCC,DDD & after that total of each..then again variance for EEE,FFF & their total.After that i have to show grand total of all from AAAA to FFF likewise for rest of fields.
Measures           variance
AAA(db column)          1
BBB(db column)          2
CCC(db column)     3      
DDD(db column
Total     6
EEE(db column)     4      
FFF(db column) 5
Total     9
Grand Total(AAA TO FFF)     15
GGG(db column)     6     
Total     6
Grand Total(AAA TO GGG) 21
III(db column)          
Grand Total(AAA TO III)     
How to do that?
Regards,
Sonal
Edited by: Sonal on Jan 11, 2012 9:06 AM
Edited by: Sonal on Jan 11, 2012 9:15 AM
Edited by: Sonal on Jan 11, 2012 9:17 AM

Similar Messages

  • How to show Grand total values in Chart view....

    Hi,
    I have a crazy req. like i need to show grand totals values also on the chart view along with the normal metrics.
    column Metric1 Metric2
    AAA 10 20
    BBB 30 15
    CCC 20 15
    TOTAL 60 50
    so here i need the values 60 and 50 also also to be displayed in a line graph
    cheers

    Pretty simple to achieve :)
    In your Pivot view, under Rows section where you have column dimensions like AAA,BBB etc...create a new calculated item say Grand Total with function as 'formula' and formula as sum(*). This will give you a new row with totals. Now Chart Pivoted Results and you are done.
    Hope answered

  • Grand Total in Rows of Pivot Table

    Hi,
    How to display Grand total in rows of pivot table.
    Thanks and Regards,
    Kiran

    Hi,
    Now i got your question.
    No, its not possible to add aggregation for the measures.
    Instead you need to create some two dummy dimension table and use them in the pivot table and hide them.
    NOTE- We need to have two dummy dimension tables because then only summation symbol would come for the first dimension.
    And so it will appear you are doing a summation on the measure column.
    Regards
    MuRam
    NOTE: Please mention if this resolved your problem/still facing and close the thread.

  • How to get Grand Total Text in ALV GRID

    Hi Folks,
    I am able to get the SUBTOTAL TEXT .....But i need...
    How to get Grand Total Text in ALV GRID Display...
    Can any one give a Solution for this...

    Hi Surendar,
    Check out this code.. this is showing Total Text in Toal line in the very first column.
    REPORT  zsales_ord_det_1                        .
    TABLES: ztable_10.
    TYPE-POOLS: slis.
    DATA: BEGIN OF it OCCURS 0,
    srno(6) type c,
    name LIKE ztable_10-name,
    age LIKE ztable_10-age,
    END OF it.
    DATA : BEGIN OF it_temp OCCURS 0,
    name LIKE ztable_10-name,
    age LIKE ztable_10-age,
    END OF it_temp.
    DATA: i_fieldcat  TYPE slis_t_fieldcat_alv,
          wa_fieldcat TYPE  slis_fieldcat_alv.
    DATA: v_repid LIKE sy-repid,
           i_index TYPE STANDARD TABLE OF i WITH HEADER LINE,
           gs_layout TYPE slis_layout_alv,
           gd_layout TYPE slis_layout_alv,
           i_sort TYPE STANDARD TABLE OF slis_sortinfo_alv,
           wa_sort TYPE slis_sortinfo_alv.
    START-OF-SELECTION.
      v_repid = sy-repid.
      SELECT * FROM ztable_10 INTO TABLE it_temp.
      LOOP AT it_temp .
        it-srno = 'Total'.
        it-name = it_temp-name.
        it-age = it_temp-age.
        APPEND  it.
      ENDLOOP.
    END-OF-SELECTION.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
       EXPORTING
         i_program_name               = v_repid
         i_internal_tabname           = 'IT'
      I_STRUCTURE_NAME             =
      I_CLIENT_NEVER_DISPLAY       = 'X'
         i_inclname                   = v_repid
      I_BYPASSING_BUFFER           =
      I_BUFFER_ACTIVE              =
        CHANGING
          ct_fieldcat                  = i_fieldcat[]
       EXCEPTIONS
         inconsistent_interface       = 1
         program_error                = 2
         OTHERS                       = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    wa_fieldcat-row_pos = 1.
    wa_fieldcat-col_pos = 1.
    wa_fieldcat-fieldname = 'SRNO'.
    wa_fieldcat-tabname = it.
    append wa_fieldcat to i_fieldcat.
      LOOP AT i_fieldcat INTO wa_fieldcat.
        IF wa_fieldcat-fieldname = 'AGE'.
          wa_fieldcat-do_sum = 'X'.
          MODIFY i_fieldcat FROM wa_fieldcat.
        ENDIF.
       IF wa_fieldcat-fieldname = 'SRNO'.
         Hide this field so that it can display it's content i.e.
            Total text in Subtotal level
        wa_fieldcat-tech = 'X'.
          wa_fieldcat-no_out = 'X'.
          MODIFY i_fieldcat FROM wa_fieldcat TRANSPORTING tech no_out.
       ENDIF.
      ENDLOOP.
    wa_sort-spos = 1.
    wa_sort-fieldname = 'SRNO'.
    wa_sort-up = 'X'.
    wa_sort-subtot = 'X'.
    APPEND wa_sort TO i_sort.
      gd_layout-no_totalline = 'X'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                       = ' '
         i_callback_program                        = v_repid
      I_CALLBACK_PF_STATUS_SET     = ' '
    i_callback_user_command                = 'USER_COMMAND'
      I_CALLBACK_TOP_OF_PAGE         = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE  = ' '
      I_CALLBACK_HTML_END_OF_LIST    = ' '
      I_STRUCTURE_NAME                       =
      I_BACKGROUND_ID                        = ' '
      I_GRID_TITLE                                  =
      I_GRID_SETTINGS                          =
         is_layout                                      = gd_layout
         it_fieldcat                                      = i_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
         it_sort                           = i_sort
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          t_outtab                          = it
       EXCEPTIONS
         program_error                     = 1
         OTHERS                            = 2
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    Regards,
    Seema

  • How to color Grand total column

    Hi,
    We got one requirement from our customer to show Grand Total column with RED color based on some condition.
    Could you please let me know is it possible to make it color. we are using obiee 11.1.1.6.0
    Thanks
    Anirban

    Hi,
    Thanks for your reply,
    According to the link Below
    http://gerardnico.com/wiki/dat/obiee/answer_xml,
    We can able to change color for Grand total through XML, but the example is in 10g, there is nothing call saw:totalValues in 11g Currently, may be it is replaced with saw:displayGrandTotal, I tried that option also but it is not working.
    Is there anything which we can do through xml, to achieve the above requirement?
    Thanks
    Anirban

  • How to get grand total in query designer

    Hi,
       Antbody know how to get the grand total after the  last row in query designer? I
    Thanks

    Hi,
    If we select the very first Characterstic in the rows section and set the Supress result rows as "never".
    That will show the overall result in the end of the report,
    In the query properties tab ,check for display properties of the result.That should be set to bottom.
    Hope this will work.
    Thanks
    Mukesh

  • How to find grand total

    Hi experts,
    I have one internal table containing 2 fields quantity and amount.In the output i want to show total quantity and total amount. How can i achive it..?
    something like this
    qty  amt
    1     10
    2     20
    3     30
    6     60
    reward guaranteed
    thanks
    Kaki

    hi asit
    iam not able to get the totals correctly....can u see this code....every thing is correct except grand totals..
    REPORT  YVFJAUD_BILLDET no standard page heading
            line-size 200
            line-count 65
            message-id Z1.
    *-- Table Declaration
    TABLES: ZFJAUD_BILL,RLGRAP.
    DATA: BEGIN OF T_BILL OCCURS 0,
            VBELN LIKE ZFJAUD_BILL-VBELN,   " Billin Doc number
            POSNR like ZFJAUD_BILL-POSNR,   " Billing item
            CHARG like ZFJAUD_BILL-CHARG,   " Batch Number
            FKDAT like ZFJAUD_BILL-FKDAT,   " Posting date
            FKART like ZFJAUD_BILL-FKART,   " Billing type
            KUNAG like ZFJAUD_BILL-KUNAG,   " Customer(Sold-to-party)
            MATNR like ZFJAUD_BILL-matnr,   " Material number
            FKIMG like ZFJAUD_BILL-FKIMG,   " Batch Quantity
            NETWR like ZFJAUD_BILL-NETWR,   " Amount
            WAERK like ZFJAUD_BILL-WAERK,   " Currency
            VERPR like ZFJAUD_BILL-VERPR,   " TP
            BNAME like ZFJAUD_BILL-BNAME,   " End customer
            AUGRU_AUFT like ZFJAUD_BILL-AUGRU_AUFT, "Order reason
          END OF T_BILL.
    select-options : s_vtweg for ZFJAUD_BILL-vtweg obligatory,
                     s_vkbur for ZFJAUD_BILL-vkbur,
                     s_kunag for ZFJAUD_BILL-kunag,
                     s_matnr for ZFJAUD_BILL-matnr,
                     s_prodh for ZFJAUD_BILL-prodh,
                     s_erdat for ZFJAUD_BILL-erdat obligatory,
                     s_werks for ZFJAUD_BILL-werks,
                     s_lgort for ZFJAUD_BILL-lgort.
    selection-screen begin of block blk1 with frame title text-002.
    parameters : p_file like rlgrap-filename
                              default 'C:\yvfjaud_billdet.xls'.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS : p_flag AS CHECKBOX DEFAULT ' '.
    selection-screen end of block blk1.
    START-OF-SELECTION.
      perform collect_data.
      perform display_data.
      if p_flag = 'X'.
        perform download_to_localpc.
      endif.
    TOP-OF-PAGE.
      perform set_page_header.
    *&      Form  collect_data
          text
    FORM collect_data .
      SELECT VBELN POSNR CHARG FKART KUNAG MATNR FKDAT
             FKIMG NETWR WAERK NETPR VERPR BNAME AUGRU_AUFT BNAME
             FROM ZFJAUD_BILL
             INTO CORRESPONDING FIELDS OF TABLE T_BILL
             WHERE
             vtweg IN s_vtweg AND
             vkbur IN s_vkbur AND
             kunag IN s_kunag AND
             matnr IN s_matnr AND
             prodh IN s_prodh AND
             erdat IN s_erdat AND
             werks IN s_werks AND
             lgort IN s_lgort.
    ENDFORM.                    "collect_data
    FORM download_to_localpc .
      call function 'WS_DOWNLOAD'
        EXPORTING
          filename = p_file
          filetype = 'DAT'
        TABLES
          data_tab = t_bill.
      if sy-subrc <> 0.
        message E000 with 'Download not successful'.
      endif.
    ENDFORM.                    " download_to_localpc
    FORM display_data .
      sort t_bill by vbeln.
      loop at t_bill.
        if t_bill-AUGRU_AUFT = '100' OR
           t_bill-AUGRU_AUFT = '101' OR
           t_bill-AUGRU_AUFT = '102'.
          t_bill-FKIMG = '0.00'.
        endif.
        write :/1  t_bill-VBELN ,
                15 t_bill-POSNR,
                25 t_bill-CHARG,
                40 t_bill-FKDAT,
                55 t_bill-FKART,
                70 t_bill-KUNAG,
                85 t_bill-matnr,
                100 t_bill-FKIMG,
                115 t_bill-NETWR,
                140 t_bill-WAERK,
                145 t_bill-VERPR,
                165 t_bill-BNAME.
      endloop.
    data: line line like t_bill occurs 0 with header line.
      loop at t_bill into line.
        write:/ line-FKIMG,line-netwr.
        AT END OF FKIMG.
          SUM.
          ULINE.
          WRITE: / line-FKIMG, line-netwr.
          SKIP.
        ENDAT.
        AT LAST.
          SUM.
          ULINE.
          WRITE: / line-FKIMG, line-netwr.
        ENDAT.
      endloop.
    ENDFORM.                    " display_data
    FORM set_page_header .
      call function 'Z_REPORT_TITLE'
        EXPORTING
          line_size       = sy-linsz
          sy_title        = 'Billing Details with Cost'
          uline           = 'X'
          first_page_only = ' '.
      write :1(15)  'Billing Doc'        color col_heading,
             15(15) 'Item'               color col_heading,
             25(15) 'Batch'              color col_heading,
             40(15) 'Posting Date'       color col_heading,
             55(15) 'Billing Type'       color col_heading,
             70(15) 'Sold-to-party'      color col_heading,
             85(30)  'Material'          color col_heading,
             110(15) 'Qty'               color col_heading,
             125(15) 'Amount'            color col_heading,
             140(15) 'Currency'          color col_heading,
             155(15) 'TP'                color col_heading,
             165(15) 'End Customer'      color col_heading.
    ENDFORM.                    " set_page_header

  • Obiee 11G - Show grand total in chart

    I have three measures in my table.
    Measure 1 - Rolling balance from the current and previous month.
    Measure 2 - PeriodRolling revenue for the last three months including current month
    Measure 3 - Calculation using measure 1 and measure 2 and the number of  days.
    I have created all three measures in the RPD.
    The table is by state. So it could be Texas, New York, Illinois and so on.
    Month
    State
    Measure 1
    Measure 2
    Measure 3
    1
    Texas
    17565
    9898989
    45
    1
    New York
    97848
    8748575
    43
    2
    Texas
    85768
    8734874
    33
    2
    New york
    94855
    3234442
    23
    The chart shows the trend of Measure 3 by time for each state. I need a line on the chart to show the total by month. Do I have to create a sum() formula in the RPD? Appreciate any ideas that you can throw at me.

    I created a new group in the selection step and included all the states in it. That seemed to work. The Graph shows a line for grand total. Thank you for your help.
    The requirement is to create a line chart. I don't think a bar would work as well here.

  • OBIEE 11g - How to display Grand Total in graphs

    hi ,
          I am using obiee 11.1.1.6 version . In a report I have a requirement to display the grand total (present in the table) to be shown in the graph also . Kindly help.
    Regards,
    Niv

    Hi Niv,
    One quick question here.How are you creating Grand Total?
    I have created using grand total by row summing and inserting that value in the Group By Function.
    Attached the screen shot for your reference.
    GT - Download - 4shared
    Mark if helps
    Thanks,

  • How to set Grand Total of a Measure when its aggregation rule is Max in Logical Layer

    Hi
    I have a Measure Column (Budget) and in Logical layer the aggregation rule is set as (Max) which looks like Max(Budget). But now it is included in the report and when my client is trying to see its grand total, it is giving the Max Budget figure of the report rather than giving the total sum(grand total).
    Kindly share some ideas in achieving the grand total without disturbing the actual aggregation of the measure.

    Thank You for your reply.
    In my case i don't have a problem with aggregation for Budget Measure(max(Fact_XXKC_SHIP_TO_BUDGET_CAT_F.SALESREP_BUDGET_YTD)). This is the aggregation rule applied on the Salesrep Budget YTD.
    Now i created a report with columns
    Salesrepresntative(Dimension),, Sales Invoices(Measure1),, SALESREP_BUDGET_YTD(Measure 2).
    In the above report the values are perfect, but when we used Grand total option at ROW level in table view, the grand total of Measure1 is cumulative of all the rows, but the Grand total of SALESREP_BUDGET_YTD (measure2) is the max of all the columns.
    What i require is the Grand total of SALESREP_BUDGET_YTD (measure 2) should be cumulative of all the columns.
    I have shared my SQL query, kindly verify it and share any idea.
    select sum(case when T97600.W_XACT_TYPE_CODE = 'Chargeback' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE end ) as c1,
      sum(case when T97600.W_XACT_TYPE_CODE = 'Credit Memo' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE end ) as c2,
      sum(case when T97600.W_XACT_TYPE_CODE = 'Debit Memo' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE end ) as c3,
      sum(case when T97600.W_XACT_TYPE_CODE = 'Standard Invoice' then T93664.NET_AMT * T93664.GLOBAL1_EXCHANGE_RATE when T97600.W_XACT_TYPE_CODE = 'Invoice Cancellation' then T93664.NET_AMT * -1 * T93664.GLOBAL1_EXCHANGE_RATE end ) as c4,
      T315597.XXKC_RESOURCE_NAME as c5
      from
      W_CUSTOMER_LOC_USE_D T315597 /* Dim_W_CUSTOMER_LOC_USE_D_Status */ ,
      W_SALES_INVOICE_LINE_F T93664 /* Fact_W_SALES_INVOICE_LINE_F */ ,
      W_XACT_TYPE_D T97600 /* Dim_W_XACT_TYPE_D_Sales_Ivclns */
      where ( T93664.XACT_TYPE_WID = T97600.ROW_WID and T93664.DELETE_FLG = 'N' and T93664.XX_SHIP_TO_LOC_USE_WID = T315597.ROW_WID )
      group by T315597.XXKC_RESOURCE_NAME
      ) D1 full outer join (select max(T313184.SALESREP_BUDGET_YTD) as c1,
      T315597.XXKC_RESOURCE_NAME as c2
      from
      W_CUSTOMER_LOC_USE_D T315597 /* Dim_W_CUSTOMER_LOC_USE_D_Status */ ,
      XXKC_SHIP_TO_BUDGET_CAT_F T313184 /* Fact_XXKC_SHIP_TO_BUDGET_CAT_F */
      where ( T313184.SITE_USE_WID = T315597.ROW_WID )
      group by T315597.XXKC_RESOURCE_NAME

  • How to display grand total only on the last page of my report

    Hello
    I need to display the grand total amount of the invoice only on the last page of every report. If the report has 1 page then the grand total will be displayed on the 1st page. If the report has 2 pages then a subtotal will be displayed on the 1st page adding up all the amounts on page 1 only, and the grand total will be displayed on the 2nd page, adding up all the amounts of page 1 and 2. If the report has 3 pages then the a subtotal will be displayed on page 1 adding up all the amounts of page 1, and another subtotal on page 2 adding up all the amounts of page 2, and the grand total are displayed on page 3 adding up the amounts of every page.
    supplier amount
    xx 100
    yy 100
    subtotal 200
    page 1 of 2 --here i need to display only the total amounts of page 1
    supplier amount
    subtotal brought forward 200 --then i need to bring total of page 1 over to page 2
    qq 300
    zz 300
    total 800 --here i have reached the end of the report and  
    need to display the grand total
    page 2 of 2
    --Currently i am displaying this on my report
    supplier amount
    xx 100
    yy 100
    total 800 --this one gives the problem cause it displays the grand total
    ---------- on page 1 of 2 even before you can see the amounts on the
    next pages
    page 1 of 2
    supplier amount
    qq 300
    zz 300
    total 800

    put the grand total in a frame and set it to print on the last page of the enclosing object.

  • How to get grand total text  in the last column of reuse_alv_grid_display ?

    Hi,
    Experts,
    I am able to get the subtotal text but i am not able to get the grand total text please pass some code or idea on it.
    ex:
         2510    gopi       10
         2511   gopi        20
    subtotal                 30
         2521    anand    20
         2522    anand    10
        2523     anand    50
    subtotal                 80
         2512   vikram     30
    subtotal                 30
    (blank----)              140.
    Here i want to get text as 'COMPANY TOTAL'. by using REUSE_ALV_GRID_DISPLAY FM.
    Thanks,
    Shabeer ahmed.

    Hi,
      you can get the 'COMPANY TOTAL' by using the following code:
      LOOP AT i_main INTO w_main.*   Storing the Total text need to be displayed in
      ALV
        w_final-total      = 'COMPANY TOTAL'.
        w_final-field1   = w_main-field1.
        w_final-field2    = w_main-field2.   
        w_final-field3   = w_main-field3 .  
       APPEND w_final TO i_final.  ENDLOOP.
    Regards,
      Santosh

  • How to show the total in group footer in group header?

    Hello,
    I am having difficulties while showing the total of a group footer in the group header. The total in the group footer is correct, but when i am placing the formula in the header it is giving me 0.
    I am having 2 formulas to get the total which i placed in the footer:
    1.
    whileprintingrecords;
    numbervar sumpctx := sumpctx + {@Sum OB};
    2.
    whileprintingrecords;
    global numbervar sumpctx;
    numbervar DispSales;
    DispSales := sumpctx;
    sumpctx := 0;
    DispSales;
    now, I want to add the 2 formula in the header, but it is giving me 0 value, But in the group footer it is showing the correct value.
    I tried to do:
    Sum ({@Sum OB}) and it is giving that the field can not be summarized.
    The group Name is @Entity which is grouped by.
    @Entity :
    if {Customer.NAME}="NONE" THEN
    " OB"
    ELSE {Customer.NAME}
    Thanks in advance for yopur help.
    Regards

    Hi,
    What i was trying to say there is a hierarchy in report design and records are processed in that way.
    Report header/footer - only once
    Page header/footer -once in a page
    detail -n no of times ,n-no of rows of data
    First report header will be processed,then page header n detail,after that report and page footer.
    If u insert a group,then the order will be-
    report header,page header,group header,detail,group footer,detail,report and page footer.
    When u r in group header,all the records are not processed,that results the sum as zero.
    But when u create a formula,it calculates the sum first and then u put it there.
    I hope this time it will be helpful for u.
    Regards,
    Misra P.

  • Grand Total Not working on Materialized view based table ??

    Hi all,
    I have a complex report report by using sum and decode function. I precalculated my requirment in database and then create a materialized view based on my sql statement. I import this view in physical and BM model and its results very fine and efficient. But the problem create when I implement Grand Total on my report in table view it did'nt work means (Grand Total is not working on this MV based table) Any idea why ??
    any reply would by higly appriciated.
    Regards

    Hi Zishan,
    Check the Aggregation Rule and set it to sum in the table view.
    That is go to the "edit formula" tab of the column for which you want grand total and set that to sum.
    Hope this will help.
    Thanks
    Ashok

  • How to show description instead of code on a view page?

    I'm new so this is probably basic, but I didn't find an answer when I tried searching.
    I'm using JDeveloper 10.1.3.3, ADF Business Components, ADF Faces.
    In my application, I have both view pages and edit pages (some users will only have read access). Many of the fields will be populated from LOV and the code will be stored in the database.
    The edit page is no problem - I have read-only VO for the LOV and I use af:selectOneChoice and display the description. But how do I display the same description on the view page? By defaiult the code is displayed when the entity based VO is dropped as a ADF Read Only Form.
    I assume I need to do something in the BC, but I'm not sure how to get values from read-only VO into my entity based VO. Or do I have to make all my VO for LOVs entity based even though they will never be edited? Or is there something I can do in the view to get the description instead of the code?
    Thank you for your help.
    Karen Helt
    Sr IT Programmer/Analysit
    Hach Company

    So if I understand you properly, I need to create EOs for all my list of values (which are based on views of Oracle apps tables) and base my VO on those EOs. And then I setup associations between these EOs and the Item EO. Then I include the these EOs in my Items VO and add the description attributes to my list of attributes. I had done this for the list of users, but for the views of Oracle I had just created read only VO. Sounds like that won't work if I want to display the description. I know what to do - I guess I was hoping there was a way to use the read only VO.
    Thanks
    Karen

Maybe you are looking for

  • Can i get my money back for a bad app

    I had bought a couple of apps right when I got my mac but lots of them were very useless and dumb. Is there a way to get a refund? Thanks

  • Change from Parameter to Select-options.

    Hi All, Requirement is to change the existing program. One of my requirement is to change parameter(P_VKORG) to Select-options(S_VKORG). I mean  earlier we have only one Slaes Organization, now we have got to use multiple Sales organizations. For thi

  • MS SQL Server and JDBC Connection

    I am doing on MS SQL Server 2000 with JDBC for RMI. I download driver from the Microsoft site, and used a connection statement like con = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;user=sa;password="); unfortunately the connection d

  • Please Help mee!!

    Friends, When i tried to establish HS connectivity from oracle 8i with MSaccess i get one error. ERROR at line 1: ORA-28509: unable to establish a connection to non-Oracle system ORA-02063: preceding line from LINK1 The steps i did, 1. Create initmsa

  • Communication Channel Schedule

    Hi All, If schedule a async JDBC sender channel once in a day.It will trigger once? or it will pick data again and again after the schedule time? Please confirm. Thanks, Arthita