Serial Number Column in analysis - obiee 11g

Hi,
How can I create a colum for Serial Number based on the rows(It should give 1,2,3,4...n no of rows) which generated in the report. Do I need to create a logical column in Admin tool..? or need to do something else..?
Thanks

@Aravind.
i did the same but if there is any filter apllied in the report because of it some records are getting filtered in that case s.no will not be (1,2,4,6,7,8) in serial how to overcome this scenario???
Thanks In Advance

Similar Messages

  • Serial Number Column in BI Report

    Hi,
    Can we add 'Serial Number Column' in BI report?
    Regards,
    Anoop Sahu

    Thanks for your response.
    I am not sure if I was clear before. I actully want to add a new column which will give sequential number to rows - 1, 2, 3, 4.... If the user changes drill down, it should automaticlly repopulate as 1, 2, 3, 4. I do not have any infoobject called 'Serial Number' in my cube.
    Regards,
    Anoop Sahu

  • Project Serial Number column in Project Server 2013 (PWA)

    Hi All,
    Whenever any new projects are created on Project Server 2013, they are arranged automatically by Alphabetical order. So i would like to know or need support through which i can create serial number column in Project Center so that projects are aligned. as
    per numbers.
    Kindly help..

    Hi,
    It is actually 2 questions. 
    First you want to create a unique ID for projects? Here is an excellent
    blog about this subject.
    Then you want to sort projects along a number? It could be a custom number field or the unique ID above. You just have to go to the server settings, manage views and go to the "sort by" section and select your number field.
    Note that the field used to sort the project center view must be in the view to be used as a sorting criteria.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Serial number column

    hi gurus,
                I need one more column for serial number how to include that in below codings, can someone help me,
    data : number type i.
    data : begin of wa_kna1,
      kunnr type kunnr,
      name1 type name1,
      end of wa_kna1,
       it_kna1 like table of wa_kna1.
      data : begin of wa_table,
      number type i,
      kunnr type kunnr,
      name1 type name1,
      end of wa_table,
      it_table like table of wa_table.
    select kunnr name1 into table it_kna1 from kna1 up to 12 rows.
    loop at it_kna1 into wa_kna1.
    number = number + 1.
    wa_table-kunnr = wa_kna1-kunnr.
    wa_table-name1 = wa_kna1-name1.
    *modify it_table from wa_table.
    append wa_table to it_table.
    clear : wa_table.
    endloop.
    loop at it_table into wa_table.
      write :
      / wa_table-kunnr,
       wa_table-name1,
       wa_table-number.
      endloop.
    Thanks and Regards,
    Thirukumaran. R

    Hi Thirukumaran,
    You can write the code in this way:
    DATA : BEGIN OF wa_kna1,
                  kunnr type kunnr,
                  name1 type name1,
               END OF wa_kna1,
               it_kna1 TYPE STANDARD TABLE OF wa_kna1.
    DATA : BEGIN OF wa_table,
                  number type i,
                  kunnr type kunnr,
                  name1 type name1,
                END OF wa_table,
                it_table TYPE STANDARD TABLE OF wa_table.
    DATA: Ser_Num Type I.
    START-OF-SELECTION.
      SELECT kunnr name1 into table it_kna1 from kna1 up to 12 rows.
      LOOP AT it_kna1 INTO wa_kna1.
         Ser_num = Ser_Num + 1.
         wa_table-number = ser_num.
         wa_table-kunnr    = wa_kna1-kunnr.
         wa_table-name1  = wa_kna1-name1.
         append wa_table to it_table.
      endloop.
      loop at it_table into wa_table.
        write :
             / wa_table-kunnr,
               wa_table-name1,
               wa_table-number.
      endloop.

  • Serial number column in Jtable

    Apologies for this distraction.
    I read at this forum about a year ago how to add a s/n column in Jtable such that all the nos are automatically updated/adjusted when a row is added/deleted. the count starts from the top down serially and unaffected by sorting.
    pls help!

    thanks a million BaltimoreJohn and especially camickr whose solutions to problems have been most helpful. applying the referenced post, i worked around the problem by resetting the values of the column having the serial number, based on table rowCount every time there is an operation on it(deleting, addition etc)

  • To add serial number column

    Dear Experts,
                        I herewith attachedc my  codings i waht to add serial number how to do that i have done something but it is giving all zero values.,.,.,
    *& Report  ZAPPRAISAL_LAG
    REPORT  ZAPPRAISAL.
    *Declaration of type-pools
    TYPE-POOLS SLIS.
    *Declaration of tables
    TABLES : PA0025, PA0001.
    DATA : LV_VALUE TYPE I.
    *Declaration of work area
    DATA: BEGIN OF WA_PA0025,
            PERNR TYPE PA0025-PERNR,
            ENDDA TYPE PA0025-ENDDA,
            BEGDA TYPE PA0025-BEGDA,
            AEDTM TYPE PA0025-AEDTM,
            BWNAM TYPE PA0025-BWNAM,
            DAT25 TYPE PA0025-DAT25,
            GRPNR TYPE PA0025-GRPNR,
            ENAME TYPE EMNAM,
            BUKRS TYPE PA0001-BUKRS,
            number type i,
          END OF WA_PA0025,
           WA_FCAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
           wa_sort  TYPE SLIS_SORTINFO_ALV,
           WA_EVENTS TYPE SLIS_T_EVENT WITH HEADER LINE.
    DATA: row_number type i.
    *Declaration of internal tables
    DATA : IT_PA0025 LIKE TABLE OF WA_PA0025,
           IT_FCAT TYPE SLIS_T_FIELDCAT_ALV,
           I_SORT  TYPE STANDARD TABLE OF SLIS_SORTINFO_ALV,
           IT_EVENTS TYPE SLIS_T_EVENT.
    *selection screen
    SELECTION-SCREEN BEGIN OF BLOCK FF WITH FRAME TITLE TEXT-001.
    *SELECT-OPTIONS S_DATE FOR PA0025-DAT25.
    parameters : p_date type pa0025-dat25.
    parameters : p_date1 type pa0025-dat25.
    SELECT-OPTIONS S_BUKRS FOR PA0001-BUKRS NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK FF.
    *ALV EVENTS
    WA_EVENTS-FORM    = 'HEADER'.
    WA_EVENTS-NAME    = 'TOP_OF_PAGE'.
    APPEND WA_EVENTS TO IT_EVENTS.
    CLEAR : WA_EVENTS.
    *start-of-selection event.
    START-OF-SELECTION.
      SELECT DISTINCT
            A~PERNR
            A~ENDDA
            A~BEGDA
            A~AEDTM
            A~BWNAM
            A~DAT25
            A~GRPNR
            B~ENAME
            B~BUKRS
            INTO TABLE IT_PA0025
            FROM PA0025 AS A
            INNER JOIN PA0001 AS B
            ON BPERNR = APERNR
            WHERE A~DAT25
           between p_date and p_date1
           AND B~BUKRS IN S_BUKRS.
      SORT IT_PA0025 by pernr.
      DESCRIBE TABLE IT_PA0025 LINES LV_VALUE.
    loop at it_pa0025 into wa_pa0025.
    row_number = row_number + 1 .
    WA_PA0025-number   =  row_number.
    *append wa_pa0025 to IT_PA0025.
    endloop.
      perform fcat using '1'  'NUMBER' 'S.no' '12' '' 'C410' 'C'.
      PERFORM FCAT USING '2'  'PERNR' 'Personnel number'    '16'  'X' 'C410' 'C'.
      PERFORM FCAT USING '3'  'ENAME' 'Employee name'       '26'  ''  '' ''.
      PERFORM FCAT USING '4'  'BUKRS' 'Company code'        '15'  ''  '' 'C'.
      PERFORM FCAT USING '5'  'BEGDA' 'Start date'          '11'  ''  '' ''.
      PERFORM FCAT USING '6'  'ENDDA' 'End date'            '10'  ''  '' ''.
      PERFORM FCAT USING '7'  'AEDTM' 'Changed date'        '13'  ''  '' ''.
      PERFORM FCAT USING '8'  'BWNAM' 'Appraiser'           '18'  ''  '' ''.
      PERFORM FCAT USING '9'  'DAT25' 'Appraised date'      '15'  ''  '' ''.
    CLEAR wa_sort.
    wa_sort-fieldname = 'PERNR'.
    wa_sort-up = 'X'.
    APPEND wa_sort TO i_sort.
      CLEAR wa_sort.
      wa_sort-FIELDNAME = 'DAT25'.
      wa_sort-UP = 'X'.
      APPEND wa_sort TO I_SORT.
      CLEAR wa_sort.
      wa_sort-FIELDNAME = 'BUKRS'.
      wa_sort-UP = 'X'.
      APPEND wa_sort TO I_SORT.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM      = SY-CPROG
          I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
          IT_SORT                 = I_SORT
          I_GRID_TITLE            = 'Report'
          IT_FIELDCAT             = IT_FCAT
          IT_EVENTS               = IT_EVENTS
        TABLES
          T_OUTTAB                = IT_PA0025.
    *&      Form  USER_COMMAND
          text
    -->  p1        text
    <--  p2        text
    FORM USER_COMMAND USING U_UCOMM TYPE SY-UCOMM
                            US_SELF_FIELD TYPE SLIS_SELFIELD.
      CASE U_UCOMM.
        WHEN '&IC1'.
          READ TABLE IT_PA0025 INTO WA_PA0025 INDEX US_SELF_FIELD-TABINDEX.
          CASE US_SELF_FIELD-FIELDNAME.
            WHEN 'PERNR'.
              SET PARAMETER ID : 'PER' FIELD WA_PA0025-PERNR.
              CALL TRANSACTION 'PA30'.
          ENDCASE.
      ENDCASE.
    ENDFORM.                    " USER_COMMAND
    FORM FCAT  USING    FP_COL_POS
                        FP_FIELDNAME
                        FP_SELTXT_M
                        FP_OUTPOUTLEN
                        FP_HOTSPOT
                        FP_EMPHASIZE
                        FP_JUST.
      WA_FCAT-COL_POS    =  FP_COL_POS.
      WA_FCAT-FIELDNAME  = FP_FIELDNAME.
      WA_FCAT-SELTEXT_M  = FP_SELTXT_M.
      WA_FCAT-OUTPUTLEN  = FP_OUTPOUTLEN.
      WA_FCAT-HOTSPOT    = FP_HOTSPOT.
      WA_FCAT-EMPHASIZE  = FP_EMPHASIZE.
      WA_FCAT-JUST       = FP_JUST.
      APPEND WA_FCAT TO IT_FCAT.
      CLEAR : WA_FCAT.
    ENDFORM.                    " FCAT
    *&      Form  HEADER
          text
    -->  p1        text
    <--  p2        text
    FORM HEADER .                                               "#EC CALLED
      DATA :     IT_HEADER TYPE SLIS_T_LISTHEADER,
                 WA_HEADER LIKE LINE OF IT_HEADER.
      WA_HEADER-TYP  = 'H'.
      WA_HEADER-INFO = TEXT-006.
      APPEND WA_HEADER TO IT_HEADER.
      CLEAR WA_HEADER.
      WA_HEADER-TYP  = 'S'.
      WA_HEADER-KEY  = TEXT-007.
      CONCATENATE  SY-DATUM+6(2) '.'
                   SY-DATUM+4(2) '.'
                   SY-DATUM(4) INTO WA_HEADER-INFO.   "Current date
      APPEND WA_HEADER TO IT_HEADER.
      CLEAR WA_HEADER.
      WA_HEADER-TYP  = 'S'.
      WA_HEADER-KEY = TEXT-012.
      MOVE LV_VALUE TO WA_HEADER-INFO.
      APPEND WA_HEADER TO IT_HEADER.
      CLEAR WA_HEADER.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = IT_HEADER.
      CLEAR : IT_HEADER[], WA_HEADER.
    ENDFORM.                    " HEADER
    Thanks and Regards,
    Thirukumaran. R

    hi
    LOOP AT it_pa0025 INTO wa_pa0025.
        row_number = row_number + 1 .
        wa_pa0025-number = row_number.
    " Add this statement here
        MODIFY it_pa0025 INDEX sy-tabix FROM wa_pa0025 TRANSPORTING number.
      ENDLOOP.
    Thanks & Regards

  • How to add two columns in criteria(OBIEE 11g)

    Hi,
    I am trying to add two columns in a criteria in obiee
    *"Fact - OLB Processed Invoices"."Invoice Amount - Functional Currency"__"Fact - OLB Processed Invoices"."AR Tax Amount - Invoice Currency"
    but the problem is :-
    The first column have 500000000 and the second column contains NULL values the actual table. I think this might be the problem when I am trying to add them it is giving no output.
    just a blank box.
    Can any one tell me how can we add columns in this condition.
    Thank to one and all.

    Try IFNULL(expr, value)
    for other column
    "Fact - OLB Processed Invoices"."Invoice Amount - Functional Currency"+IFNULL("Fact - OLB Processed Invoices"."AR Tax Amount - Invoice Currency",0)
    Edited by: Srini VEERAVALLI on Mar 20, 2013 10:02 AM

  • Multiple column selection in OBIEE 11g

    I have multiple checkboxes each checkbox represent one of measure of my fact table
    Now user wants to select the multiple check boxes to generate a dashboard report on the basis of these selected check boxes.
    Report only show the selected measures how I can do that in OBIEE 11.1.1.5
    Actually I want to generate graph on the basis of selected measures.
    I have created all columns in my report but I show the data only for selected columns when I draw the graph
    All columns’ legend are shown I want to exclude all columns that are not selected so that their legends are also not shown in graph.
    How I can do that.

    user13559093 wrote:
    Hi david,
    I read your post, the one thing i couldn't understand is about dummy column and hiding.
    you told i can a new column and hide that column, but still i could't figured it out.
    so, if possible can you explain me in more detail.
    your help is appreciated.
    Thanks,
    Rahul@Amith, Venkat's blog is not what the user is looking for. It doesn't apply.
    Rahul, did you try what I asked? What specific part of what step did you not know what to do. My steps were detailed so I'm not sure what to "explain" unless you tell me exactly what you didn't get. If you didn't do anything and just want me to explain it again, then I say, do it first. The step-by-step instructions can be followed without "knowing what it's going to do," but when you do it, you'll see what I mean.
    Remember, this is a free forum. You are not paying me to help you so you need to show that you are doing your homework by testing what I say to do. So go back and read the post again and actually do the steps. If you don't know how to do a specifc step, then ask about that.
    This method will solve your requirement, put effort into applying it.

  • Coloring value with condition in Analysis OBIEE 11g

    Dear Gurus,
    I have pivot analysis, which show date and sales.
    I want to highlight the value of the date if it holiday.
    I want to coloring red the holiday date.
    How to do that?
    Thank you before
    Regards
    JOE

    Hi,
    Here I have one question,
    How you know wether which day is holiday in your time dim? do you have any condition on that?
    If you know that just go-->time date column properties-->click --> condtinoal tab--> apply filter condition and apply the color as you like.
    Hope this help's
    Thanks
    satya

  • Sticky Notes in Analysis OBIEE 11g

    Hi All,
    I have an analysis formed like calendar(I use pivot).
    I would like to inform the holiday which using red value using some notes.
    So if I select Sales in Dec 2011, have 25 dec as holiday (red value).
    I want to add inform about it using some notes below the analysis. But the notes must be flexible depend on the filter month year.
    Is there any notes function for it?
    Thank You before
    Regards
    JOE

    Do you have list of holidays in separate table or as column? if you have use case condition if matches format the color.
    Let us know what you have that would be helpful to give suggestions

  • Hiding a report based on Action Link on report column values in OBIEE 11g

    Hi All,
    I have two Daashboard pages. In Page1, I have Report1.
    In  Page2, I have Report 2  and Report 3  in different sections.
    My requirement is, to create Action Link on two columns in Report1. Column1 should be navigated to Report2  in Dashboard Page2 and Column2 should be navigated to Report3 in the same Dashboard Page.
    Is it possible to use variables to hide Report2 when we click on Column1 and Report3 when we click on Column2.
    If yes, how to achieve this requirement?
    Please help me out.
    Thanks in Advance.

    Please see the following thread - I just implemented exactly what you are looking for. The bad thing is that it does require adding an additional column to all of your reports.
    https://community.oracle.com/thread/2483725
    Thanks,
    ~KKT~

  • Issue Action links,Column sorting in OBIEE(11g) 11.1.1.7.0

    Hello everyone,
    I want to provide the feature column sorting to my users but i dont want to provide any feature to users when they click on right mouse button.When we click on right mouse in action link column value it is giving the "action links","include/exclude columns" options etc.
    I disabled the do not display the action link report name in the column properties.
    Also disable the  include/exclude columns options in the interaction XYZ properties of the view.
    But still i am not able to understand why these links are coming when i run the report from the dashboard.
    Please help me out here.
    thanks,
    prassu

    Hi Timo,
    I am using data control web services to get these attributes on to the jspx page. The table has the value property which is binding to the iterator( #{bindings.SUMMARY_LINES_ITEM.collectionModel}).
    The table has various coulmns like order no, status, request and so on..where Order no and status are converted to a cmd link which navigates to another page on a query.
    I don't understand how setting sorting to true in one of the columns can make it not found in the iterator! And I get the errors only if sorting is done first before querying(clicking on one of the values in a column to navigate to another page).
    Thanks,
    Sue

  • Column specific filter Obiee 11g

    Hi all,
    I am trying to filter a column from edit formula tab. It is not a measure column. I am getting an error
    "the filter function requires at least one measure attribute in its first argument. select a measure or deselect all text to insert a new filter expression".
    Please help me out from this issue...
    Thanks

    Aswin,
    If you are trying to filter a column by a predicate the best way to do that is to use the standard column filter.
    You access that by clicking the little icon to the right of the column in the criteria tab and then select filter.
    The other filter is there for filtering an expression. If you need help in using the filter expression within the Edit Formula tab then click the help button on that tab to see more detailed information on how to use the arguments of that function.
    Please award points is this is helpful or the correct answer.

  • Need to make serial number in rdf

    need to make serial number column in report builder
    i tried to put rownum as column in the select statement but data wasnot fetched probably

    user513954 wrote:
    need to make serial number column in report builder
    i tried to put rownum as column in the select statement but data wasnot fetched probablyWhat do you mean by "was not fetched properly"? Why did not rownum work for you? Do you have the corresponding SQL?
    Cheers
    Sarma.

  • Serial number in the database

    Hi,
    We are running Dell Optiplex GX 270 & 280 workstations and have all
    ZfD401 features running in our networks
    In the inventroy scan configuration, it scans the serial number as well
    as the asset tag number from BIOS.
    I can see these infomation in the workstation object - zenworks
    inventory - min info.
    However, if I exporting the inventory database to a CSV file and open it
    in Excel. The serial number column is empty. None of the 1200
    workstation records have the serial number exported.
    Any idea?
    Thanks,
    Louie

    Thanks Heaps.
    > Make a data export with -hardware-bios-serial number
    >
    > Jan
    >
    > <[email protected]> wrote in message
    > news:jJUwd.5345$[email protected]..
    > > Hi,
    > >
    > > We are running Dell Optiplex GX 270 & 280 workstations and have all
    > > ZfD401 features running in our networks
    > >
    > > In the inventroy scan configuration, it scans the serial number as well
    > > as the asset tag number from BIOS.
    > >
    > > I can see these infomation in the workstation object - zenworks
    > > inventory - min info.
    > >
    > > However, if I exporting the inventory database to a CSV file and open
    it
    > > in Excel. The serial number column is empty. None of the 1200
    > > workstation records have the serial number exported.
    > >
    > > Any idea?
    > >
    > > Thanks,
    > > Louie
    > >
    >
    >

Maybe you are looking for

  • Cannot connect Wii, TV,

    Today, three of our internet-enabled devices, Wii, TV, and BD player, quit connecting to the internet.  Our computers (macbooks and an iMac), iPads, and iPhones connect just fine.  The iMac and the three internet enabled devices use a wired connectio

  • Writing data to a foreign database-SQLServer using a stored procedure

    Does anyone know if I can Insert data into a SQLServer table which resides out on the WAN using a stored procedure which resides in my Oracle database?

  • Cannot register Analytic Services with Shared Services

    Hello, I have installed the following products of System 9.3: - License server and Shared services (everything went OK, I can connect to User Management Console using admin/password ); - Analytic Services; Using Configuration Utlity I activated Analy

  • Text field with promp msg only when the field is empty

    I want to make a TextField with prompt message but The problem with google code was that the prompt msg is shown only when The textField is not clicked, I want to show the prompt msg even when the text field is clicked,when I type a letter inside the

  • Hwo can I insert objects in a transport request automaticly

    Hi all, I coded a program which changes some objects descriptions, it's working fine. But the problem is that I can't transport these modifications to another system without putting the objects in a transport request. So, How can I code that? Can som