Interactive reporting - Urgent

1. If i have got to come back from 3rd list to the 1st list without
pressing F3, how will i do it ? Please treat this as urgent.
                                                        SAURAV  LAHIRY

Hi Saurav,
Check this code. It helps you .
Macro definition
DEFINE m_fieldcat.
  add 1 to ls_fieldcat-col_pos.
  ls_fieldcat-fieldname   = &1.
  ls_fieldcat-ref_tabname = &2.
  append ls_fieldcat to lt_fieldcat.
END-OF-DEFINITION.
TYPE-POOLS: slis.                      " ALV Global types
SELECTION-SCREEN :
  SKIP, BEGIN OF LINE,COMMENT 5(27) v_1 FOR FIELD p_max.    "#EC NEEDED
PARAMETERS p_max(2) TYPE n DEFAULT '20' OBLIGATORY.
SELECTION-SCREEN END OF LINE.
TYPES:
Data displayed in the first list
  BEGIN OF ty_kna1,
    kunnr TYPE kna1-kunnr,             " Customer number
    name1 TYPE kna1-name1,             " Customer name
    ort01 TYPE kna1-ort01,             " Customer city
  END OF ty_kna1,
Data displayed in the second list
  BEGIN OF ty_vbak,
    vkorg TYPE vbak-vkorg,             " Sales organization
    kunnr TYPE vbak-kunnr,             " Sold-to party
    vbeln TYPE vbak-vbeln,             " Sales document
    netwr TYPE vbak-netwr,             " Net Value of the Sales Order
  END OF ty_vbak,
Data displayed in the third list
  BEGIN OF ty_vbap,
    vbeln  TYPE vbap-vbeln,            " Sales document
    posnr  TYPE vbap-posnr,            " Sales document item
    matnr  TYPE vbap-matnr,            " Material number
    arktx  TYPE vbap-arktx,            " Short text for sales order item
    kwmeng TYPE vbap-kwmeng,           " Order quantity
    netwr  TYPE vbap-netwr,            " Net value of the order item
  END OF ty_vbap.
DATA:
  gs_kna1 TYPE ty_kna1,
  gt_kna1 TYPE TABLE OF ty_kna1,
  gs_vbak TYPE ty_vbak,
  gt_vbak TYPE TABLE OF ty_vbak,
  gt_vbap TYPE TABLE OF ty_vbap.
INITIALIZATION.
  v_1 = 'Maximum of records to read'.
START-OF-SELECTION.
  PERFORM f_read_data_kna1.
END-OF-SELECTION.
  PERFORM f_display_data_kna1.
     Form  f_read_data_kna1
FORM f_read_data_kna1.
Read customer data with a least one order
  SELECT kunnr name1 ort01 INTO TABLE gt_kna1
           FROM kna1 AS k
             UP TO p_max ROWS
          WHERE EXISTS
       ( SELECT kunnr FROM vbak WHERE kunnr = k~kunnr ).
ENDFORM.                               " F_READ_DATA_KNA1
     Form  f_display_data_kna1
FORM f_display_data_kna1.
  DATA:
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv.
Build the field catalog
  m_fieldcat 'KUNNR' 'KNA1'.
  m_fieldcat 'NAME1' 'KNA1'.
  m_fieldcat 'ORT01' 'KNA1'.
Display the first list
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program      = sy-cprog
      i_callback_user_command = 'USER_COMMAND_KNA1'
      it_fieldcat             = lt_fieldcat
    TABLES
      t_outtab                = gt_kna1.
ENDFORM.                               " F_DISPLAY_DATA_KNA1
      FORM USER_COMMAND_KNA1                                        *
FORM user_command_kna1 USING u_ucomm     TYPE sy-ucomm
                             us_selfield TYPE slis_selfield."#EC CALLED
  CASE u_ucomm.
    WHEN '&IC1'.
      READ TABLE gt_kna1 INDEX us_selfield-tabindex INTO gs_kna1.
      CHECK sy-subrc EQ 0.
      PERFORM f_read_data_vbak.        " Read data from VBAK
      PERFORM f_display_data_vbak.     " Display orders
  ENDCASE.
ENDFORM.                               " USER_COMMAND_KNA1
     Form  f_read_data_vbak
FORM f_read_data_vbak.
  SELECT vkorg kunnr vbeln netwr
    INTO TABLE gt_vbak
    FROM vbak
      UP TO p_max ROWS
   WHERE kunnr = gs_kna1-kunnr.
ENDFORM.                               " F_READ_DATA_VBAK
     Form  f_display_data_vbak
FORM f_display_data_vbak.
  DATA:
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv.
Build the field catalog
  m_fieldcat 'VKORG' 'VBAK'.
  m_fieldcat 'KUNNR' 'VBAK'.
  m_fieldcat 'VBELN' 'VBAK'.
  m_fieldcat 'NETWR' 'VBAK'.
Display the second list
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program      = sy-cprog
      i_callback_user_command = 'USER_COMMAND_VBAK'
      it_fieldcat             = lt_fieldcat
    TABLES
      t_outtab                = gt_vbak.
ENDFORM.                               " F_DISPLAY_DATA_VBAK
      FORM USER_COMMAND_VBAK                                        *
FORM user_command_vbak USING u_ucomm     TYPE sy-ucomm
                             us_selfield TYPE slis_selfield."#EC CALLED
  CASE u_ucomm.
    WHEN '&IC1'.
      READ TABLE gt_vbak INDEX us_selfield-tabindex INTO gs_vbak.
      CHECK sy-subrc EQ 0.
      PERFORM f_read_data_vbap.        " Read data from VBAP
      PERFORM f_display_data_vbap.     " Display items
  ENDCASE.
ENDFORM.                               " USER_COMMAND_VBAK
     Form  f_read_data_vbap
FORM f_read_data_vbap.
  SELECT vbeln posnr matnr arktx kwmeng netwr
    INTO TABLE gt_vbap
    FROM vbap
   WHERE vbeln = gs_vbak-vbeln.
ENDFORM.                               " F_READ_DATA_VBAP
     Form  f_display_data_vbap
FORM f_display_data_vbap.
  DATA:
    ls_fieldcat TYPE slis_fieldcat_alv,
    lt_fieldcat TYPE slis_t_fieldcat_alv.
Build the field catalog
  m_fieldcat 'VBELN'  'VBAP'.
  m_fieldcat 'POSNR'  'VBAP'.
  m_fieldcat 'MATNR'  'VBAP'.
  m_fieldcat 'ARKTX'  'VBAP'.
  m_fieldcat 'KWMENG' 'VBAP'.
  m_fieldcat 'NETWR'  'VBAP'.
Display the third list
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      it_fieldcat = lt_fieldcat
    TABLES
      t_outtab    = gt_vbap.
ENDFORM.                               " F_DISPLAY_DATA_VBAP
END OF PROGRAM Z_DEMO_3_ALV_LIST ******************
Reward Points, if useful.
Regards,
Manoj Kumar

Similar Messages

  • V.Urgent:Hyperion Interactive Reporting Role in WebAnalysis to BO XI R2

    Hi All,
    How Hyperion Interactive Reporting web analysis is better than BO XI R2 for reporting capabilities. Also how easy is it to use Hyperion Interactive Reporting Web Analysis for reporting.
    This is very very urgent for me. Please share your inputs and thoughts.
    Thanks alot in Advance.
    Regards,
    Upendra

    Upendra
    Hyperion Interactive Reporting and web analysis is two different things in Hyperion
    Hyperion Interacting Reporting features
    Adcock Analysis
    Drill-Up, Drill-down
    Real time Data
    Dynamic
    Dashboards
    Visual Analysis (Charts)
    Pivot views of data
    Open for all data base
    web analysis works on essbase
    but you can fetch data from RDBMS also by giving some extra inputs
    I don't know about BO
    Hope it will works
    Thanks
    Dhanjit G.

  • Urgent!!  Download Interactive report in HTML as it is

    I have an interactive report where i have highlighted rows and colums based on some conditions.But when i download the same report in html, all the highlighted format are gone.I mean all the colours are gone.I want the same format in html too.so how is this possible.

    Hi,
    this is not so easy. Read it yourself:
    http://www.apexninjas.com/blog/f?p=100:1:0::::P1_ARTICLE:1920
    http://www.talkapex.com/2009/04/custom-download-for-apex-interactive.html
    Best regards,
    Tobias

  • Interactive Report .....(urgent..)

    hi all,
    i am unable go to 2nd screen in interactive report ...
    could you plz guide me the what i did the mistake.......
    *& Report  ZAREPAS24
    REPORT  zarepas24.
    *&--declaring structuer for individual tables as shown below
    TABLES : VBAK,VBAP,KNA1.
    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.
    *&--declaring internal table as per structure and work area for internal table
    DATA : it_kna1 TYPE STANDARD TABLE OF st_kna1,
           wa_kna1 TYPE st_kna1,
           it_vbak TYPE STANDARD TABLE OF st_vbak,
           wa_vbak TYPE st_vbak,
           it_vbap TYPE STANDARD TABLE OF st_vbap,
           wa_vbap TYPE st_vbap.
    DATA : v_fld(15),
           v_kunnr TYPE kna1-kunnr,
           v_vbeln TYPE vbak-vbeln.
    *SELECT-OPTIONS and PARAMETERS (for number of HITS)
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: so_kunnr FOR v_kunnr. "CUSTOMER NUMBER
    PARAMETERS : p_max TYPE i DEFAULT '11'.            "NUMBER OF HITS
    SELECTION-SCREEN END OF BLOCK b1.
    *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.
      ELSE.
        IF sy-lsind = 2.
          PERFORM get_salesitemdata.
        ENDIF.
      ENDIF.
    *AT USER-COMMAND
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'DISP'(001).
          PERFORM get_salesheader.
        WHEN 'ITEM'(002).
          PERFORM get_salesitemdata.
        WHEN 'VA03'(003).
          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

    Hi Srinivas,
    your report is working fine in my system,
    i just commented all " set pf-status " in your program and its working.
    try it after commenting the above said statements.
    Reward if useful.
    Regards,
    Talwinder

  • Regarding Interactive report

    Hi Experts,
    I am creating one Interactive report, my output is 2 fileds only let's say
    Col-A and Col-B
    I want when i will click on Col-A i SE11 will come and When i click on Col-B SE38 will come.
    Is it possible?
    Urgent............

    Hi,
    Try this code
    Variable 'fldname' will have the field name that you have clicked and 'fldval' will have its corresponding value.
    Set parameter id is used to pass the value to the transaction if required.
    AT LINE-SELECTION.
      GET CURSOR FIELD fldname VALUE fldval.
      CASE fldname.
        WHEN 'COL-A'.
          SET PARAMETER ID 'MAT' FIELD fldval.
          CALL TRANSACTION 'SE11' AND SKIP FIRST SCREEN.
        WHEN 'COL-B'.
          CALL TRANSACTION 'SE38' AND SKIP FIRST SCREEN.
    ENDCASE.
    Regards,
    Hema.

  • I have a problem with interactive report in  horizontal scroll bar

    hi all,
      in my interactive report the horizontal scroll bar is not visible and i have created a scroll bar with the html code and i have a problem in that scroll bar when ever i will click the select list and if i will move the scroll bar and the select list is also moving but it the select list dont have to move .pls give me a solution for this urgent.
    thanks in advance 

    Kishore suresh wrote:
    hi all,
      in my interactive report the horizontal scroll bar is not visible and i have created a scroll bar with the html code and i have a problem in that scroll bar when ever i will click the select list and if i will move the scroll bar and the select list is also moving but it the select list dont have to move .pls give me a solution for this urgent.
    thanks in advance
    Hi,
    How you think anybody can help if you do not post single line how you have try create that scrolling report ?
    And if your issue is urgent, you are seeking help from wrong place.
    Regards,
    Jari

  • How to call function in INteractive Report!!

    Hi All,
    After investing on interactive report i have came to know that we can have only sql query but not Dynamic Sql query!
    By using PIPELINED FUNCTIONS we can use dynamic sql in Apex Interactive Reports.
    Here is the url for refernece- http://sungur.wordpress.com/2009/10/11/apex-interactive-reports-with-dynamic-sql/
    When i had tried to implement the the above one it is throwing error as
    Query cannot be parsed, please check the syntax of your query. (ORA-06575: Package or function GET_TABLE_ROWS2 is in an invalid state)
    Can any one help me out how to overcome the scenerio and resolve the problem?
    Since it is urgent can any one help me out to resolve it.
    Thanks in Advance,
    Anoo..

    Hi Anoo,
    Step 4:
    Create a process that will populate the heading page items with the relevant column name values from the dynamic query. This can be done by splitting the select line using the commas and extracting the dynamic column headers.This is Nothing But in Interactive report the column name is taking as a heading for every column, Otherwise we can go to change the column heading in report attributes(STEP 3).
    What they said we can try to change the column head dynamically.
    Like Ex:
    Select ename "Employee Name" from emp;The above Example we are taking ename but it displayed as Employee Name.
    I tried that but its taking 50 columns cant write that much of query.
    Now you got it?
    Cheers,
    Shan..

  • Calling the Selection screen in the Interactive report

    Hello,
    this is urgent requirement.
    I need to call the selection in the interactive report.
    my requirement is i have to display list of the table name which is stored in the table DD20T.
    in basic list i have to display all the table name.
    if i double click the table name that the key field of the particular table with select option should display in the secondary list.
    so please help me.
    Thanks and regards,
    zubera

    Hi,
    Go for Drill down report.
    call transaction SE16 or SE16N. pass the tables to the transaction.
    exp code:
    DATA : lv_field(10) TYPE c VALUE 'MARA'.
    WRITE : lv_field.
    AT LINE-SELECTION.
      SET PARAMETER ID 'DTB' FIELD lv_field.
      CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.
    please reward if help full..........
    By
    Gupta

  • Oracle Hyperion Workspace and Hyperion Interactive  Reporting

    Hi All,
    I'm in a urgent need of downloading Hyperion workspace. I was able to download and install Hyperion Shared Services under "Hyperion Foundation Service". But There are no Hyperion Workspace to download under "Hyperion Foundation Service". Moreover the link to download Hyperion Interactive Report studio is not working and displaying "page not found" error. Can anyone suggest me how to download these two softwares?
    Thank you

    I do not know much about Hyperion either :-) I would go thru the Install docs at http://download.oracle.com/docs/cd/E12825_01/index.htm
    Also see http://www.ncoaug.org/NCOAUG%20Training%20Day%20Aug%202009/Amar%20Nettem%20-%20Hyperion%20101%20DBA%20Presentation.pdf
    HTH
    Srini

  • Hyperion 11.1.2.x Interactive Reporting Distributed Installation

    Hi we are trying to perform distributed installation of hyperion interactive reporting v 11.1.2.1 or v 11.1.2.2. But we were unable to split the services. As i came to know that shared services and workspace webapplication can now be only on one server, i wanted to separate IR services on other two servers. Can anyone help me with the steps or any idea about how to split the services. We need it urgent.
    Thanks in advance,
    Harish

    Harish, this is very valuable information here that is worth a lot of consulting dollars. :-)
    On server 1, just install and configure the Framework and IR
    On server 2, just install and configure the IR
    On server 3, just install and configure the web component
    When I did the above, I ran into the small "defect", which is the APPLICATION ID created on Web does not match the APPLICATION ID on the Framework on server 1 because it's installed separately. Oracle insisted that is not the "best practice", but the solution is to update the APPLICATION ID on server 3 in the repository to match the original APPLICATION ID, and then it works.
    I forget the defect number and have to look it up. Or call Oracle Support and they know exactly what to do.
    Good luck.

  • How to share interactive reports between different users in apex.PLEASEHELP

    Hi all,
    How can we share the interactive reports in oracle apex within different users.Please help its really urgent..
    Thanks
    Manish

    Hello,
    I suggest you read the documentation and HOWTO's on Interactive Reports, since it is covered in there
    http://www.oracle.com/technology/obe/apex/apex31nf/apex31irr.htm
    basically configure the report how you want it (as a Developer) and then save it as the default for all users.
    If you mean something different, please elaborate
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Hypeion Interactive Reporting

    Hi Friends,
    I am Gunasekhar need some material on Hyperion Interactive Reporting.
    I need this material urgently because I need work on Heperion Interactive reporting for a project.
    Kindly help me in this regard.
    My mail being : [email protected]
    Thanks and BR,
    Guna
    Edited by: user10979579 on Apr 6, 2009 3:05 AM

    The Documentation library can be found at: http://download.oracle.com/docs/cd/E12825_01/nav/portal_4.htm

  • Search/Filter through Interactive Report!

    Hi All,
    First of all WISH a very Happy New Year-2010!!
    In my previous post for Search/Filter through Interactive Report!
    I am facing problem with UI as mentioned below can any one help me out on this, as this an urgent for me...
    At last i was able to was able to retrieve the data from Iframe using different logic!!
    But i want to modify some of the modifications in UI Design..
    As i have informed u that End user always selects the Page-85 which is visible to them..
    In that page(85) i have totally created three regions.
    1. Attribute Report(Intearctive report)
    2. Manage Attribute(HTML where i have give iframe syntax as {iframe ID="Attribute Report" src="" style="width:520;" FRAMEBORDER=0></iframe>
    3. Create/Edit Region
    FYI: There is a create button in Attrinbute Report and when i click on that Button then only i wil display the Create/Edit Region
    Now the problem is end user are using pixels as 1024*756 size, when i have tried to increase the size of width in iframe, the create/edit region is crossing and
    need to scroll down to check the data.
    Let us assume if i had reduced the size of width as default 520 then create/edit region is placed with in pixcels.
    As u know there is a button called as "GetResults" in page-85 when i clik on that button we will call the iframe which is a hidden page where end user
    can not view.
    The main problem is that in that page i mean page-45, it has desgined in such a way that it is similar to page-85 which is having with all 3 regions!!
    When it will display the report from iframe for that the scrolloing is displayed, and when i had click on create button in that iframe the credit/edit region is
    displayed but for that there to scroll down which is not happy by endsuer.
    In order to overcome this i had tried to increase the width in iframe which is working for one not for the other or viceversa.
    Suggestion: Can u suggest me how to fix the pixcels so that it will not excceds the pixecls size?
    What i had thought is in page-85 i have created totally 4 regions instead of 3 regions as shown below:
    1. Attribute Region
    2. manage Attribure(With Iframe)
    3. manage Attribute(With out iframe but used one hidden varibable ans set that hidden in condtional region)
    4. Create/Edit Region.
    And i am setting that hidden variable in Create button, so that i can call the second manage attribure with iframe.. When i have tried to use that it is throwing script error as "style is null or nor an object", i belive scince we are hidinng that region it migh not able to identify that style!!!
    Can u suggest me the way i have done i had implemenetd is sounds goods for u? Or else can u help me out how to fix that UI design issue...
    Thanks in advance,
    Anoo..                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi Andy,
    As per your suggestion i have created two pages!. One is 85 page and 45 page, but foe enduser can see only the 85 page.
    In 85 page i have created a interactive report as shown below:
    SELECT distinct attr_code "EDIT", attr_code, attr_description, attr_atcl_code,
    attr_abbreviation,
    attr_include_short_desc "Include short desc",
    attr_include_long_desc "Include long desc",
    attr_attr_type "AttrType", attr_code "DELETE"
    FROM t_append WHERE EXISTS (SELECT 1
    FROM APEX_APPLICATION_PAGE_IR_COND
    WHERE APPLICATION_ID = :APP_ID
    AND PAGE_ID = :APP_PAGE_ID
    AND CONDITION_ENABLED = 'Yes'
    AND APPLICATION_USER = :APP_USER) ORDER BY attr_description;
    In the same page itself i have created a One more region, where i have one select list and submit button, when there select fro the list and click on submit button then popup should fired, i mean what u have mentioned. For that i have created a new page called 45 where i have two regions one is HTML region and second is interactive report.
    I html region i have given like this in source
    <iframe src="f?p=&APP_ID.:85:&SESSION." style="width:500; height:1000;" FRAMEBORDER=0></iframe>
    but i am not able to see the template at all?
    Pls correct i way i have done is correct or not.
    Also i was not able to see the Region as - Popup one ( where i can see the popup option?)
    Thanks,
    Anoo..

  • Open document from interactive report

    Application Express version 4.0.2.00.07.
    In apex I am trying to accomplish the following:
    1. create a link to a pdf or Word document stored on local network using the file browse button.
    2. store the link to that file in my table but not store the actual document in the oracle table.
    3. open the document from link in interactive report.
    My dba does not want to store anymore documents into oracle because of performance issues we are experiencing with current applications that do this. Does anyone know the where to find sample code that will accomplish this task or will load the linked document into the oracle table but delete the document from the blob when the document is closed.

    You're probably looking to use the BFILE functionality - a pointer to a LOB on the filesystem.
    Try looking at some of the following sources for guidance
    http://docs.oracle.com/cd/B10501_01/appdev.920/a96591/adl12bfl.htm
    APEX BFILE
    http://monkeyonoracle.blogspot.com.au/2009/10/storing-images-outside-oracle-xe-with.html
    Scott

  • Questions on Interactive Report Icons

    When I created an Interactive Report, rectangular icons have been automatically created on the left side of the report on every line.
    When clicked one of the icons, it displays the details of the line in vertical order.
    Here are my questions:
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?
    2. How can I hide the icons?
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?
    Thanks,
    Guy

    Hello
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?You can create another region, or page that will show your row description by identifier or rowid. You can do this by changing Link Column type to "Link to Custom Target"
    2. How can I hide the icons?Go to Interactive Report -> Link Column -> Link Column change to (Exclude Link Column)
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?The same as answer 1.
    Best Regards, Kostya Proskudin!

Maybe you are looking for

  • Session in java swing??

    Hi friends, I need to create session in java swing... I have a client running in swing and can access resources in multi-threaded server. I need to validate user using session. But i don't know how to use session. User has to login with username & pa

  • Intel 4000 problem

    i have 13-inch, Mid 2012 and i installed win 7 on it using boot camp but the intel 4000 graphic shows only 64 mb and i knew it is 512 mb how i can make it 512 mb on win

  • FindChangeByList script question, re: when a style is part of a style group

    Hi, I'm using InDesign's FindChangeByList script and am running into a problem. Here is the problem line: grep {findWhat:"^."} {appliedParagraphStyle:app.activeDocument.paragraphStyleGroups.item("Text").paragraphStyles.item("Body2.TextIndent"), chang

  • Regards iPhone 5 it support arabic language ?? I mean when I recive

    Regards iPhone 5 it support arabic language ?? I mean when I recive Or it will be same as iPhone 4 and iphone 4s ? I hope to understand my quation its all regards the language if it will support arabic language ?? Thanks Regards Isaac

  • BlackBerry Error 552

    Hi , so I had my BlackBerry 9320 in december last year , 4 moths latrer my bbm wasn't working so i went to the internet and the said that you had to reload your BlackBerry ,I did that , and I restarted my BlackBerry and now there's it says ''Error 55