Security report SEC_LIST_MBR is not displaying users list

Hi,
When we run security report SEC_LIST_MBR. It is not displaying list of users instead it is just displaying user id who ran the report all other columns Full Name, Teams, Task Profile and Member access are blank.
Please suggest what is causing it not to display list of users.
In database we loaded the following page  http://ReportServer/reports and ran report SEC_LIST_MBR. It also gave same result - one row with user id data only.
Regards,
Rajesh

We found the root cause it was because table "task" does not have records in APPSERVER Database.
Once we updated task table. Security report SEC_LIST_MBR is displaying results correctly.
Regards,
Rajesh

Similar Messages

  • Intel MacBooks not displaying users list from WGM

    Hello folks,
    I have a situation where all my Intel iMacs connect to my OD server fine, pulls down the WGM user lists and logs in fine. However I also have about 8 Intel MacBooks that are meant to connect wirelessly to this same server. For some reason I can not figure the MacBooks, connect fine, I can even bind them but they do not display the users list. I thought maybe the wireless connection may have something to do with it, so I plugged them directly into the data cable and still no luck. I ensured that on the local machine the user account is set to display as a list. I have created the computer list in WGM for the MacBooks, all to no avail. I have been scouring the forums but no breakthrough yet. Any ideas from anyone will be greatly appreciated.
    G5 Mac OS X (10.4.8)

    The list of users is a plist file and should be at at /Library/Preferences/com.apple.loginwindow.plist on the clients. See this thread for more information:
    http://discussions.apple.com/thread.jspa?messageID=2368769&#2368769
    If you've got a good plist from a client that sees the right users, you should be able to copy it over. If not, try backing up the file from one client and then deleting it and restarting.

  • Hierarchy Node Variable is not displaying full list of Hierarchy

    Hi,
    I loaded Hierarchy  to an info object using flat file.
    When i created a test reports and settings to display of MAster Data of Char and executed the report
    The output displays full list of Hierarchy
    Now to have a User Entry on Hierarchy ...created a Hierarchy Node variable and executed the value help of Hierarchy Node variable is not displaying fill list of Hierarchy ...its only displaying first 15 entries in Hierarchy.
    I changed the settings of variable...etc but couldn't get the Hierarchy full list in User entry selection
    How can i fix it...
    Thanks in advance

    If anyone has the same problem, I think I found the reason when transported to production.
    BW7.3 (at least) can not show the hierarchy nodes if there is no transactional data loaded.
    So do your hierarchies only after the data has been loaded..

  • Crystal Report 2013 - Data not displayed

    Dear All
    I created one report connecting to SAP Tables directly.
    a) I made a new connection - connecting to SAP tables directly.
    b)  It is connected successuly.  It shows all related tables correctly.
    c) I selected a table MARA
    d) I selected the fields MATNR, ERNAM   (for example)
    Completed the report.
    But on executing, the data is not displayed..  It idspayes 0 records selcted..  ( no errors also )
    Can someone help me...  Why the dta is is not fetched...
    Effectivley, :  No data returns when we execute the report.
    Regards,
    Venkat

    Hi Venkat,
    Go through below SAP note to over come this issue :
    1637505    No data returns when refreshing a reports based off an SAP data source in Crystal Reports.
    Symptom
        No data returns when refreshing a report in Crystal Report.
        Reports based off an SAP Customer Relationship Management System (CRM), ECC, ERP... or ABAP functions returns no data in Crystal Reports.
    Environment
        Crystal Reports 2008
        SAP Crystal Reports 2011
        BusinessObjects Solution for SAP Integration for XI 3.1
    Reproducing the Issue
        Verify from the SAP Customer Relationship Management System that the table or function to which Crystal Report will connect to has data.
        In Crystal Report, create a new report using the connection: SAP Table, Cluster, or Function.
        The new connection will use the Open SQL driver to connect to the table of SAP System.
        Add database fields to the Details section of the report.
        Refresh the report.
        The report returns no data.
    Cause
        This is an SAP Netweaver Gateway issue that prevents Crystal Reports from retrieving data.
        When looking at the Crystal Reports logs, you will notice the SAP Gateway Connection to the SAP Netweaver System fails with the error:
        [Tue Sep 27 10:58:21 2011]           5996       5808       SAP: Received return code 1 from RfcWaitForRequest. This is an error. Message CPIC-CALL: 'SAP_CMACCPTP : rc=20
        LOCATION    SAP-Gateway on host <host name> / sapgw00
        ERROR           Registration of tp <name> from host <host name> not allowed
        TIME            Tue Sep 27 1:11:11 201
        RELEASE       720
        COMPONENT SAP-Gateway
        VERSION      2
        RC              720
        MODULE       gwxxrd.c
        LINE            3627
        COUNTER     3557
        . Existing receiving thread...
        [Tue Sep 27 10:58:21 2011]           5996       5808       SAP: Data reader received error notification. Preparing to go out of scope.
       For information on how to create a log for Crystal Reports, see the SAP Knowledge Base Article 1220085.
    Resolution
        To resolve this issue, consult your SAP BASIS Administrator to update the SAP Gateway to allow your user, or computer, or application to connect to the SAP System. For more information see SAP Note 1408081 - Basic settings for reg_info and sec_info.
        If you have any questions or issues setting security on the SAP Gateway, then create a message for SAP Gateway support, under the component: BC-CST-GW
    -Sastry

  • Interactive report: third screen not displaying

    Hi Experts,
    I am doing a interactive report in ALV grid...and my requirement is
    when the user clicks on SPMON which is displayed on the initial screen the first screen
    should display and in first screen when the user clicks LIFNR second screen should display..
    I am able to display initial and first screen but second screen is not displaying...I am
    pasting a pinch of my code please have a look and advice me..
    FORM USER_COMM USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC1'.
          IF R_SELFIELD-FIELDNAME = 'SPMON'.
            READ TABLE IT_TAB INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_1[].
            CLEAR IT_TAB_1.
            LOOP AT IT_FIRST WHERE WERK EQ IT_TAB-WERK AND SPMON EQ IT_TAB-SPMON
                               AND ART = IT_TAB-ART.
              MOVE IT_FIRST-WERK       TO  IT_TAB_1-WERK.
              MOVE IT_FIRST-LIFNR      TO  IT_TAB_1-LIFNR.
              MOVE IT_FIRST-MEANQ      TO  IT_TAB_1-MEANQ.
              MOVE IT_FIRST-BASME_QM   TO  IT_TAB_1-BASME_QM.
               APPEND IT_TAB_1.
              CLEAR: IT_FIRST, IT_TAB_1.
            ENDLOOP.
            REFRESH IT_FIELDCAT1[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT1
            USING:
              'IT_TAB_1' 'WERK' ' ' 'PLANT' ' ' ' ',
              'IT_TAB_1' 'LIFNR' ' ' 'VENDOR NUMBER' ' ' ' ',
              'IT_TAB_1' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
              'IT_TAB_1' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_USER_COMMAND             = 'USER_COMM_1'
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT1[]
             TABLES
                T_OUTTAB                          = IT_TAB_1[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM
    For second screen : which is not working
    FORM USER_COMM_1 USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC2'.
          IF R_SELFIELD-FIELDNAME = 'LIFNR'.
            READ TABLE IT_TAB_1 INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_2[].
            CLEAR IT_TAB_2.
            LOOP AT IT_SECOND WHERE WERK EQ IT_TAB_1-WERK AND
    SPMON EQ IT_TAB_1-SPMON AND ART = IT_TAB_1-ART AND LIFNR = IT_TAB_1-LIFNR.
              MOVE IT_SECOND-ART        TO  IT_TAB_2-ART.
              MOVE IT_SECOND-SPMON      TO  IT_TAB_2-SPMON.
              MOVE IT_SECOND-MATNR      TO  IT_TAB_2-MATNR.
                   APPEND IT_TAB_2.
              CLEAR: IT_SECOND, IT_TAB_2.
            ENDLOOP.
            REFRESH IT_FIELDCAT2[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT2
                    USING:
                      'IT_TAB_2' 'MATNR' ' ' 'MATERIAL NUMBER' ' ' ' ',
                      'IT_TAB_2' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
                      'IT_TAB_2' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT2[]
              TABLES
                T_OUTTAB                          = IT_TAB_2[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM_1
    Please advice
    Karthik
    Edited by: Karthik R on Apr 29, 2009 12:22 PM

    Use both conditions in USER_COMM.
    FORM USER_COMM USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC1'.
          IF R_SELFIELD-FIELDNAME = 'SPMON'.                      " Field name SPMON
            READ TABLE IT_TAB INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_1[].
            CLEAR IT_TAB_1.
            LOOP AT IT_FIRST WHERE WERK EQ IT_TAB-WERK AND SPMON EQ IT_TAB-SPMON
                               AND ART = IT_TAB-ART.
              MOVE IT_FIRST-WERK       TO  IT_TAB_1-WERK.
              MOVE IT_FIRST-LIFNR      TO  IT_TAB_1-LIFNR.
              MOVE IT_FIRST-MEANQ      TO  IT_TAB_1-MEANQ.
              MOVE IT_FIRST-BASME_QM   TO  IT_TAB_1-BASME_QM.
               APPEND IT_TAB_1.
              CLEAR: IT_FIRST, IT_TAB_1.
            ENDLOOP.
            REFRESH IT_FIELDCAT1[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT1
            USING:
              'IT_TAB_1' 'WERK' ' ' 'PLANT' ' ' ' ',
              'IT_TAB_1' 'LIFNR' ' ' 'VENDOR NUMBER' ' ' ' ',
              'IT_TAB_1' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
              'IT_TAB_1' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_USER_COMMAND             = 'USER_COMM_1'
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT1[]
             TABLES
                T_OUTTAB                          = IT_TAB_1[]
          ELSEIF R_SELFIELD-FIELDNAME = 'LIFNR'.              " ELSE FIELDNAME LIFNR
            READ TABLE IT_TAB_1 INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_2[].
            CLEAR IT_TAB_2.
            LOOP AT IT_SECOND WHERE WERK EQ IT_TAB_1-WERK AND
            SPMON EQ IT_TAB_1-SPMON AND ART = IT_TAB_1-ART AND LIFNR = IT_TAB_1-LIFNR.
              MOVE IT_SECOND-ART        TO  IT_TAB_2-ART.
              MOVE IT_SECOND-SPMON      TO  IT_TAB_2-SPMON.
              MOVE IT_SECOND-MATNR      TO  IT_TAB_2-MATNR.
                   APPEND IT_TAB_2.
              CLEAR: IT_SECOND, IT_TAB_2.
            ENDLOOP.
            REFRESH IT_FIELDCAT2[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT2
                    USING:
                      'IT_TAB_2' 'MATNR' ' ' 'MATERIAL NUMBER' ' ' ' ',
                      'IT_TAB_2' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
                      'IT_TAB_2' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT2[]
              TABLES
                T_OUTTAB                          = IT_TAB_2[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM
    Regards,
    Gurpreet

  • Standard Report's Layout not displaying 'SAVE LAYOUT' Option

    Dear All,
                Using Tcode VF44, i am getting output list.But in that list when i click on select layout option from toolbar its not displaying 'save layout' Option. can anybody give me soln for the same.How can i get that option?
    Regards,
    Mayank

    HI,
        No yaar, This one is standard report and  i am getting 'SAVE LAYOUT'  option in 300 but not in Production Server.There must be settings for this.  If u hv any idea ?
    Regards,
    Mayank

  • Few values of report column do not display in report while applying filter

    Post Author: anuragg11
    CA Forum: WebIntelligence Reporting
    There are 6 drill filters applied on the report to filter out the report column data. Few values of the report are not displaying in the report when using drill filter. Same issue is with report filter too. If filters are removed then values are appearing in the report. We are using version BO XI R2 & Java runtime JRE 1.4v. It doesn't look issue is with Java version because only few specific data of the report column are not shown in the report when using filter on the data. Example: One of Report data column contains below values: 24.2, 26.9, 120.1, 230, 274.9, 275.8, 333.2 Report is displaying all these values when there is no filter on any data. But report doesn't display data when applying filter on 274.9 or 120.1 howver filter on other values 24.2, 26.9, 230, 275.8, 333.2 are working fine.

    Hello,
    I think i know what your problem is.
    Although in table view your 2 requests combine perfectly and show separate results in pivot view BI unfortunaterly adds them up.
    One work around would be to go in your criteria add in each request a dummy column. This can be obtained the following way:
    1. click on a column to add it in the criteria (it doesnt matter which one)
    2. go into the edit formula of that column
    3. delete the formula and in its place write 'Dummy Column 1'
    Do the same for the second request by adding a "Dummy Column 2'
    Now the Pivot Table should also show up correctly
    Let me know if it goes well or if you have any further questions,
    Kostis

  • Crystal Report V9 do not display decimal value HELP!

    <p>I have a field in Informix data type is Decimal(6,2)</p><p>when i used the field in the report, the decimal is not displayed</p><p>example: field1 = 305.50, in crystal report it only displayed 305.00, already setup the formatting. any possible solution?, please help!</p>

    <p>have check all the options in my pc and crystal report, all seems to be ok, and have tried displaying an informix field decimal(5,2), and it displays ok (154.23) in my crystal report, but when trying to display the field decimal(6,2) crystal report display decimal up to 99.99, but when it reaches 100+, it will not display the decimal, very weird, help.</p><p>have tried the formula as well but still doesnt work.</p><p>any other possible solutions, pls help, thanks.</p>

  • Problem in report .if i run the report it is not display the quantity,price

    This program is an AP Standard Price  Variance Report. For each Material it details all invoices created  for  that  material including  the  quantity  invoiced, the  actual Unit Cost for invoiced quantity and the  actual   amount invoiced. For each material/Vendor combination,  it totals and compares the actual quantity, Unit Cost,  and the amount with  standard quantity, Unit Cost  and  amount.  The  amount  difference   equals  the   total   deviation.        
    problem in if run the report under material have items but one of the item not displaying quantity and cost  but it is calcualting
    displaying the total invoice cost ..but under material number it is showing 0...
    if it_bkpf-blart eq 'WE' or
           ( it_bkpf-blart eq 'WA' and
         ( it_bseg-werks = '09'  or it_bseg-werks = '99' ) and "DV2K927836
             ( it_bseg-hkont = '0001701010' or
             it_bseg-hkont = '0001720010' ) ).
          it_detail-menge      = it_bseg-menge.
        endif.
        it_detail-werks      = it_bseg-werks.
        it_detail-hkont      = it_bseg-hkont.
        it_detail-hkont_desc = ws_hkont_desc.
        it_detail-belnr      = it_bkpf-belnr.
        it_detail-blart      = it_bkpf-blart.
        it_detail-lifnr      = ws_lifnr.
        it_detail-lifnr_desc = ws_lifnr_desc.
        if it_bkpf-blart eq 'RN'
           or it_bkpf-blart eq 'RI'
           or it_bkpf-blart eq 'RF'
           or it_bkpf-blart eq 'RC'
             or it_bkpf-blart eq 'RD'
               or it_bkpf-blart eq 'ER'.
          if it_bseg-menge ne 0.
            it_detail-inv_ucost = it_bseg-wrbtr / it_bseg-menge.
          else.
            it_detail-inv_ucost = it_bseg-wrbtr.
          endif.
          if it_bseg-shkzg = 'H'.          "Credit Indicator
            it_bseg-wrbtr = 0 - it_bseg-wrbtr.
          endif.
          it_detail-inv_cost = it_bseg-wrbtr.
        endif.
        if it_bkpf-blart = 'WE' or it_bkpf-blart = 'WA'.
          if it_bseg-hkont = '0001701010' or
             it_bseg-hkont = '0001720010'.
            if  ( it_bkpf-blart eq 'WA' and
            ( it_bseg-werks = '09'  or it_bseg-werks = '99' ) ). "DV2K927836
              clear ws_awkey.
              ws_awkey = it_bkpf-awkey.
    clear ws_mseg_werks.

    This program is an AP Standard Price  Variance Report. For each Material it details all invoices created  for  that  material including  the  quantity  invoiced, the  actual Unit Cost for invoiced quantity and the  actual   amount invoiced. For each material/Vendor combination,  it totals and compares the actual quantity, Unit Cost,  and the amount with  standard quantity, Unit Cost  and  amount.  The  amount  difference   equals  the   total   deviation.        
    problem in if run the report under material have items but one of the item not displaying quantity and cost  but it is calcualting
    displaying the total invoice cost ..but under material number it is showing 0...
    if it_bkpf-blart eq 'WE' or
           ( it_bkpf-blart eq 'WA' and
         ( it_bseg-werks = '09'  or it_bseg-werks = '99' ) and "DV2K927836
             ( it_bseg-hkont = '0001701010' or
             it_bseg-hkont = '0001720010' ) ).
          it_detail-menge      = it_bseg-menge.
        endif.
        it_detail-werks      = it_bseg-werks.
        it_detail-hkont      = it_bseg-hkont.
        it_detail-hkont_desc = ws_hkont_desc.
        it_detail-belnr      = it_bkpf-belnr.
        it_detail-blart      = it_bkpf-blart.
        it_detail-lifnr      = ws_lifnr.
        it_detail-lifnr_desc = ws_lifnr_desc.
        if it_bkpf-blart eq 'RN'
           or it_bkpf-blart eq 'RI'
           or it_bkpf-blart eq 'RF'
           or it_bkpf-blart eq 'RC'
             or it_bkpf-blart eq 'RD'
               or it_bkpf-blart eq 'ER'.
          if it_bseg-menge ne 0.
            it_detail-inv_ucost = it_bseg-wrbtr / it_bseg-menge.
          else.
            it_detail-inv_ucost = it_bseg-wrbtr.
          endif.
          if it_bseg-shkzg = 'H'.          "Credit Indicator
            it_bseg-wrbtr = 0 - it_bseg-wrbtr.
          endif.
          it_detail-inv_cost = it_bseg-wrbtr.
        endif.
        if it_bkpf-blart = 'WE' or it_bkpf-blart = 'WA'.
          if it_bseg-hkont = '0001701010' or
             it_bseg-hkont = '0001720010'.
            if  ( it_bkpf-blart eq 'WA' and
            ( it_bseg-werks = '09'  or it_bseg-werks = '99' ) ). "DV2K927836
              clear ws_awkey.
              ws_awkey = it_bkpf-awkey.
    clear ws_mseg_werks.

  • SSRS Report - background image not displaying in MHTML email

    We have a report that has a rectangle with an image as a background (doesn't make any difference whether image is external, embedded, etc). The background image displays fine on the screen and when exporting to PDF, but doesn't show when emailing (via subscription)
    in MHTML format and opening in MS Outlook, gmail, etc.
    It seems to be a legitimate bug with SSRS (have tried in SSRS 2008 R2, 2012, 2014).
    Is there a workaround? Service Pack?

    Hi Corey Gray,
    Per my understanding that the background image in the email subscription not display which format is MHTML, right?
    I have tested on my local environment and can reproduce the issue. I deliver this report to three email amounts: Outlook, Hotmail and 163, below I will share the test results with you.
    Outlook: the backgroudimage disappear in the email body and there is no one attachment being sent in the email.
    Hotmail: the backgroudimage disappear in the email body, however, the backgroundimage being sent as one attachment in the email.
    163: the backgroudimage displays in the email body and the backgroundimage being sent as one attachment in the email.
    Based on previous test results, we can conclude that: these different scenarios caused by the settings of the email rather than Reporting Services.
    If you are using Outlook, I would recommend you submit one thread in this Outlook forum,
    http://social.technet.microsoft.com/Forums/en-us/outlook/threads.
    In this forum, you can get more professional support about how to set the Outlook.
    If you have any other question, please feel free to let me know.
    Regards
    Vicky Liu

  • Files not displaying in list view?

    I recently upgraded my MacPro (early 2008 8core) from Snow Leopard (10.6.8)  to Lion.
    At first i wanted to do a fresh install on my machine but soon realised it wasnt possible to import old accounts from another internal drive so i opted to upgrade the system instead.
    After doing so I was faced with an odd problem of files not displaying in my finder windows when switching through internal drives or changing from 'file view' to 'list view' or 'column view' etc...
    The attached screenshots were taken in sequence youll also note that the path bar & top window name dont update either.
    The relevant drives are in healthy condition with several tests run over them to ensure their healthy(Disk Utility & Drive Genius). I have also run permissions repair, and a utility to empty cahces etc (OnyX). From what i can see its possibly something to do with the Finder not updating or refreshing the window? The issue seems to be isolated to the drives however intermittently the problem exists deeper into the directory on 'TerraTank' Volume.
    The finder also crashes semi-frequently and the problem seems to dispaear for a while and revealing the contents of these volumes for a few mins.
    I have also checked activity monitor to see if any particular process was going haywire and all seemed relativly normal.
    Has anyone else experienced this problem?
    Regards,
    JP

    Onyx may be causing problems.  Don't use it on a non-backed up system, as cleaning caches may damage them, and make things not work.    Make sure your Spotlight indexes all drives you wish to be searchable.  Go to Apple menu -> System Preferences -> Spotlight and add each hard drive to the Privacy section, and then remove it again.  Then click on the Spotlight menu every half hour to see when it stops saying that it is indexing.  It might take a few hours.  But once done, it should be fixed.

  • COOIS- Report  Grid Value not displaying

    Hi Experts,
                   In COOIS report Prd Order item details , the grid values and stock category are not displaying values. we created the production order with AFS grid but while seeing report of item details the grid values and stock category are showing null values.
    initial screen,
    Report
    but production order contains grid values.
    any one guide me to resolve it.
    Regards,
      Thangam.P
    Message was edited by: Thangam Perumal

    Hi ,
         my requirement is need to show the grid value and stock category of AFS production order based on item details. i think that alv reports is working based on view. it is possible to add  custom view for that report? . if possible mean to any one guide me to fix the problem.
    Regards,
      Thangam.P

  • Report Painter - Values not displaying

    I have a report created in Report Painter using Library 1GK that shows the total units.  When I run the report for all cost centers the data does not display.  I can explode the row and see the values but not total.  I can export the data and the values export.  This happens for both units and hours.  Any ideas?
    Thank you!
    Helen

    Please check the Section layout for your report and review the Rows tab. The Miscellaneous area has Mark Totals and Suppress duplicated totals. Treatment of zero rows can also be checked, may be the total of debits and credit of individual rows are totalling to zero.  Just a guess.

  • Interactive report's data not displaying on the edit form.

    I have an interactive report that contains 3 rows. When I click on the edit button next to one of these rows, the edit form displays the data from that row.
    But when I click the edit buttons next to the other 2 report rows, I get an error message that states: "ORA-01403: no data found. Error Unable to fetch row."
    I do not see why this is happening. The PK of the table involved is "Request Date", so the report's "Link Column" region sends the value "Request Date" to the item P54_Request_Date in the form page.
    Any idea why this would work correctly for one of the report rows but not for the other 2?
    Clearly, each of the report rows must have a value for the PK, so why would the form not be able to find the same row that the report displays? Is it a problem with the form's "Fetch Row from" process?
    Thanks.

    Hello:
    Your problems are primarily related to in your choice of a 'Date' type as the PK for your table. The Automated Row Fetch (ARF) process uses a SQL statement similar to the one below to retrieve a record from a table select c1, c2, c3 ... from tab where PK_col = :page_item_containing_PK_value . This would work find if the the 'page_item_containing_PK_value' were of the DATE data type. However, all APEX binds are done using varchar2. This means that the 'page_containging_PK_value' needs to have the char representation of the date that matches the default date setting on your database. So the page-item needs to be something like 'DD-MON-YYYY HH24:MI'. In your case the PK item is probably being set to 'DD-MON-YYYY' and therefore the fetch fails.
    Now, for the 'issue with the :' in the character representation of the date.The link on the report page uses the standard APEX URL syntax to construct the link
    f?p=App:Page:Session:Request:Debug:ClearCache:itemNames:itemValues:PrinterFriendly
    As you can see, the ':' acts as the separator that delineates the components that make up the APEX URL. So, having a ':' in the 'itemValues' component will make the APEX engine treat whatever follows the ':' in the value passed as a delimiter as opposed to being part of the value being passed.
    Varad

  • Crystal Report for Enterprise not displaying Long Text from BEx

    Hello,
    I am creating a report using SAP Crystal Report for Enterprise 4.0 (Version 14.0.2) and the source of data is BEx query via OLAP connection created using IDT. I am using SAP BusinessObjects BI platform 4.0.
    The Characteristic (which is hierarchy) in the Rows section of the BEx Query is set to display long text and as such, it displays long text when the query is executed in the BEx Analyzer. However, when it comes to Crystal Report, the short text is displayed in the report. Can I display long text in the Crystal Report? How?
    Thanks,
    KP

    Venkat,
    Thanks for your response. Please note, however, the transaction RAD1 does not exist. Let me provide more details about the current settings of the InfoObject.
    The Characteristic is 'Item' (0CS_ITEM) and upon going to RSA1 >  Modeling > InfoObjects > Item (0CS_ITEM) > Right Click > Display > Business Explorer (tab) > Text Type is set to 'Long Text' and BEx description is set to 'Long description' already.
    When I run/execute the query with this Item characteristic, the results in BEx Analyzer is showing appropriate long text, however, Crystal Report for Enterprise shows short text only
    K
    Edited by: Kumar Pathak on Feb 3, 2012 6:18 PM

Maybe you are looking for

  • Calculation of surcharge on sales tax

    hello everyone how do we calculate SC on sales tax amount base amount                         100 sales tax say 10%                  10 surcharge say 2% on 10          2 amount to be collected           112

  • BADI - "REDUCT_TRIP_AMOUNT" implementation is not working

    Dear all, While creating or changing trip data i got one badi "REDUCT_TRIP_AMOUNT".  i was implemented badi. Badi implementation is not working. There was hard code break point "BREAK-POINT." i was writen in badi , But is not comes in way of executio

  • EP - BW myBudget issue - System error in program CL_RSR_WWW_RENDERER

    Hi, we are setting up EP 6.0 and BW 3.5 and are trying to use the workset 'myBudget'. We have been able to run the iViews that are based on R/3 Enterprise data. Now we want to use the SAP delivered iViews for the BW reports. They run in the BW system

  • Unable to reach this contact

    So i had an argument with my ex bf so i deleted him off skype. A few days after that, i decided to add him again and i can now see if he's online or offline. I sent him a few messages and it seemed like they have been delivered just fine. But he didn

  • DB의 nls_language,nls_territory 값

    Unix 환경 변수 : NLS_LANG=KOREAN_KOREA.KO16KSC5601 로 셋업되어 있는데, 데이터베이스의 lanuage와 territory는 AMERICAN, AMERICA 로 되어 있습니다. CHARACTER SET 만 한글이 들어갈 수 있게 셋업되어 있으면 해당 값은 크게 의미가 없나요? 그리고 show parameter 시 나오는 값과 nls_database_parameters 에서 조회되는 값이 다른데 같게 맞춰줘야 하는지