To create a normal interactive report

Hai All!
   i want to create a normal interactive report, in the basic list CARRID should be displayed with checkbox. the detail list should be displayed after selecting the checkboxes & clicking the pushbotton in application toolbar.
plz help me to findout the solution.

Hi smitha,
Report z_sfpfli.
*Data Declarations ...................................................
  Field String fs_spfli                                              *
DATA:
  BEGIN OF fs_spfli,
   carrid LIKE spfli-carrid,           " Airline Code
   connid LIKE spfli-connid,           " Flight Connection Number
   airpfrom LIKE spfli-airpfrom,       " Departure airport
   airpto   LIKE spfli-airpto,         " Destination airport
   deptime  LIKE spfli-deptime,        " Departure time
   arrtime LIKE  spfli-arrtime,        " Arrival time
  END OF fs_spfli.
*Data Declarations ...................................................
  Field String fs_sflight                                           *
DATA:
  BEGIN OF fs_sflight,
   carrid LIKE spfli-carrid,           " Airline Code
   connid LIKE spfli-connid,           " Flight Connection Number
   date LIKE sflight-fldate,           " Flight date
   seatsmax LIKE sflight-seatsmax,     " Maximum capacity in economy
                                       " class
   seatsocc LIKE sflight-seatsocc,     " Occupied seats in economy
                                       " class
  END OF fs_sflight.
   Internal Table To Hold spfli Table Details                       *
DATA:
  t_spfli LIKE
   STANDARD TABLE
     OF fs_spfli.
   Internal Table To Hold sflight Table Details                     *
DATA:
  t_sflight LIKE
   STANDARD TABLE
     OF fs_sflight.
DATA:
  w_checkbox TYPE c,
  w_lines    TYPE i,
  w_currentline TYPE i,
  w_last_line TYPE i.
TOP-OF-PAGE.
  PERFORM top_flight_data.
TOP-OF-PAGE DURING LINE-SELECTION.
  PERFORM top_sflight_data.
                      AT SELECTION-SCREEN EVENT                     *
START-OF-SELECTION.
  PERFORM get_flight_data.
*&      Form  TOP_FLIGHT_DATA
This subroutine DISPLAY to_flight_data                             *
There are no interface parameters to be passed to this subroutine.
FORM top_flight_data .
  SKIP 2.
  FORMAT COLOR 5 ON.
  WRITE:
    /5(15) 'Airline Code'(010),
     (15) 'Flight Connection Number'(011),
     (10) 'Departure airport'(012),
     (10) 'Destination airport'(013),
     (10) 'Departure time'(014),
     (15) 'Arrival time'(015).
  FORMAT COLOR OFF.
  SKIP 2.
ENDFORM.                    " TOP_FLIGHT_DATA
                      END-OF-SELECTION EVENT                        *
END-OF-SELECTION.
  SET PF-STATUS 'MENU'.
  PERFORM display_flight_data.
AT LINE-SELECTION.
  IF sy-lsind EQ 1.
    PERFORM get_sflight_data.
    PERFORM display_sflight_data.
  ENDIF.                               " IF SY-LSIND..
AT USER-COMMAND.
  SET PF-STATUS space.
  CASE sy-ucomm.
    WHEN 'SELECTALL'.
      w_checkbox = 'X'.
      PERFORM modify_checkbox.
    WHEN 'DSELECTALL'.
      w_checkbox = ' '.
      PERFORM modify_checkbox.
    WHEN 'DISPLAY'.
      PERFORM get_sflight_data1 .
  ENDCASE.                             " CASE SY-UCOMM
*&      Form  GET_FLIGHT_DATA
This subroutine  retrieves necessary data from SPFLI                *
There are no interface parameters to be passed to this subroutine.
FORM get_flight_data .
  SELECT carrid                        " Airline Code
         connid                        " Flight Connection Number
         airpfrom                      " Departure airport
         airpto                        " Destination airport
         deptime                       " Departure time
         arrtime                       " Arrival time
   FROM spfli
   INTO TABLE t_spfli.
ENDFORM.                               " GET_FLIGHT_DATA
*&      Form  DISPLAY_FLIGHT_DATA
This subroutine DISPLAY necessary data from SPFLI                  *
There are no interface parameters to be passed to this subroutine.
FORM display_flight_data .
  LOOP AT t_spfli INTO fs_spfli.
    WRITE:
      /02 w_checkbox AS CHECKBOX,
        fs_spfli-carrid   UNDER text-010,
        fs_spfli-connid   UNDER text-011,
        fs_spfli-airpfrom UNDER text-012,
        fs_spfli-airpto   UNDER text-013,
        fs_spfli-deptime  UNDER text-014,
        fs_spfli-arrtime  UNDER text-015.
    HIDE:
        fs_spfli-carrid,
        fs_spfli-connid.
  ENDLOOP.                             " LOOP AT T_SPFLI INTO...
  w_last_line = sy-linno.
ENDFORM.                               " DISPLAY_FLIGHT_DATA
*&      Form  GET_SFLIGHT_DATA
This subroutine  retrieves necessary data from SFLIGHT             *
There are no interface parameters to be passed to this subroutine.
FORM get_sflight_data .
  SELECT carrid                        " Airline Code
         connid                        " Flight Connection Number
         fldate                        " Flight date
         seatsmax                      " Maximum capacity in economy
                                       " class
         seatsocc                      " Occupied seats in economy
                                       " class
  FROM sflight
  INTO TABLE t_sflight
  WHERE carrid EQ fs_spfli-carrid
  AND   connid EQ fs_spfli-connid.
ENDFORM.                               " GET_SFLIGHT_DATA
*&      Form  top_sflight_data
This subroutine to Display to_sflight_data                         *
There are no interface parameters to be passed to this subroutine.
form top_sflight_data .
SKIP 2.
  FORMAT COLOR 3 ON.
  WRITE:
    /1(15)  'Airline Code'(010)   LEFT-JUSTIFIED,
     15(15) 'Flight Connection Number'(011)   LEFT-JUSTIFIED,
     25(15) 'Flight date'(016)    LEFT-JUSTIFIED,
     38(17) 'Maximum capacity'(017) LEFT-JUSTIFIED,
     48(15) 'Occupied seats'(018) LEFT-JUSTIFIED.
  SKIP 2.
  FORMAT COLOR OFF.
endform.                    " top_sflight_data
*&      Form  DISPLAY_SFLIGHT_DATA
This subroutine DISPLAY  necessary data from SFLIGHT                *
There are no interface parameters to be passed to this subroutine.
FORM display_sflight_data .
  LOOP AT t_sflight INTO fs_sflight.
    WRITE:
      / fs_sflight-carrid UNDER TEXT-010,
        fs_sflight-connid UNDER TEXT-011,
        fs_sflight-date UNDER TEXT-016,
        fs_sflight-seatsmax UNDER TEXT-017,
        fs_sflight-seatsocc UNDER TEXT-018.
  ENDLOOP.                             " LOOP AT T_SFLIGHT INTO...
ENDFORM.                               " DISPLAY_SFLIGHT_DATA
*&      Form  GET_SFLIGHT_DATA1
This subroutine  retrieves necessary data from SFLIGHT
There are no interface parameters to be passed to this subroutine.
FORM get_sflight_data1 .
  DATA
     lw_checkbox TYPE c.
  DESCRIBE TABLE t_spfli LINES w_lines.
  DO w_last_line TIMES.
    w_currentline = 2 + sy-index.
    CLEAR:
      w_checkbox,
      t_spfli.
    READ LINE w_currentline FIELD VALUE
       w_checkbox   INTO lw_checkbox.
    IF sy-subrc EQ 0.
      IF lw_checkbox EQ 'X'.
        PERFORM get_sflight_data .
        PERFORM display_sflight_data .
      ENDIF.                           " IF LW_CHECKBOX..
    ENDIF.                             " IF SY-SUBRC..
  ENDDO.                               " DO W_LAST_LINE
ENDFORM.                               " GET_SFLIGHT_DATA1
*&      Form  MODIFY_CHECKBOX
This subroutine  MODIFIES accordingly
There are no interface parameters to be passed to this subroutine.
FORM modify_checkbox .
  CLEAR w_currentline.
  WHILE w_currentline  LE w_last_line.
    READ LINE w_currentline.
    MODIFY LINE w_currentline FIELD VALUE w_checkbox FROM w_checkbox.
    ADD 1 TO w_currentline.
  ENDWHILE.                            " WHILE w_line LE w_last_line.
ENDFORM.                               " MODIFY_CHECKBOX
Regards,
Sravanthi

Similar Messages

  • APEX 5: Problem displaying breadcrum (Create) button on interactive report

    Hello There
    I am trying to build a small app in APEX 5. I am taking the default 'Sample Database Application' (SDA) as an example for design.
    In SDA the interactive report of Customer a breadcrumb 'Create which is displayed on the top right corner. I am trying to replicate the same in my interactive report, but in vain.
    I have attached the printscreen for your reference. Could you please guide and advise me on how to get the same functionality of breadcrumb create button,etc same as in displayed in SDA into my custom app in APEX 5?
    Thanks a lot for helping me out
    Regards
    Don

    hi ,
    i had used like this .. it is working...
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                            R_SELFIELD TYPE SLIS_SELFIELD.
      clear : v_flag.
      CASE R_UCOMM.
        WHEN 'DATA'.
    LOOP AT IT_TEMP.
         if it_temp-checkbox =  'X'.
              v_flag = 'X'.
              v_pernr1 = IT_TEMP-PERNR.
    *--Get compensation data and populate final internal table
              refresh it_fin.
              CALL FUNCTION 'Z_HR_COMP_STATEMENT'
                EXPORTING
                  PERNR = v_pernr1
                  BEGDA = s_date-low
                  ENDDA = s_date-high
                TABLES
                  FINAL = it_fin.
              if not it_fin[] is initial.
                delete adjacent duplicates from  it_fin comparing pernr.
                read table it_fin index 1.
                move-corresponding it_fin to it_final.
                append it_final.
                clear it_final.
              endif.
            endif.
         enddo.
    ENDLOOP.
          if not v_flag is initial.
    *------ display final data
            PERFORM final_display.
          else.
            message s000 with 'Select atleast one pernr'.
          endif.
      endcase.
    ENDFORM.                    "USER_COMMAND
    regards,
    venkat.

  • Interactive Report uses XML data saved in database for creating PDF files?

    Hello all,
    I installed Apache FOP to allow a PDF "Download" in the Interactive Reports.
    Correct me if i'm wrong, when a PDF file is created with the Interactive Report option "Download", it uses a XML data to make it. Right ??
    I would like know where in the database is this XML code located.
    Regards Pedro.

    After some searching i found that XML its stored as a BLOB and it is used as XML based report data and RTF or XSL-FO based report layout.
    I didn't find yet where is located the XML used by Interactive Reports. If someone knows where in the APEX database is the XML located please share.
    Regards Pedro.

  • Interactive report basic list concept

    Suppose in a basic list i have 7 parallel detail list.i am in basic list is there any way to go directly to 7 th detail list from basiclist or from 1st detail list to 7 th detail list vice-versa.
    plz tell me..i am waiting.. for reply
    thanx
    arya

    Hi...
        Just go through following code.... its for normal interactive reports...
    TYPES : BEGIN OF st_kna1,
    kunnr TYPE kna1-kunnr, "CUSTOMER NUMBER
    name1 TYPE kna1-name1, "CUSTOMER NAME
    END OF st_kna1.
    TYPES : BEGIN OF st_vbak,
    kunnr TYPE kna1-kunnr,
    vbeln TYPE vbak-vbeln, "SALES DOCUMENT NUMBER
    erdat TYPE vbak-erdat, "DATE ON WHICH THE RECORD WAS CREATED
    audat TYPE vbak-audat, "DOCUMENT DATE
    auart TYPE vbak-auart, "SALES DOCUMENT TYPE
    ernam TYPE vbak-ernam, "NAME OF PERSON WHO CREATED THE OBJECT.
    augru TYPE vbak-augru, "ORDER REASON
    END OF st_vbak.
    TYPES : BEGIN OF st_vbap,
    vbeln TYPE vbak-vbeln,
    posnr TYPE vbap-posnr, "SALES DOCUMENT ITEM
    matnr TYPE vbap-matnr, "MATERIAL NUMBER
    charg TYPE vbap-charg, "BATCH NUMBER
    matkl TYPE vbap-matkl, "MATERIAL GROUP
    posar TYPE vbap-posar, "ITEM TYPE
    END OF st_vbap.
    DATA : it_kna1 TYPE STANDARD TABLE OF st_kna1,
    it_vbak TYPE STANDARD TABLE OF st_vbak,
    it_vbap TYPE STANDARD TABLE OF st_vbap,
    wa_kna1 TYPE st_kna1,
    wa_vbak TYPE st_vbak,
    wa_vbap TYPE st_vbap.
    DATA : v_fld(15),
    v_kunnr TYPE kna1-kunnr,
    v_vbeln TYPE vbak-vbeln.
    SELECT-OPTIONS
    PARAMETERS
    SELECT-OPTIONS so_kunnr FOR v_kunnr. "CUSTOMER NUMBER
    PARAMETERS : p_max TYPE i. "NUMBER OF HITS
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM get_customerdata.
    SET PF-STATUS 'MENU1'.
    AT LINE-SELECTION
    AT LINE-SELECTION.
    IF sy-lsind = 1.
    PERFORM get_salesheader.
    ELSEIF sy-lsind = 2.
    PERFORM get_salesitemdata.
    ENDIF.
    AT USER-COMMAND
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'DISP'.
    PERFORM get_salesheader.
    WHEN 'ITEM'.
    PERFORM get_salesitemdata.
    WHEN 'VA03'.
    SET PARAMETER ID 'AUN' FIELD wa_vbak-vbeln.
    CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
    ENDCASE.
    TOP-OF-PAGE
    TOP-OF-PAGE.
    ULINE AT /1(56).
    WRITE : /1 sy-vline ,
    2(15) text-004 COLOR 1 ,
    sy-vline ,
    20(35) text-005 COLOR 1 ,
    sy-vline.
    ULINE AT /1(56).
    TOP-OF-PAGE DURING LINE-SELECTION.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-lsind.
    WHEN 1.
    PERFORM get_topofpage1.
    WHEN 2.
    PERFORM get_topofpage2.
    ENDCASE.
    FORM GET_CUSTOMERDATA
    FORM get_customerdata.
    SELECT kunnr name1
    FROM kna1
    INTO TABLE it_kna1
    UP TO p_max ROWS
    WHERE kunnr IN so_kunnr.
    IF sy-subrc EQ 0.
    LOOP AT it_kna1 INTO wa_kna1.
    WRITE : / sy-vline,
    2(15) wa_kna1-kunnr ,
    sy-vline ,
    20 wa_kna1-name1,
    sy-vline.
    HIDE : wa_kna1-kunnr , wa_kna1-name1.
    CLEAR wa_kna1.
    ENDLOOP.
    ULINE AT : /1(56).
    ELSE.
    MESSAGE w000(z50871msg).
    ENDIF.
    ENDFORM. "GET_CUSTOMERDATA
    FORM GET_SALESHEADER
    FORM get_salesheader.
    SET PF-STATUS 'MENU2'.
    GET CURSOR FIELD v_fld VALUE v_kunnr.
    IF v_fld = 'WA_KNA1-KUNNR'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = v_kunnr
    IMPORTING
    output = v_kunnr.
    SELECT kunnr vbeln erdat audat auart ernam augru
    FROM vbak
    INTO TABLE it_vbak
    WHERE kunnr = v_kunnr.
    IF sy-subrc EQ 0.
    LOOP AT it_vbak INTO wa_vbak.
    WRITE : / sy-vline ,
    2(22) wa_vbak-vbeln ,
    sy-vline,
    27(25) wa_vbak-erdat ,
    sy-vline ,
    55(15) wa_vbak-audat ,
    sy-vline ,
    73(15) wa_vbak-auart ,
    sy-vline,
    91(16) wa_vbak-ernam ,
    sy-vline,
    109(13) wa_vbak-augru,
    123 sy-vline.
    HIDE : wa_vbak-vbeln.
    CLEAR wa_vbak.
    ENDLOOP.
    ULINE AT : /1(123).
    ELSE.
    MESSAGE i015(z50871msg).
    ENDIF.
    ELSE.
    MESSAGE i013(z50871msg).
    ENDIF.
    ENDFORM. "GET_SALESHEADER
    FORM GET_SALESITEMDATA
    FORM get_salesitemdata.
    SET PF-STATUS space.
    GET CURSOR FIELD v_fld VALUE v_vbeln.
    IF v_fld = 'WA_VBAK-VBELN'.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = v_vbeln
    IMPORTING
    output = v_vbeln.
    SELECT vbeln posnr matnr charg matkl posar
    FROM vbap
    INTO TABLE it_vbap
    WHERE vbeln = v_vbeln.
    LOOP AT it_vbap INTO wa_vbap.
    WRITE : /1 sy-vline,
    2(13) wa_vbap-posnr ,
    sy-vline,
    18(18) wa_vbap-matnr ,
    sy-vline,
    40(13) wa_vbap-charg ,
    sy-vline,
    56(16) wa_vbap-matkl ,
    sy-vline,
    75 wa_vbap-posar,
    112 sy-vline.
    CLEAR wa_vbap.
    ENDLOOP.
    ULINE AT : /1(112).
    ELSE.
    MESSAGE i014(z50871msg).
    ENDIF.
    ENDFORM. "GET_SALESITEMDATA
    FORM GET_TOPOFPAGE1
    FORM get_topofpage1.
    ULINE AT : /1(123).
    WRITE : / sy-vline ,
    2 text-000 ,
    wa_kna1-kunnr ,
    75 text-001 ,
    wa_kna1-name1,
    123 sy-vline.
    ULINE AT : /1(123).
    WRITE : / sy-vline ,
    2(22) text-006 COLOR 1,
    sy-vline,
    27(25) text-007 COLOR 1 ,
    sy-vline ,
    55(15) text-008 COLOR 1 ,
    sy-vline ,
    73(15) text-009 COLOR 1 ,
    sy-vline,
    91(16) text-010 COLOR 1 ,
    sy-vline,
    109(13) text-011 COLOR 1,
    123 sy-vline.
    ULINE AT : /1(123).
    ENDFORM. "GET_TOPOFPAGE1
    FORM GET_TOPOFPAGE2
    FORM get_topofpage2.
    ULINE AT : /1(112).
    WRITE : / sy-vline ,
    2 text-000 ,
    wa_kna1-kunnr ,
    35 text-001 ,
    wa_kna1-name1 ,
    85 text-003 ,
    wa_vbak-vbeln ,
    112 sy-vline.
    ULINE AT : /1(112).
    WRITE : /1 sy-vline,
    2(13) text-012 COLOR 1,
    sy-vline,
    18(18) text-013 COLOR 1 ,
    sy-vline,
    40(13) text-014 COLOR 1 ,
    sy-vline,
    56(16) text-015 COLOR 1 ,
    sy-vline,
    75 text-016 COLOR 1 ,
    112 sy-vline.
    ULINE AT : /1(112).
    ENDFORM. "GET_TOPOFPAGE2
    Thanks,
    Naveen.I

  • CRM Interactive reports not loading any data on WEB UI

    CRM BI client is setup properly by following CRM IR config guide C41.
    /CRMBW/CONFIG_WIZARD doesn't show any major errors. I am able to create
    the custom interactive reports but when these reports are executed no
    data shows up in the report.For example ,we are building interactive
    reports under opportunities area for a user, who has opportunities in
    the system.
    Our CRM Sytem is on CRM7.0 EHP1 SPS3.
    Thanks
    Thirumala

    Hi Thirumala,
    if still relevant (sorry for the late reply): check if the user is assigned to a business partner (employee), which is assignet to a correct position in the CRM Org model, and that this business partner is the employee responsible of the sales documents you want him to see in the reports.
    Alternatively, the user's business partner can be a manager of such an employee.
    Best regards

  • Issue with Date showing Null in interactive report

    I created an interactive report for a customer and was confused to see blanks or more specifically dashes where there should be dates in one of the fields. I knew this field should have data so I did some testing and this is what I have found:
    The sql I am running is:
    select
    assigned_to_company,
    last_resolved_date,
    incident_id
    from
    rhpd0009_im_adherence_rpt2_vw
    When I run the command in SQL workshop I get the following results with data in the last_resolved_date field:
    [http://i83.photobucket.com/albums/j299/yogibayer/apexdateissuesqlcommand.jpg]
    I copied and pasted the SQL from SQL workshop and created a new interactive report and got the following results with no last_resolved_dates showing up:
    [http://i83.photobucket.com/albums/j299/yogibayer/apexdateissueinteractivereport.jpg]
    For some reason the order is different, but the first one INC1117629 shows up in both of them and has a last_resolved_date in SQL workshop, but not in the interactive report. Any help would be appreciated.
    Thank You
    Scott

    Varad,
    It seems to be related to the function we use to convert Remedy dates to Viewable dates. Remedy dates are stored as an integer that represents the absolute number of seconds from Jan 1, 1970 at 12:00 AM. We use a function that converts this number into a human readable date. I have tried encapsulating the result of the function in a TO_DATE and a TO_CHAR with the same results as before. There is something about the resulting data from the date convert function that Apex doesn't like. It would be interesting to isolate what exactly the issue is, but right now I'm just trying to find a work around.
    Thank You
    SCott

  • Control on Interactive Report Data displaying

    Hi All,
    We are using APEX 4.0.
    Here are the few things that I am trying to accomplish -
    I have created a few interactive reports in different tabs. Each report takes 4 parameters from the screen, and the values get to carry to the next report.
    1. When users first come in to the tab, I don't want the report to be displayed until the SUBMIT button is clicked.
    Currently, we have created an item (dis_flag) and use 1 or 0 to control the display. But, the page always get requery after the users browsing to other tabs and come back. Any other methods that you can advise?
    2. Once the submit button is clickeded, the data should be kept on this page even after the users browsing around the application. No data should be change, until the SUBMIT button is been clicked again. Any ideas on this one?
    The reason that we don't want the report to be displayed first is because the data is huge, and if this is running at the first, some users maybe thinking that something is wrong on the page. That's why we want them to click on submit, so, they know they need to wait. Also, since the report can be huge, we don't want this to be re-query again and again while users are browsing around the application.
    Thank you for any advises that you can give!
    LC
    Edited by: LC on Sep 9, 2011 1:51 PM
    rephase the question

    1 . Put a condition on the interactive report to stop it running when you first display the page - I think you have done this already.
    2. Enable caching for that page (go to the Server Cache tab on Edit Page) - this will also need a condition so that you can actually refresh the report when you need to.
    This should make the browser use the cached version of the report (i.e. the one you ran originally) until you tell it not to.

  • Question on Interactive report on Apex 4.1

    Hello
    I have a page that I am linking with an interactive report. To the second page I need to pass the filters that is/are chosen in the interactive report. How do I access the filters that are created in the interactive report at run time?
    Is there a way to access the item "Row Contains" that is there in the interactive report?
    Thanks
    aks

    http://stewstools.wordpress.com/2009/02/19/get-ir-where-clause/

  • Interactive Reporting Web Client on Apple Mac:  Intelligence iServer?

    Hi All,
    I just installed EPM release 11.1.1.1 along with Interactive Reporting. We were led to believe that Macintosh was supported as long as FireFox was used as a browser. Everything seems to work fine except when I try to create a new Interactive Reporting Web Client document, I get the error message:
    Viewing and analysis with Interactive Reporting Web Client is supported in Windows only.
    For other platforms, use the Intelligence iServer option: ihtml servlet icon
    Contact your system administrator if this option is not available.
    I cannot seem to find much information on this "Intelligence iServer". Does this exist and will it let FireFox clients use Interactive Reporting Web Client? Is it an option that can be installed on the server?
    Thanks for
    any insight.
    Randy

    Hi,
    I have some knowledge about this Intelligence iServer, which I would like to share with you.
    In Version 8(HPSu 8.5), Hyperion has 5 servers, which we need to install-
    Hyperion Foundation server
    Hyperion SQR server
    Hyperion SQR iserver
    Hyperion Intelligence Server
    Hyperion Intelligence iserver
    Each server had its own specific work and foundation server was base of all other servers.
    Hyperion Intelligence iserver supports the user to access the BQY in ihtml client. It helps user to perform some feature (like drill down-drill up) in html view.
    Later Hyperion Came with System 9 and integrated the entire server into a single bundle (internally I don't know what happened).
    This EPM 111.1.1 is Hyperion System 9.5 only.
    I would like to advice you to log this case to Oracle support (metalink3) and ask more information about this.
    It may be that, EPM 11 doesn't support Web Client in Macintosh environment
    Thanks & Regards,
    Mohit Jain

  • Interactive Reports - Question about Downloading PDF, CSV, Email, etc

    I recently installed the latest version of APEX. I deployed it as an EAR on Oracle WebLogic. I then created a simple
    interactive report that has the search bar above the report. The downloads (emailing, pdf, etc) do not work after I
    run the report.
    What setup\configuration is required to get the emailing and downloading of the other files to work?
    fyi: right now I have Oracle WebLogic, Oracle 10g, and APEX running locally on a XP based laptop.
    Thank you in advance,
    Wes

    Hello Wes,
    Sending a report as an email requires an SMTP server. You need to configure your instance settings to point to the SMTP server.
    http://download.oracle.com/docs/cd/E17556_01/doc/admin.40/e15521/adm_mg_service_set.htm#BEJBCEEH
    To download a report as a pdf, excel or RTF... you need to have a reporting engine installed. Check this link for details...
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/configure-printing-093060.html
    Thanks,
    Machaan

  • Search help in selection screens for interactive report

    A search help can only be assigned to DB table.
    So my doubt is can it also be used for seletion screens created for an interactive report?
    If yes what is the procedure.. Please give me one example at least...
    waiting for your valuable suggestions.....
    Thanks,
    regards,
    Chinmay

    Hi Chinmay,
    I suppose your requirement is to give search help to selection screen elements.
    Here is the code.
    REPORT  ZSHAIL_F4HELP                           .
    parameters: name(10) type c .
    TYPES: BEGIN OF VALUES,
             CARRID TYPE SPFLI-CARRID,
             CONNID TYPE SPFLI-CONNID,
           END OF VALUES.
    dATA: PROGNAME LIKE SY-REPID,
          DYNNUM   LIKE SY-DYNNR,
          DYNPRO_VALUES TYPE TABLE OF DYNPREAD,
          FIELD_VALUE LIKE LINE OF DYNPRO_VALUES,
          VALUES_TAB TYPE TABLE OF VALUES.
    at selection-screen on value-request for name.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
      EXPORTING
        tabname                   = 'DEMOF4HELP'
        fieldname                 = 'CARRIER1'
      SEARCHHELP                = ' '
      SHLPPARAM                 = ' '
       DYNPPROG                  = PROGNAME
       DYNPNR                    = DYNNUM
       DYNPROFIELD               = 'CARRIER'
      STEPL                     = 0
      VALUE                     = ' '
      MULTIPLE_CHOICE           = ' '
      DISPLAY                   = ' '
      SUPPRESS_RECORDLIST       = ' '
      CALLBACK_PROGRAM          = ' '
      CALLBACK_FORM             = ' '
      SELECTION_SCREEN          = ' '
    IMPORTING
      USER_RESET                =
    TABLES
      RETURN_TAB                =
    EXCEPTIONS
       FIELD_NOT_FOUND           = 1
       NO_HELP_FOR_FIELD         = 2
       INCONSISTENT_HELP         = 3
       NO_VALUES_FOUND           = 4
       OTHERS                    = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    AT SELECTION-SCREEN OUTPUT.
    PROGNAME = SY-REPID.
      DYNNUM   = SY-DYNNR.
      CLEAR: FIELD_VALUE, DYNPRO_VALUES.
      FIELD_VALUE-FIELDNAME = 'CARRIER'.
      APPEND FIELD_VALUE TO DYNPRO_VALUES.
    I hope your query is solved.
    If so,please award points.
    Regards,
    Sylendra.

  • Interactive reporting using web client in Hyperion Workspace

    Hi all,
    I was trying to create a new interactive report using following process:
    1)Logon to Workspace using browser
    2)File -> New -> document
    3)select the option: "Create interactive reporting document"
    4)Browse for .oce file
    5)Click finish, once the .oce file is selected.
    After these steps:
    Initially I was getting message regarding checking web client status...
    this was taking lots of time so I cancelled the process and restarted from step 1.
    Now, after step 5, I am getting a file save option showing source of file as server of the Workspace.I am working on a local machine and accessing the workspace product through web browser.
    If I save this file in local machine I don't get an option to open this file from workspace using :
    File -> open -> document.
    and alternatively if try to open this locally from the machine I don't have proper application on my local machine.
    I am badly trapped in this viscious circle.... Kindly help.
    Also, it will be gr8 if somebody could suggest some link for understanding the process of creating a new interactive report , using web client on workspace.
    Thanks in advance..
    Edited by: user12973893 on May 5, 2010 3:40 AM

    Hi all,
    I got to know that import and export option is available with "user->reports" and "file in report folder" respectively, when we go for Explore option.
    So storing to local machine and retrieving it back is no more a problem.
    But still I have hardly any idea as to how to start with interactive reporting in Workspace using web client.
    If any of you come across any such tutorial on interactive reporting using web client on workspace please tell.
    I come to know that Interactive reporting studio is available for interactive reporting purpose: any of you please tell me if "reporting and analysis client.." available on oracle edelivery is sufficient for interactive reporting studio or we need to install something specific for working with Interactive reporting studio.

  • Activation of Infotype for Interactive reporting

    I know that from SAP CRM 7.0 EHP 1.0 sap provides support for interactive report on Service requests. My question
    - Is there any standard interactive report on service request provided by SAP CRM? I checked in ORDYWB(Interactive workbench), I did not see any report for Service report. Kindly confirm is that is the case.
    Now I believe if I activate report area (Infotype) Service request in the workbench then I can create by own interactive reports for service requests. How do I activate the report area  Service request- When i select and activate it - I get the message  - " Info type Service request switched of"

    Hi!
    I hope this comes not too late, or maybe it will help others: In order to activate report area Service Requests, you have to enable business function SAP BusinessObjects Integration and CRM Interactive Reporting (CRM_ANA_BOB).
    SAP does not deliver any pre-defined reports for the new report areas that are enabled by this business function. You may, however, create your own reports, just as you were able to do with the previously delivered report areas.
    Best regards

  • Apex 4.0 interactive reports and images

    To the community,
    I haven't had a chance to do a decent search before bed, but I was wondering if anyone had links to good examples on OTN, someone's blog, apex.oracle.com etc, but I thought I'd put the question out there overnight.
    I have a table that contains my blob/mimetype/filename information, and I'd like to create a sample interactive report that displays the image in the blob in all three formats - standard interactive report, using the icon view, and using the detail view.
    Note I'm not referring to images that may be in the repository or file system - but within in a table.
    For whatever reasons I was losing the battle this afternoon, I was just wondering if anyone knew of good concise examples, such as this for using images in form & classic report pages.
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r31/apex31nf/apex31blob.htm
    Cheers,
    Scott

    I have finally replicated the solution, with the help of the following thread
    Confusion with get_blob_file_src
    found when searching "broken image" as one of the keywords.
    Such a horrible and non-intuitive solution to get images displayed in an interactive report!
    Hopefully the Apex team can work on improving this in future releases...
    Scott

  • Multiple Interactive Reports

    .Hi,
    Can't we add multiple interactive report based on conditional display i tryed doing I get error saying only one report per page. please suggest me is there any way we can add multiple reports.
    Please suggest.
    Thanks
    Sudhir

    Hello Sudhir,
    I don't know if it still works in last version.
    I am using ApEx version 3.1.2.00.02 .
    And there you can create a second interactive report by copying the region of the first one.
    Change the SQL-query on the region definition page.
    Check the settings made for the interactive report (column order, display etc.).
    VERY IMPORTANT: the display conditions have to be disjunct.
    You can not display both reports simultaneously.
    Regards, Tine.

Maybe you are looking for

  • Bubbles to the Right of inbox, drafts and sent

    I am running 10.4.7 and have had problems ever since I installed the 10.4.7 update in June. Next to the inbox, drafts and sent workding are blue and white overlapping circles that should not appear there. I have verified and repaired the disk permiss

  • Still no solution for iFrame scrolling

    Hi, I really need to let iPad users scroll into an iFrame. Despite what is said, this does not work. Using two fingers doesn't scroll anything. My website has an embedded WordPress blog, that's why it uses an iFrame. Even if you an object instaed of

  • Copy from quicktimepro, paste to imovie?

    Why can't I copy from quicktime pro and paste into imovie? I'm needing to copy very short segments from a MPEG4 Quicktime movie (which I can do fine), but when I switch over to iMovie, "paste" is greyed out. I was hoping to find a way to avoid the lo

  • My hp deskjet 1050 J410 series is not compatible with windows 8?

    I have downloaded the new drivers and I am able to print with my HP deskjet 1050 J410 but I am not able to scan anydocumants. I cannot open the HP printer assistant window. The error reads as follows: Adobe reader could not open HPSPProgress.hta beca

  • Variant change history log  in T-code KE28 .

    Hi, Variant change history log needs to be found for the Variant XYZ used in T-code KE28 .If any body know the procedure could you please reply . Regards Srihari