Printing the header of a report  and checking the join statement...

Hi All,
This report of mne is working fine but there are things that i want to include: when i print this report i want it to display heading of which is in the html_top_of_page but it does not print it, i am not familiar with smart forms so i won't be able to use smart forms.If anyone can help me out i will really appreciated and will immediately reward points......please help me guys as the due date is very close...and please check the joins on the select statement, not sure whether i've joined the tables properly!
REPORT  Z_ORDER_AUDIT_NEW.
TYPE-POOLS: SLIS.
               LIST OF TABLES
Tables: vbak, likp, vbrk, kna1, vbrp, nast.
                     DEFINITION OF FIELDS                               *
DATA: itb_fieldcat TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
      w_fieldcat TYPE slis_fieldcat_alv.
DATA: w_cnt LIKE sy-tabix.
DATA: lv_layout TYPE slis_layout_alv,
      lv_tab_group TYPE slis_t_sp_group_alv,
      lv_repid LIKE sy-repid,
      lv_events TYPE slis_t_event,
      lv_print  TYPE slis_print_alv,
      lv_user   TYPE slis_formname VALUE 'USER_COMMAND'.
         SELECTION SCREEN                                                 *
SELECT-OPTIONS:
  s_lfdat FOR likp-lfdat,
  s_imwrk FOR likp-imwrk.
             DEFINITION OF AN INTERNAL TABLE                              *
DATA: Begin of i_ordertab occurs 0,
         audat  LIKE vbak-audat,
         vbeln  LIKE vbak-vbeln,
         lfdat  LIKE likp-lfdat,
         erdat  LIKE likp-erdat,
         vbeln1 LIKE likp-vbeln,
         vbeln2 LIKE vbrk-vbeln,
         erdat1 LIKE vbrk-erdat,
         kunrg  LIKE vbrk-kunrg,
         name1  LIKE kna1-name1,
         regio  LIKE vbrk-regio,
         inco1  LIKE vbrk-inco1,
         vrkme  LIKE vbrp-vrkme,
         ntgew  LIKE vbrp-ntgew,
         gewei  LIKE vbrp-gewei,
         volum  LIKE vbrp-volum,
         voleh  LIKE vbrp-voleh,
         netwr  LIKE vbrk-netwr,
       End of i_ordertab.
               READ THE DATA                                               *
  SELECT vbakaudat vbakvbeln likplfdat likperdat likpvbeln vbrkvbeln
         vbrkerdat vbrkkunrg kna1name1 vbrkregio vbrkinco1 vbrpvrkme
         vbrpntgew vbrpgewei vbrpvolum vbrpvoleh vbrk~netwr
         FROM likp join kna1 on likpkunnr EQ kna1kunnr
                   join vbrk on kna1kunnr EQ vbrkkunrg
                   join vbrp on vbrkvbeln EQ vbrpvbeln
                   join vbak on kna1kunnr EQ vbakkunnr
         INTO i_ordertab
         WHERE likp~lfdat IN s_lfdat
         AND   likp~imwrk IN s_imwrk.
         APPEND i_ordertab.
  ENDSELECT.
                     PERFORM STATEMENTS                                   *
PERFORM build_fieldcatalog.
PERFORM build_layout.
PERFORM build_event.
PERFORM build_print.
PERFORM display_alv_report.
FORM build_fieldcatalog.
  w_cnt = 1.
  itb_fieldcat-fieldname = 'AUDAT'.
  itb_fieldcat-seltext_m = 'Document date'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  itb_fieldcat-key       = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'VBELN'.
  itb_fieldcat-seltext_m = 'S/O number'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'LFDAT'.
  itb_fieldcat-seltext_m = 'Deliv. date'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'ERDAT'.
  itb_fieldcat-seltext_m = 'Del. Crt Date'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'VBELN1'.
  itb_fieldcat-seltext_m = 'Delivery No.'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'VBELN2'.
  itb_fieldcat-seltext_m = 'Invoice No.'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'ERDAT1'.
  itb_fieldcat-seltext_m = 'Invoice Date'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'KUNRG'.
  itb_fieldcat-seltext_m = 'Payer'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'NAME1'.
  itb_fieldcat-seltext_m = 'Payer-Description'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'REGIO'.
  itb_fieldcat-seltext_m = 'Region'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'INCO1'.
  itb_fieldcat-seltext_m = 'Incoterms'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'VRKME'.
  itb_fieldcat-seltext_m = 'Billed Quantity'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'NTGEW'.
  itb_fieldcat-seltext_m = 'Net weight'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'GEWEI'.
  itb_fieldcat-seltext_m = 'Weight Unit'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'VOLUM'.
  itb_fieldcat-seltext_m = 'Volume'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'VOLEH'.
  itb_fieldcat-seltext_m = 'VOLUME UNIT'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
  w_cnt = w_cnt + 1.
  itb_fieldcat-fieldname = 'NETWR'.
  itb_fieldcat-seltext_m = 'Net Value'.
  itb_fieldcat-col_pos   = w_cnt.
  itb_fieldcat-emphasize = 'X'.
  itb_fieldcat-ref_tabname  = 'VBRK' .
  itb_fieldcat-ref_fieldname = 'NETWR' .
  itb_fieldcat-do_sum = 'X' .
  APPEND itb_fieldcat TO itb_fieldcat.
  CLEAR itb_fieldcat.
ENDFORM.
FORM build_layout.
    lv_layout-no_input           = 'X'.
    lv_layout-colwidth_optimize  = 'X'.
    lv_layout-totals_text        = 'Totals'(201).
    lv_layout-detail_popup       = 'X'.
ENDFORM.
FORM build_event.
  DATA i_event TYPE slis_alv_event.
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
     EXPORTING
       i_list_type = 0
     IMPORTING
       et_events   = lv_events[].
   READ TABLE lv_events WITH KEY name = slis_ev_user_command
                        INTO i_event.
   if sy-subrc = 0.
     MOVE lv_user TO i_event-form.
     APPEND i_event TO lv_events.
   endif.
ENDFORM.
FORM build_print.
     lv_print-reserve_lines = '2'.
     lv_print-no_coverpage  = 'X'.
ENDFORM.
*&          FUNCTION ALV DISPLAY
FORM display_alv_report.
lv_repid = sy-repid.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
   I_CALLBACK_PROGRAM             = lv_repid
   I_CALLBACK_USER_COMMAND        = slis_ev_user_command
   I_CALLBACK_HTML_TOP_OF_PAGE    = 'HTML_TOP_OF_PAGE' " see FORM
   I_CALLBACK_HTML_END_OF_LIST    = 'END_OF_LIST_HTML'   "see FORM
   IS_LAYOUT                      = lv_layout
   IT_FIELDCAT                    = itb_fieldcat[]
   IT_SPECIAL_GROUPS              = lv_tab_group
   I_SAVE                         = 'X'
   IT_EVENTS                      = lv_events
   IS_PRINT                       = lv_print
  TABLES
    t_outtab                      = i_ordertab
  EXCEPTIONS
    PROGRAM_ERROR                 = 1
    OTHERS                        = 2.
IF sy-subrc <> 0.
ENDIF.
ENDFORM.
*&      Form  html_top_of_page
FORM html_top_of_page USING document TYPE REF TO cl_dd_document.
  DATA: text TYPE sdydo_text_element.
  CALL METHOD document->add_gap
    EXPORTING
      width = 100.
  text =  'Cadbury: Daily Audit of Orders'.
  CALL METHOD document->add_text
    EXPORTING
      text      = text
      sap_style = 'HEADING'.
  CALL METHOD document->new_line.
  CALL METHOD document->new_line.
  CALL METHOD document->new_line.
  text = 'User Name : '.
  CALL METHOD document->add_text
    EXPORTING
      text         = text
      sap_emphasis = 'Strong'.
  CALL METHOD document->add_gap
    EXPORTING
      width = 6.
  text = sy-uname.
  CALL METHOD document->add_text
    EXPORTING
      text      = text
      sap_style = 'Key'.
  CALL METHOD document->add_gap
    EXPORTING
      width = 50.
  text = 'Date : '.
  CALL METHOD document->add_text
    EXPORTING
      text         = text
      sap_emphasis = 'Strong'.
  CALL METHOD document->add_gap
    EXPORTING
      width = 6.
  text = sy-datum.
  CALL METHOD document->add_text
    EXPORTING
      text      = text
      sap_style = 'Key'.
  CALL METHOD document->add_gap
    EXPORTING
      width = 50.
  text = 'Time : '.
  CALL METHOD document->add_text
    EXPORTING
      text         = text
      sap_emphasis = 'Strong'.
  CALL METHOD document->add_gap
    EXPORTING
      width = 6.
  text = sy-uzeit.
  CALL METHOD document->add_text
    EXPORTING
      text      = text
      sap_style = 'Key'.
ENDFORM.
FORM end_of_list_html USING end TYPE REF TO cl_dd_document.
DATA: ls_text TYPE sdydo_text_element,
    l_grid TYPE REF TO cl_gui_alv_grid,
    f(14) TYPE c VALUE 'SET_ROW_HEIGHT',
    w_lines type i,
    w_lines1(9) type n.
DESCRIBE TABLE i_ordertab LINES w_lines.
w_lines1 = w_lines.
concatenate: 'TOTAL NUMBER OF RECORDS SELECTED:  ' w_lines1 INTO ls_text
                              SEPARATED BY space.
adds test (via variable)
   CALL METHOD end->add_text
  EXPORTING
    text = ls_text
    sap_emphasis = 'strong'.
adds new line (start new line)
   CALL METHOD end->new_line.
*set height of this section
   CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
     e_grid = l_grid.
    CALL METHOD l_grid->parent->parent->(f)
    EXPORTING
      id = 3
      height = 14.
ENDFORM. "end_of_list_html.
--END OF THE REPORT--

Hi
1. first remove the ENDSELECT..use INTO table itab or INTO CORRESPONDING fields, Since you are joining the  more tables this will take lot of time.
2. You are just using two fields from LIKP as selection screen  fields to fetch the so much data.
see the table linkings apartfrom KUNNR between the tables
LIKP-VBELN = LIPS-VBELN
LIPS-VGBEL = VBAK-VBELN and  LIPS-VGPOS = VBAP-POSNR
and
VBRP-AUBEL = VBAK-VBELN and VBRP-AUPOS = VBAP-POSNR and
VBRP-VGBEL = LIKP-VBELN  and VBRP-VGPOS = LIPS-POSNR
use the above links and code again.
<b>Reward points for useful Answers</b>
Regards
Anji

Similar Messages

  • I am trying to sync a playlist to my Nano,  but when I click on the Music tab at the top, it will not allow me to select the option Selected Playlist, Artists, etc.  I cannot un-check the Entire Music library option and check the Selected Artist - on

    I am trying to sync a playlist to my Nano,  but when I click on the Music tab at the top,
    it will not allow me to select the option Selected Playlist, Artists, etc.  I cannot un-check the Entire Music library
    option and check the Selected Artist … one.
    I have changed the Sync option to Manually sync, but that does not help.
    How can I change this to the second option?
    Thanks.

    There is a checkbox above those two options for how to sync.  It says Sync Music; it enables automatic syncing.  That box needs to be checked before you can select from the two options for how automatic syncing is performed.
    NOTE:  If the iPod is current set up to Manually manage music [and videos], checking that Sync Music box replaces its current content with content from your iTunes library, based on how automatic syncing is set up on that screen.
    So, if your goal is to add ONE playlist to an iPod that is managed manually, you do not want to do this because iTunes will erase the iPod's current content and replace it with just that ONE selected playlist (and whatever else you select on that Music settings screen).
    Instead, if the iPod currently uses the manual setting, you need to add playlists manually to the iPod (not use the automatic syncing setting).  Please post back with more details about your situation. 

  • How to unlock the request for a report and add the same query to new reques

    hi,
         how to unlock the request for a  and add the same query to new reques

    You can unlock in SE03 tcode.
    Goto tcode SE01, give the transport number --> display --> double click on the transport --> in the next screen select all the elements --> delete --> save.
    To attach it to another transport, In RSA1, click on transport connection> Choose Object types> query elements --> here you can find your query/ or you can search, which you can drag to right and attach to the transport (using truck button).

  • How can I display the range for LastFullMonth in the header of a report

    How can I display the month for LastFullMonth in the header of a report run in the past so that a report that ran sept 1 2009 selecting data for LastFullMonth (august 2009)  displays sept 2009 in the header even if there is no data selected by the report?

    Good,
    Sometimes I answer these questions and completly miss it....
    ( lack of understanding on my part )   

  • (Cisco Historical Reporting / HRC ) All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054

    Hi All,
    I am getting an error message "All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054"  when trying to log into HRC (This user has the reporting capabilities) . I checked the log files this is what i found out 
    The log file stated that there were ongoing connections of HRC with the CCX  (I am sure there isn't any active login to HRC)
    || When you tried to login the following error was being displayed because the maximum number of connections were reached for the server .  We can see that a total number of 5 connections have been configured . ||
    1: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Current number of connections (5) from historical Clients/Scheduler to 'CRA_DATABASE' database exceeded the maximum number of possible connections (5).Check with your administrator about changing this limit on server (wfengine.properties), however this might impact server performance.
    || Below we can see all 5 connections being used up . ||
    2: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:[DB Connections From Clients (count=5)]|[(#1) 'username'='uccxhrc','hostname'='3SK5FS1.ucsfmedicalcenter.org']|[(#2) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#3) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#4) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#5) 'username'='uccxhrc','hostname'='47BMMM1.ucsfmedicalcenter.org']
    || Once the maximum number of connection was reached it threw an error . ||
    3: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Number of max connection to 'CRA_DATABASE' database was reached! Connection could not be established.
    4: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Database connection to 'CRA_DATABASE' failed due to (All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054.)
    Current exact UCCX Version 9.0.2.11001-24
    Current CUCM Version 8.6.2.23900-10
    Business impact  Not Critical
    Exact error message  All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054
    What is the OS version of the PC you are running  and is it physical machine or virtual machine that is running the HRC client ..
    OS Version Windows 7 Home Premium  64 bit and it’s a physical machine.
    . The Max DB Connections for Report Client Sessions is set to 5 for each servers (There are two servers). The no of HR Sessions is set to 10.
    I wanted to know if there is a way to find the HRC sessions active now and terminate the one or more or all of that sessions from the server end ? 

    We have had this "PRX5" problem with Exchange 2013 since the RTM version.  We recently applied CU3, and it did not correct the problem.  We have seen this problem on every Exchange 2013 we manage.  They are all installations where all roles
    are installed on the same Windows server, and in our case, they are all Windows virtual machines using Windows 2012 Hyper-V.
    We have tried all the "this fixed it for me" solutions regarding DNS, network cards, host file entries and so forth.  None of those "solutions" made any difference whatsoever.  The occurrence of the temporary error PRX5 seems totally random. 
    About 2 out of 20 incoming mail test by Microsoft Connectivity Analyzer fail with this PRX5 error.
    Most people don't ever notice the issue because remote mail servers retry the connection later.  However, telephone voice mail systems that forward voice message files to email, or other such applications such as your scanner, often don't retry and
    simply fail.  Our phone system actually disables all further attempts to send voice mail to a particular user if the PRX5 error is returned when the email is sent by the phone system.
    Is Microsoft totally oblivious to this problem?
    PRX5 is a serious issue that needs an Exchange team resolution, or at least an acknowledgement that the problem actually does exist and has negative consequences for proper mail flow.
    JSB

  • When I check my boot SSD drive using Disk Utility under Mavericks, I often get "Incorrect number of extended attributes" errors.  But if I boot off an external drive and check the same SSD, no errors are reported.  Is this a bug in Mavericks?

    When I check my boot SSD drive using Disk Utility under Mavericks, I often get "Incorrect number of extended attributes" errors.  But if I boot off an external drive and check the same SSD, no errors are reported. 
    This happens not just with the SSD in my Mac Mini, but with another SSD in my MacBook (both now running Mavericks).  So far as I know, all of the kit I am using is in good order (despite the file corruption reports).  So I am beginning to wonder if it could be due to a bug in Mavericks?  Both SSD drives have been formatted to MacOS Extended (journaled) format.  Should I have used a different format, I wonder?
    Has anyone else encountered this issue?
    Does anyone have a solution?
    Or an explanation that might help my investigation of the issue?
    Thanks guys,

    I understand that the Corsair Force 3 is not one of the SSD drives that are supported on Apple Macs. 
    I did try downloading and using Trim Enabler, but the error message came up both when it was off and when it was on.
    I understand that not everyone thinks Trim Enabler is a good program, though there is a new version out now, so I may give it another try.

  • How to run the report and show the output in excel file

    salam
    how to run the report and show the output in excel file,
    how to run the report and print the o/p via printer
    how to run the report and send the o/p via mail
    thank u all

    Hi,
    There are Parameters DESTTYPE, DESFORMAT and DESNAME. You can set these parameters to get as you want.
    1) Output in Excel File
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'FILE');
         ADD_PARAMETER(PL_ID, 'DESFORMAT', TEXT_PARAMETER, 'DELIMITED');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<file_name>.XLS');2) output to printer
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'PRINTER');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<printer_name>');3) Email - Have to configure SMTP and all. ( i didn't checked it)
         ADD_PARAMETER(PL_ID, 'DESTYPE', TEXT_PARAMETER, 'MAIL');
         ADD_PARAMETER(PL_ID, 'DESNAME', TEXT_PARAMETER, '<email_id>');Regards,
    Manu.
    If this answer is helpful or correct, please mark it. Thanks.

  • Adding Variable inside Print Options Header in OBIEE Report

    Hi All,
    Can we add a variable or access via @1,@2 column convension in the Print Options - Header / Footer sections. I want the values to appear only when users click the print option.
    Thanks,
    Sreekanth

    Yes you can refer variables in the Header and Footers properties.
    like for session , @{biServer.variables['NQ_SESSION.CURRENT_YEAR']}
    Also have a look at : How to generate dynamic Headers In OBIEE Reports [ID 1162344.1]
    HTH,
    SVS

  • Report to check the stock transfer through 303 mvt type

    Hi,
    I understand that the stock transfer can be done through two ways
    1. Using 351 against UB PO and go MIGO using 101 --> Can be checked in the report MB5T, for stock in transit
    2. Using 303 and 305 mvt type --> the stock lies in Stock trans(Plant)
    When we do 303 mvt type, is there any standard report to check the stock in stock trans (Plant) ? Please let us know.

    hello
    for this you can use MB51 only. same report you can give the movement types as 313 & 315.
    Laxman

  • Passing values to subreport in SSRS throwing an error - Data Retrieval failed for the report, please check the log for more details.

    Hi,
    I have the subreport calling from the main report. The subreport is based on MDX query agianst the SSAS cube. some dimensions in cube has values 0 and 1.
    when I try to pass '0' to the sub report as the parameter value, it gives an error "Data Retrieval failed for the report, please check the log for more details".
    Actually I am using table for storing these parameter values. In the main report I am calling this table (dataset) and passing these values to subreport.
    so I have given like [0],[1] and this works fine. when I give only either [0] or [1] then it is throwing an error.
    Could you please advise on this.
    Appreciate all and any help.
    Thanks,
    Divya

    Hi Divya,
    Based on the current description, I understand that there is no issue if you pass two values from main report to subreport, while the issue occurs when passing one value to subreport.
    To narrow down the issue, I want to confirm whether the subreport can run if there is only [0] or [1] in the subreport. If so, it indicates the query statements exist error in the subreport. If it’s not the case, this shows the issue occurs during passing
    values from main report to subreport. To make further analysis, please post the details of query statements of the subreport to the forum.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • I can not dowload the new updated software for my Ipod touch 4G. When i do I get an error message that says Network connection has timed out. I have done the trouble shooting steps. Downloaded the latest version of Itunes, and checked network connection

    I can not dowload the new updated software for my Ipod touch 4G. When i do I get an error message that says Network connection has timed out. I have done the trouble shooting steps. Downloaded the latest version of Itunes, and checked network connection

    Disabling the computer's antivirus and firewall during the download and update usually resolves the timeout error.

  • Inserting a link to BI Publisher report and passing the dashboard prompts

    I have an answers dashboard where there are various prompts (say P1, P2, P3, P4  -all these are date prompts )and various  reports.
    These Prompts are stored as Presentation variable say var1, var2, var3, var4.
    I need to insert a Link on this page to a BI Publisher Report.  BI Publisher report also has some prompts say D1, D2, D3 , D4, D5, D6
    The link should take the values from the prompts of this page and open the BI Publisher report with D1= value of Prompt P1,
    D2= value of prompt P2, D3= value of Prompt P3, and D4= value of Prompt P4.
    I was easily able to use an action link -> "Navigate to Web Page" option.  I gave the URL for this BI Publisher report and clicking on that link takes me to the report.
    But I am still figuring out out to send the values of the prompts.
    The BI Publisher Report is :
    - built from an RTF template.
    - uses a SQL Query with Bind variables to get the value of its prompts D1, D2, D3, D4, D5, D6.
    - Suppose D1 is bind variable :date1, D2 is bind variable :date2, D3 is bind variable :date3 and D4 is bind variable :dat4.
    So my first try was to append the value of bind variable to the URL
    https://xxname.server.com/analytics/saw.dll?bipublisherEntry&Action=open&itemType=.xdo&bipPath=%2FSurvey%2FPhoneCount%20Record.xdo&path=%2Fshared%2FSurvey%2FPhoneCount%20Record.xdo.xdo&date1=var1
    Can someone suggest the steps I need to take to make this work.
    Thanks

    Hi, I am facing the same issue (OBIEE 11g version0
    Please let me know if you found any solution or workaround for this?
    Thanks!!

  • AirPlay not showing on iPad anywhere. I've tried ation and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    AirPlay not showing on iPad anywhere. I've tried all of the rebooting functions and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    To use AirPlay, you need the following:
    1. iPhone 4s (or later), iPad 2 (or later), iPad mini, or iPod touch (5th generation)
    2. Apple TV (2nd or 3rd generation)
    3. AirPort Express
    4. Wi-Fi (802.11a/g/n) network
    http://support.apple.com/kb/ht4437

  • With version 3.6.3 I can no longer do a right click with the mouse and check the properties of a live url link on web pages

    Windows XP Pro, SP3. Firefox 3.6.3. Ever since updating to this version a few weeks ago I can no longer do a right click of the mouse and check the properties of an active url link on webpages. I've always had the option before. I want this feature back!!!!

    In Firefox 3.6 Properties has been removed from the right click context menu.
    You can use ''View Image Info'' or ''View Page Info'' in the right click context menu to see the (image) properties.
    You can use the above mentioned extension (Element Properties 6) to get that context menu item back.
    See also Link And Forminfo: https://addons.mozilla.org/firefox/addon/6939

  • How to create a service order and check the internal order in R/3

    Required Solution:
    1. How to copy existing service order and create new one and check the internal order in R/3, whether the certain service order is correctly created in r/3, can you polease explain the steps plz.
    2. If i am creating service order by service template finally the service order is getting created but it is not showing me in the table iaom_crm_aufk, how to check this.
    can any one help me in this issues as soon as possible.

    Hello Zita,
    Try to restart your portal after creating <b>ServiceUser</b> in both UME and KM.
    One more major difference between ServiceUser and normal portal user is that a ServiceUser does not have a UserAccount (IUserAccount)
    Object serviceContext = null;
            try {
                serviceContext = AccessController.doPrivileged(new PrivilegedExceptionAction() {
                    public Object run() throws WcmException {
                        return ResourceFactory.getInstance().getServiceContext(CONTRACT_SERVICE_USER);
            } catch (PrivilegedActionException e) {
                logger.severe(e, "ResourceContext for the technical " + serviceUser +
                     " user could not be retrieved.");
    IResourceContext resCtx = (IResourceContext) serviceContext;
    So I modify all KM resources with this resCtx.
    Hope this helps ...
    Greetings,
    Praveen Gudapati
    p.s. Points are always welcome for helpful answers

Maybe you are looking for

  • Poor graphics on export.

    I am creating a project in FCP and I have imported a psd. file to fade in and out at the beginning and end. My sequence settings have a frame size of 320x240 and my graphic file is created in the same resolution in Photoshop before I import it. The g

  • Background Chroma Key

    Hey guys, first of all sorry for my bad english I hope you understand what I want Is there a function in AE to subtract the background behind an object when I have the background without the object as well? (I want something like a chroma key, just f

  • Cannot find the object "ApShellExtra.dbo.AuditActivityHdrApShell"

    After installing BPC 7.5 MS SP06 processing the Planning application in ApShell throws the following error: Cannot find the object "ApShellExtra.dbo.AuditActivityHdrApShell" Looking in ApShellExtra the table doesn't exist. It seems like about 75% of

  • How to download all files from a shared workspace

    Is there a way to download your entire workspace contents locally to my computer?

  • OSS Fails to Compile

    Relinking OSS kernel modules for "3.7.5-1-ARCH SMP preempt mod_unload modversions " This may take few moments - please stand by... OSS build environment set up for REGPARM kernels Warning: Cannot locate the Linux kernel development package for Linux