Issue with Submitting a ALV report in container ...

Hello Gurus,
I know how to display data in ALV in container on screen. My issue is, I have a container defined on screen. I have a separate report whose output is in the ALV form.
Now if I submit the report in the PBO, I do not get the ALV output of that report in custom container defined on screen, but the report as a whole gets executed.
How can I submit a report and still get its output on ALV container.
MODULE STATUS_0100 OUTPUT.
CREATE OBJECT CUSTOM2
EXPORTING
  CONTAINER_NAME              = 'CUSTOM2'.
  CREATE OBJECT GRID1
    EXPORTING
      I_PARENT          = custom2.
  perform loaddata2.
ENDMODULE.
FORM loaddata2.
  DATA: v_sp like rsparams occurs 0 with header line.
  V_SP-SELNAME = 's_usr'.
  V_SP-KIND = 'P'.
  V_SP-LOW = 'X'.
  APPEND V_SP.
submit ZREPT with selection-table v_sp and return.
ENDFORM.
Please help.
Regards,
Jainam.
Edited by: Jainam Shah on Apr 20, 2010 7:23 PM
Edited by: Jainam Shah on Apr 20, 2010 7:24 PM

Hi,
In your ZREPT report define a parameter( called ) one character that is not displayed. Set this parameter 'X' before submit statement. In ZREPT report check this parameter;
if called is not initial. (It means the report is submitted from the other report)
   export result table to memory id 'MEMORYID'.
endif.
Then in report from which you submitted ZREPT, import result table from memory id  'MEMORYID'. Then display the result table in your grid.

Similar Messages

  • Display Currency symbol with value in ALV Report

    Hi Experts,
    I need to display currency symbol with value in ALV Report like if currency type is dollar then $200.
    Here I am using field catalog type slis_t_fieldcat_alv and suing field merge catalog FM: 'REUSE_ALV_FIELDCATALOG_MERGE'
    I tried like this
        IF <fs_fieldcat>-fieldname = 'STPRS'.
          <fs_fieldcat>-seltext_s = 'Std Cost '.
          <fs_fieldcat>-seltext_m = 'Std Cost'.
          <fs_fieldcat>-seltext_l = 'Std Cost '
           <fs_fieldcat>-tabname = 'MBEW'.
          <fs_fieldcat>-ctabname = 'T001'.
          <fs_fieldcat>-cfieldname ='WAERS'.
          <fs_fieldcat>-datatype = 'CURR'.
        ENDIF.
    Please any one can suggest the solution for this.
    Advance Thanks.
    Regards,
    Bala Achari

    Hİ,
    Check this link.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=24379571
    Take care.
    Çağatay

  • Problem with Footer in ALV Report

    Hi Experts,
    What is coding for Footer In my ALV Report  how can I resolve it.
    for example will come in footer like this....
    'This Report is created by '
             Date is ',
              'Time is '
             Page No ' *
    Please find below the piece of codes
    REPORT  ZALV2      .
    TABLES :   MAKT.                            " Material Description
    TYPE-POOLS : SLIS.
    TYPES : BEGIN OF TY_MAKT,
            MATNR TYPE MATNR,                   " Material No
            SPRAS TYPE SPRAS,                   " Language Key
            MAKTX TYPE MAKTX,                   " Material Description
            MAKTG TYPE MAKTG,                   " Material des in upper case
            END OF TY_MAKT.
    DATA : T_MAKT TYPE STANDARD TABLE OF TY_MAKT INITIAL SIZE 0,
           T_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           T_LISTHEADER TYPE SLIS_T_LISTHEADER.
    DATA : W_MAKT TYPE TY_MAKT,
           W_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
           W_LISTHEADER TYPE SLIS_LISTHEADER,
           W_LAYOUT TYPE SLIS_LAYOUT_ALV.
    CONSTANTS : C_MATNR TYPE SLIS_FIELDNAME VALUE 'MATNR',
                C_SPRAS TYPE SLIS_FIELDNAME VALUE 'SPRAS',
                C_MAKTX TYPE SLIS_FIELDNAME VALUE 'MAKTX',
                C_MAKTG TYPE SLIS_FIELDNAME VALUE 'MAKTG'.
    SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME TITLE TEXT-000.
    SELECT-OPTIONS : S_MATNR FOR MAKT-MATNR.
    SELECTION-SCREEN END OF BLOCK BLK.
    INITIALIZATION.
           PERFORM SUB_CLEAR_OBJ.
    AT SELECTION-SCREEN.                     " it is used for validation
           PERFORM SUB_VALIDATE_DATA.
    START-OF-SELECTION.
           PERFORM SUB_FETCH_DATA.
           PERFORM SUB_FIELDCAT USING :
                       C_MATNR TEXT-001  'X',
                       C_SPRAS TEXT-002  ' ',
                       C_MAKTX TEXT-003  ' ',
                       C_MAKTG TEXT-004  ' '.
           PERFORM SUB_LAYOUT.
           PERFORM SUB_DISPLAY.
    END-OF-SELECTION.
    TOP-OF-PAGE.
           PERFORM SUB_TOP_OF_PAGE.
           PERFORM SUB_WRITE_HEADER.
    END-OF-PAGE.
       PERFORM  SUB_SET_PF_STATUS.
    *&      Form  SUB_CLEAR_OBJ
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_CLEAR_OBJ .
    REFRESH  : T_MAKT,
               T_FIELDCAT,
               T_LISTHEADER.
    CLEAR    : W_MAKT,
               W_FIELDCAT,
               W_LISTHEADER.
    ENDFORM.                    " SUB_CLEAR_OBJ
    *&      Form  SUB_VALIDATE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_VALIDATE_DATA .
    DATA :  L_MATNR TYPE MATNR.
    SELECT MATNR UP TO 1 ROWS FROM MAKT INTO L_MATNR.   " IN S_MATNR.
    ENDSELECT.
    IF SY-SUBRC <> 0.
    MESSAGE E000(15) WITH 'IT IS AN INVALID NUMBER'.
    ENDIF.
    ENDFORM.                    " SUB_VALIDATE_DATA
    *&      Form  SUB_FETCH_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_FETCH_DATA .
    SELECT MATNR SPRAS MAKTX MAKTG FROM MAKT INTO TABLE T_MAKT WHERE MATNR
    IN S_MATNR.
    ENDFORM.                    " SUB_FETCH_DATA
    *&      Form  SUB_FIELDCAT
          text
         -->P_C_MATNR  text
         -->P_TEXT_001  text
         -->P_0122   text
         -->P_0123   text
    FORM SUB_FIELDCAT  USING :
                            FLD TYPE SLIS_FIELDNAME
                            TXT TYPE SCRTEXT_L
                           COL TYPE SLIS_FIELDCAT_ALV-OPTIMIZE
                            HPOT TYPE C.
    W_FIELDCAT-TABNAME = 'ZSHEREE2'.
    W_FIELDCAT-FIELDNAME = FLD.
    W_FIELDCAT-SELTEXT_M = TXT.
    *W_FIELDCAT-EMPHASIZE = COL.
    W_FIELDCAT-HOTSPOT = HPOT.
    APPEND W_FIELDCAT TO T_FIELDCAT.
    ENDFORM.                    " SUB_FIELDCAT
    *&      Form  SUB_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_LAYOUT .
    W_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    W_LAYOUT-ZEBRA = 'X'.
    W_LAYOUT-F2CODE = '&ETA'.
    ENDFORM.                    " SUB_LAYOUT
    *&      Form  SUB_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_DISPLAY .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = 'ZSHEREE2 '
       I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS_SET '
      I_CALLBACK_USER_COMMAND           = ' '
       I_CALLBACK_TOP_OF_PAGE            = 'SUB_TOP_OF_PAGE '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = 'ALV_BACKGROUND '
       I_GRID_TITLE                      = 'Header Item / Data'
      I_GRID_SETTINGS                   = 5
       IS_LAYOUT                         = W_LAYOUT
       IT_FIELDCAT                       = T_FIELDCAT
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_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             =
      I_SCREEN_START_LINE               =
      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                          = T_MAKT
    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.
    ENDIF.
    ENDFORM.                    " SUB_DISPLAY
    *&      Form  SUB_TOP_OF_PAGE
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_TOP_OF_PAGE .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
      EXPORTING
        IT_LIST_COMMENTARY       = T_LISTHEADER
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    REFRESH T_LISTHEADER.
    ENDFORM.                    " SUB_TOP_OF_PAGE
    *&      Form  SUB_WRITE_HEADER
          text
    -->  p1        text
    <--  p2        text
    FORM SUB_WRITE_HEADER .
    W_LISTHEADER-TYP  = 'H'.
    W_LISTHEADER-INFO = 'PLANT WISE DATA DISPLAYED'.
    APPEND W_LISTHEADER TO T_LISTHEADER.
    ENDFORM.                    " SUB_WRITE_HEADER
    *&      Form  SUB_SET_PF_STATUS
          text
    -->  p1        text
    <--  p2        text
    FORM PF_STATUS_SET USING
                            RT_EXTAB TYPE SLIS_T_EXTAB.
    SET PF-STATUS  'ZSTATUS1'.
    ENDFORM.                    " SUB_SET_PF_STATUS
    If any mistake  where i am wrong sorry for that.

    You create one subroutine for END-OF-PAGE. Call this in the FM,
    REUSE_ALV_EVENTS_GET.
    Example:
    Data:       i_event       TYPE slis_t_event.
    *&      Form  f_build_eventtab
          text
    FORM f_build_eventtab  USING   ps_event TYPE slis_t_event.
      DATA: wa_event TYPE slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = ps_event.
       READ TABLE ps_event WITH KEY name = slis_ev_end_of_page INTO wa_event.
      IF sy-subrc EQ c_0.
        MOVE slis_ev_end_of_page TO wa_event-form.
        APPEND wa_event TO ps_event.
      ENDIF.
    ENDFORM.                    " f_build_eventtab
    *&      Form  END OF PAGE                                             *
    *& To display the footer details                                *
    FORM end_of_page .      
    Write the footer details
    ENDFORM.                    "END_OF_PAGE
    I hope this will be useful for you.
    Regards,
    Joan

  • Issue with downloaing from ALV to Excel sheet

    Hi All,
    When we download the ALV Report to excel sheet, the first line/first column (A11) of excel sheet will have today's date.
    Since my customer uses the excel sheet for further processing into a non-SAP system, we need to provide the excel sheet with the cell A11 (First line's firls column) as blank.
    How can we deliver this requirement?
    Your help will be sincerely appreciated....
    Regards
    Pavan

    One option is there
    Give him 1 push button on toolbar other wise you can write below function module in
    start of selection code also.
    1 ) modify u r internal table according to requirement.
    2) after that call WS_DOWNLOAD function module.
    Check below code for u r reff.
    *Modify itab according to u r requirement.
         Loop at IST_DWN.
            IST_DWN-KUNNR2_DESC = SPACE.
            IST_DWN-KUNNR3_DESC = W_ZPPCSR-KUNNR3_DESC .
            APPEND IST_DWN.
            CLEAR DATE.
          ENDLOOP.
    *F4 Help for file menu
    CALL FUNCTION 'F4_FILENAME'
            IMPORTING
              FILE_NAME = PATH.
          RLGRAP-FILETYPE = 'DAT'.
    Download fm
          CALL FUNCTION 'WS_DOWNLOAD'
            EXPORTING
              FILENAME         = PATH
              FILETYPE         = RLGRAP-FILETYPE
              MODE             = XMODE
            IMPORTING
              FILELENGTH       = L_FILELENGTH
            TABLES
              DATA_TAB         = IST_DWN
            EXCEPTIONS
              FILE_OPEN_ERROR  = 1
              FILE_WRITE_ERROR = 2
              OTHERS           = 3.
    Salil ...

  • Issue with indicator values in report display

    Hi All,
    I am getting an issue with valutype #.
    we have  account  restricted hirerarchy ,fiscal year period and Valuetype in rows .
    I need to show the actuals indicator of value type 10 data in one row for each fiscal year period.But some of the key figures we are getting # data .valuetype indiator is repeating 2 times for each period.but we need to post this # values to 10.Any one have any idea how to handle this.
    for example : my report is displaying like this
    Account code :   Fiscal Year period   Value type      Keyfig 1    keyfig2   Keyfig 3
    CA1100 :                  001.2006          
    10                                  100       22
                     200
                                     002.2006          
    10                                   200       44
                     300  
    But I need the report  like below
    Account code :   Fiscal Year period   Value type      Keyfig 1    keyfig2   Keyfig 3
    CA1100 :                  001.2006           10                  200          100       22
                                                                                    002.2006           10                  300          200       44

    Sirisha,
       in the Query, You can filter your query to actual value i.e. 10. display KF1 and KF2 as it is coming from source. create restricted KF with restriction on account, fiscal year period and value type (= #).
    you will get exact value. or while loading to cube or ods.. you can move that value to KF3 using start routine.
    Nagesh Ganisetti.

  • Oracle Apps.XML reports ending with warning when the report output contains

    Hi I have XML reports. When we run these reports as concurrent program through Oracle Apps. window and if the report output contains special characters(like Chineese data) in between of English, then the concurrent program is ending with warning. If we remove special characters then it is working fine or when we run the report query directly from backend it is working fine.
    We are importing this data from legacy system into oracle apps. and we can't control these characters or decode them with some other charactes.
    Can any one guide me how to get the XML report output with special characters.
    Thanks in advance.
    Chandra Babu Lankipalli.

    Hi Hussein,
    The concurrent program is ending with Warning. It is unable to publish output file.
    For the same when we remove special characters and run the program it is completing and generating the
    output. The log fine is as follows when the data file contains special characters.
    Custom Application: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXFA_AR_WIN_EXCEPTION module: XXFA AR Wintrack Customer Interface Exception Report
    Current system time is 23-MAR-2009 05:33:19
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_CUST_ERRORED='3'
    P_CUST_SUCCESS='0'
    P_CUST_TOTAL='3'
    P_REQUEST_ID='4661283'
    P_USER_NAME='SYSADMIN'
    APPLLCSP Environment Variable set to :
    XML_REPORTS_XENVIRONMENT is :
    /d01/oracle/fadevora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /d01/oracle/fadevora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    Report Builder: Release 6.0.8.25.0 - Production on Mon Mar 23 05:33:19 2009
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 4661284 on node FAHQSNA01SFTD03 at 23-MAR-2009 05:33:20.
    Post-processing of request 4661284 failed at 23-MAR-2009 05:33:21 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 23-MAR-2009 05:33:21
    Thanks in advance.
    Chandra

  • Heading with parameter in ALV report

    hi
    i want to add heading to my ALV report which i created using factory method.
    in my code i wrote:
    data:gr_display type ref to cl_salv_display_settings.
    gr_display = gr_table->get_display_settings(  ).
    gr_display ->set_striped_pattern( cl_salv_display_settings=>true).
    gr_display->set_list_header( 'this alv report has' X <-- here i want to add variable)
    how can i add variable ( which is global variable ) insted of the X ??
    thanks

    hi,
    use this.
    DATA:
       gd_headr type char100.
    concatenate 'this alv report has' <variable>
      into gd_headr separated by space.
    gr_display->set_list_header( gd_headr ).
    regards,
    Peter

  • Issue with style templates & sectioned reports in BI Publisher

    Hello everyone,
    while building a report in BIP 11.1.1.6 I've encountered the next problem. I'm using a style template with defined header & footer, and the layout rtf template supposed to contain several sections (e.g., for 'No Data Found' message). The problem is that whenever I add sections to the report, the header & footer are applied only to the last one — no matter how many sections are there.
    I've looked through the xdo debugging logs and I still see no reason for the <region-header> & <region-footer> not to apply to all of the sections.
    Can anyone help me with this issue?

    Hi Kishore,
    I have a similiar request. We do not have LDAP enabled yet. I configured & linked OBIEE with BIP. I put a BIP report in one of our Dashboard pages.
    When logged in as Administrator / or the user who has admin rights, I could see the BIP report in dashboard but any other users can not view the report. Can you please share the doc you have with me and it might be useful.
    My mail id is - [email protected]
    Many Thanks
    Mahesh

  • Issue while downloading the alv report output in spreadsheet format .

    Hi,
    I have a report output, whenever I try to download it in the spreadsheet format to my desktop,
    I get the following issue:
    Say the correct material number is 10833340001218999 or 10030000063207001
    (This appears in the report output)
    But in the excel file the number is displayed as 10833340001218900 and 10030000063207000.
    Please help.
    Regards,
    Sucharita.

    Hi Sucharita,
    The reason for your problem could be that in excel 2007, characters more that 15 are replaced with 0.
    Or you can try downloading the data using FM 'GUI_DOWNLOAD' , if currently you are using stadard SAP functionality of data downloading.
    Best Regards,
    Vishal.

  • Issue with Multiple Tables in Report

    Post Author: dwessell
    CA Forum: General
    Hi,
    I'm using Crystal Reports 2k8.
    I'm doing a report with three tables, CQ_HEADER, SO_HEADER and SALESPERSON. Both the CQ_HEADER and the SO_HEADER tables link to the SALESPERSON table via a SPN_AUTO_KEY field.
    However, I always receive duplicates in my result set, due to the joins made, and I don't receive results that are valid in one table, and empty in another (Such that it only counts a CQ, if there is a SO associated with it. Here's the query that's produced by CR.
      SELECT "CQ_HEADER"."CQ_NUMBER", "CQ_HEADER"."ENTRY_DATE", "CQ_HEADER"."TOTAL_PRICE", "SALESPERSON"."SALESPERSON_NAME", "SO_HEADER"."ENTRY_DATE", "SO_HEADER"."TOTAL_PRICE"
    FROM   "CQ_HEADER" "CQ_HEADER" INNER JOIN ("SO_HEADER" "SO_HEADER" INNER JOIN "SALESPERSON" "SALESPERSON" ON "SO_HEADER"."SPN_AUTO_KEY"="SALESPERSON"."SPN_AUTO_KEY") ON "CQ_HEADER"."SPN_AUTO_KEY"="SALESPERSON"."SPN_AUTO_KEY"
    WHERE  ("CQ_HEADER"."ENTRY_DATE">={ts '2007-12-01 00:00:00'} AND "CQ_HEADER"."ENTRY_DATE"<{ts '2007-12-18 00:00:00'}) AND ("SO_HEADER"."ENTRY_DATE">={ts '2007-12-01 00:00:00'} AND "SO_HEADER"."ENTRY_DATE"<{ts '2007-12-18 00:00:00'})
    ORDER BY "SALESPERSON"."SALESPERSON_NAME"
    There is no link between the SO_HEADER and the CQ_HEADER.  Can anyone make a suggestion as to how I could go about structuring this such that it doesn't return duplicate values?
    Thanks
    David     

    Hey,
    I understand you used Retainsameconnection property true for all the OLEDB connections you used in the package if not make sure its for all the connection including file connection as well.
    Additionally, you can try to set Delayvalidation property to true for all the dataflows and control flows in the connection and try running the package for 10MB file.
    I hope this will fix the intermittent failure issue you are facing with SSIS.
    (Please mark solved if I've answered your question, vote for it as helpful to help other user's find a solution quicker)
    Thanks,
    Atul Gaikwad.

  • MBAM 2.5 SPN Issue with DNS alias and reporting

    We have one server with administration and monitoring website and self-service portal setup on it. We have another server with the Databases and the reports running on it. When I initially set it up I set it up with a SPN that matched the host name. At this
    point reporting worked.
    We found that HTTP SPN that matches host/FQDN name ibreaks WINRM to the server (powershell remoting).  See this: https://connect.microsoft.com/PowerShell/feedback/details/751307/psremoting-breaks-because-it-used-spn-name-with-class-http-instead-of-using-wsman
    To fix that we created a DNS alias, mbam.ourdomain.com, and created http SPN's for that account mapped to our MBAM ID
    When we did this we initially got stuck even logging on with single sign-on. we made a change to the endpoint address in the web.config and pointed it to the alias -- this resolved that issue.
    However now when trying to open any one of the reports we get the resource can not be found http 404 error.
    Is this fixable by changing something in a config file somewhere or do I need rebuild the servers and reinstall?

    Yes, We set both of those. We also set the delegation for the apppooluser to "trust this user for delegation to any service".<o:p></o:p>
    Today we uninstalled and reinstalled/configured IIS, the Administration and Monitoring website, and the self-service portal.<o:p></o:p>
     We no longer get an error when clicking on one of the 3 reports. Instead it does nothing. If I choose to open it in another tab or window it
    opens an about:blank page.<o:p></o:p>

  • Issues with Sections in WebI report

    Hi
           I am working in BOXIR2. I created a WebI report where I created sections on almost all fields of the Table. I need to create the report as book which almost 58 pages. I am getting following issues.
    1) When I run the report some of the sections are appearing several times in the same page.
    2) Some of the Fields are not completely seen in the report.
    3) The values in some sections are displaying "MultiValues".
    4) Also, in the prompts, I need to give one value as "ALL" which will fetch all the exiting values for that field (58 values) and display the results each in one page.
    Please let me know how to avoid these issues.
    Thanks in advance.

    Hi,
    1) Copy the existing object and paste in the same class.rename with all.Like my object is 'Department Name'.second object is 'Department Name with All'.Edit  'Department Name with All' and add (union select 'ALL' from dual) in the sql and checked the check box do not generate sql.
    2) Go to the insert and tab and select the condition. create condition like this.and parse the condition.
    (@Select(Department\Department Name) in @Prompt('Department','A','Department\Department Name',multi,free)
    OR ('ALL') IN @Prompt('Department','A','Department\Department Name with all',multi,free) )
    3) use this condition in the report and you can hide the 'with All' object in the universe so that it can not visible to the users as this is specfic for the All condition.
    Hope this helps you.
    Thanks,
    Amit

  • Graphical issue with resizing pop up reports

    I am creating a system for my work in Access. Almost completely done and I have made some reports (based on queries) for one of our managers to view. I have these loading from a command button on a form with the code: 
    DoCmd.OpenReport "-reportname-", acViewReport
    I have the pop up parameter set to yes as I am locking down the program for users so that they don't have access to any menus etc, so when I was loading the reports there was no way for them to get back out of them again.
    When they load they work fine and display fine. The issue comes if I try to maximise, minimize or otherwise change the size of them. I have a screenshot of the original state of the report and then when it is maximised (although unfortunately my account
    is not verified so I cannot add them) but basically the window graphic bugs out. Scrolling with the mouse wheel seems to refresh the page and fix the issue, but only temporarily. Scrolling using the scrollbars leaves a trail of scrollbar selectors behind it.
    I have tried different screen resolutions and display settings etc. I am running Access 2010 on Windows 7 Professional SP1 64-bit with 8GB of ram so I don't feel like it should be a display issue but that is all I can think.
    Any ideas?

    Hi Jonny,
    It is hard to reproduce this issue.
    I’m uncertain whether it is related to the code or the product.
    What I thought is to create a simple report, use the same way to open it.
    If the issue is still occurred, the issue is related to the product. After that, I will move the thread to Technet forum for more effective responses.
    If the issue is not occurred, would you mind sharing a simple sample for us to reproduce the issue through SkyDrive?
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Facing Issue with MARS Logs and reports

    Hi
    We have intergrated PIX Firewall and Router with MARS(4.3.3) . we are able to get the AAA Pass/FailAttempts & Configuration Changes for PIX Firewall but not for Router .
    We check on the Agent Machine where we have install Windows Remote Agent of ACS . There we are able to see the logins Pass/FailAttempts made in Routers but its big question that why its not getting . reflected in MARS .Even for configurtion Change report we have given the IP-address of MARS to one of our Syslog Machince and found that the Syslogs from Routers are getting reflected there but if change back to MARS then we are not able to get it reflected
    CAN anyone help me out in this issue as you can see above we have tried all possible troubleshooting

    Hi
    We have intergrated PIX Firewall and Router with MARS(4.3.3) . we are able to get the AAA Pass/FailAttempts & Configuration Changes for PIX Firewall but not for Router .
    We check on the Agent Machine where we have install Windows Remote Agent of ACS . There we are able to see the logins Pass/FailAttempts made in Routers but its big question that why its not getting . reflected in MARS .Even for configurtion Change report we have given the IP-address of MARS to one of our Syslog Machince and found that the Syslogs from Routers are getting reflected there but if change back to MARS then we are not able to get it reflected
    CAN anyone help me out in this issue as you can see above we have tried all possible troubleshooting

  • Issue with scheduling a quarterly report in Central Management Console

    Hi there,
    I'm new to BusinessObjects and am a brand new member of the forum here and this is my maiden post and I'm hoping that the community here can help with an issue I have encountered. Basically we are using BusinessObjects Exterprice XI Release 2 and had a report schedule set-up to run Every N months Where N is 3, the start date was set as the 22:30 on 31/3/2009 and the report ran as scheduled on that date, however, the report didn't subsequently run at the end of Q2. I suspect it may be due to the date being set as the 31st March and that, ft is is to run every 3 months, that it tried to roll forward to 31st June which is obviously an invalid date. Has anyone seen this issue before and can you advise on the possible reason and a workaround/solution?
    Thanks in advance...

    Hope you have already got know on how to add new programs to CMC. (CMC->Folders->Manage->Add->Program file->Browse and select the program)
    To replace...
    If you are using SAP BO XI R3.x, you can use "Import wizard" or LCM for replacing \ overwriting the existing version of any objects (Programs, Crystal, webi reports etc..,) from one environment to another (Dev-QA, QA-UAT, UAT-Prod).
    If you are using SAP BI 4.x, you can use Promotion Management which is integrated within the CMC to replace or overwrite the existing version of any objects from one environemnt to another.
    To know more about using Import Wizard - http://scn.sap.com/docs/DOC-20523
    To know more about LCM or Promotion Management - http://help.sap.com/businessobject/product_guides/boexir31/en/xi31_LCM_User_en.pdf
    Note: If you are using LCM in R3.x or Promotion Management in BI 4.x, you can also utilize the "Version management" to manage your versions to keep track off.

Maybe you are looking for

  • How to use CWD4ALL with SQLDeveloper?

    Could someone giv me an insight on how to use the trail version of this tool reverse engineer an existing schema mentioned as a connection in SQL Developer?

  • JDBC Driver Deployment

    Hi All, I'm in the process of deploying the drivers required for the JDBC adapter. I'm following the documentation (and using the tools) provided in the following link: https://websmp206.sap-ag.de/~sapdownload/011000358700007048402005E/HowInstallExte

  • Updates to User Manuals

    Having finally resolved my issues with getting my RAM working at 1066  I am now wondering when new manual updates will be available online for some of these motherboards. My P45 Platinum manual supplied with the motherboard appears identical to the p

  • Microsoft VM and Sun VM

    I wounder if smbd could explain me. Is there any problems with communication between Microsoft VM and programs that were compiled with Sun JDK. I develop a applet and compile it with Sun JDK. But I doesn't work on the Microsoft VM in my IE. Could it

  • Product Proposal

    Hi, I need to implement product proposal in CICWinClient. Customers Clients frequently buy the same things. So product proposal should contain e.g. all products bougth as well in the last n orders, excluding <u>no</u> product. How can I do this? Than