Help requested on Interactive Reporting

Hi Friends,
I am new to Interactive Reporting. I have followed the best practice document for interactive reporting (C41) and have configured the intercative reports. But when I am trying to execute the report 'Accounts with open acvtivities' I am getting the below error
Filter on status value RELEASED could not be converted and was not applied
Filter on status value PLANNED could not be converted and was not applied
Please help me with the solution for this issue. Your help would be highly appreciated.
Thanks,
Jai

Hi!
Please note that status common is language dependent, i.e. all texts for Status Profile and Status values have to be available in translated form. Further, it is a general precondition for use of the Status Common concept that the user status texts are consistent across all supported languages. This means following:
If two different combinations of status profile and status have an equal text for some language, then they also have to have an equal text for all other languages. Thereby a difference with respect to upper and lower case letters is tolerated.
Example
In following example of English and German status texts, the German text of status E0002 of profile CRMOPPCP is not consistent, as it differs from the text of status E0002 of profile CRMOPPOR. However, the English texts of these combinations of profile and status are equal.
Profile      Status     Text
CRMOPPOR     E0002      In process
CRMDRGP      E0001      In Process
CRMOPPCP     E0002      In Process
DRDWOPPH     E0002      In Process
Profile      Status     Text
CRMOPPOR     E0002      In Bearbeitung
CRMDRGP      E0001      In Bearbeitung
CRMOPPCP     E0002      Offen
DRDWOPPH     E0002      In Bearbeitung
Without this precondition, a filter on status common may lead to undefined results between different languages.

Similar Messages

  • Help Req Tuning Interactive Report

    Hi all,
    We are having an interactive report with increasing data daily and that reports takes 5 hrs to generated..Out report has 14 tables and 9 filters...Can some one tell me what are the issues that i need to look for in order to tune my report. And let me know if u need more information on this...Thanks...

    How much data are you bringing to the BQY? #Rows/#Columns?
    #Rows 151603 #Columns 23
    When you say 14 Tables...Is that in 1 Data Model?
    Yes its from only one data model with 8 tables (auto join)..
    How Many Queries?
    How Many Charts, Pivots, Reports, Computed Columns (Results)?
    Only one pivot and one report and 148203 results
    Have you looked at having your generated SQL reviewed by DBA? - Menubar > View > Query Log
    There is no query log..
    I jst go through the help contents and working on IR...
    Actually i am new to Interactive report..One of my other employer whos works on this resigned from the comp so i need to take care of this one also..

  • Help needed in Interactive report

    Hi,
    my requirement is:
    in first list, i have to display some sales orders from vbak.
    in second list, user has to select multiple sales orders by check boxes besides them & click on execute.
    in third list, sales orders(which is selected in second list) details has to be display.
    Plese help me how to put check boxes for user selection in second list.
    Thnx in advance.
    sreenivas.

    Hii
    REPORT  Z_INTERACTIVE   no standard page heading
                                  Line-size 100 line-count 20(3)
                                    message-id zkirru.
    ***SELECTION SCREEN*******
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    select-options: S_MATNR FOR V_MATNR.
    PARAMETERS:    CHECK1 AS CHECKBOX ,
                       CHECK2 AS CHECKBOX .
    SELECTION-SCREEN END OF BLOCK B1.
    *******INTERNALTABLE DECLARATION
    DATA:BEGIN OF IT_MARD OCCURS 0,
           MATNR LIKE MARD-MATNR,    "MATERIAL NO     --KEY
           WERKS LIKE MARD-MATNR,    "PLANT           --KEY
           LGORT LIKE MARD-LGORT,    "STORAGE LOCATION--KEY
           INSME LIKE MARD-INSME,    "QTY INSPECTION STOCK
           EINME LIKE MARD-EINME,    "RESTRICTED BATCH STOCK
           SPEME LIKE MARD-SPEME,    "BLOCKED STOCK
      END OF IT_MARD.
    DATA:BEGIN OF IT_MARA OCCURS 0,
          MATNR LIKE MARA-MATNR,
          ERSDA LIKE MARA-ERSDA,
          ERNAM LIKE MARA-ERNAM,
         END OF IT_MARA.
    FOR SECONDARY LIST**********
    DATA:BEGIN OF IT_MARA_ALV OCCURS 0,
          MATNR LIKE MARA-MATNR,
          ERSDA LIKE MARA-ERSDA,
          ERNAM LIKE MARA-ERNAM,
         END OF IT_MARA_ALV.
    START-OF-SELECTION.
      SET PF-STATUS 'STATUS'.
      WRITE 'CHECK THE CHECK BOXES'.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'SELE'.
          IF CHECK1 = 'X'.
            SET PF-STATUS 'DIALOG'.
            SET TITLEBAR 'FIRST BASIC LIST'.
            WINDOW STARTING AT 8 5 ENDING AT 45 15.
            WRITE 'CHECK SECOND BOX FOR SECOND LIST'.
          ELSEIF CHECK2 = 'X'.
            SET PF-STATUS 'DIALOG' EXCLUDING 'SELE'.
            SET TITLEBAR 'SECOND BASIC LIST'.
            WINDOW STARTING AT 55 10 ENDING AT 70 12.
            WRITE 'SECOND BASIC LIST'.
          ENDIF.
      ENDCASE.
    DATA:V_REPID TYPE SY-REPID,
         V_MATNR TYPE MARA-MATNR.
    *****TYPE POOLS*******************
      TYPE-POOLS:SLIS.
      DATA:IT_MARD_FC TYPE SLIS_T_FIELDCAT_ALV,
           FC TYPE SLIS_FIELDCAT_ALV,
           IT_EVENTS TYPE SLIS_T_EVENT,
           WA_EVENTS TYPE SLIS_alv_EVENT,
           IT_MARA_ALV_FC TYPE SLIS_T_FIELDCAT_ALV.
      INITIALIZATION.********
    INITIALIZATION.
    V_REPID = SY-REPID.
    AT SELECTION-SCREEN.*****
    AT SELECTION-SCREEN.
    PERFORM VALIDATION.
    *******START OF SELECTION************
    START-OF-SELECTION.
    PERFORM GETDATA.
    PERFORM POPULATE_FIELDCATALOG.
    PERFORM FILL_EVENTS.
    END-OF-SELECTION.
    PERFORM DISPLAY_LIST.
    *&      Form  GETDATA
          text
    -->  p1        text
    <--  p2        text
    FORM GETDATA .
    SELECT MATNR
           WERKS
           LGORT
           INSME
           EINME
           SPEME FROM MARD INTO table IT_MARD WHERE MATNR IN S_MATNR.
           IF SY-SUBRC = 0.
                   SORT IT_MARD BY MATNR.
                  select matnr
                         ersda
                         ernam
                         from mara
                   into  TABLE it_mara
                   FOR ALL ENTRIES IN IT_MARD where matnr = IT_MARD-MATNR.
           ENDIF.
    ENDFORM.                    " GETDATA
    *&      Form  POPULATE_FIELDCATALOG
    **POPULATING FIELD CATALOG BY SPECIFYING ATTRIBUTES TO FIELD-NAMES.
    FORM POPULATE_FIELDCATALOG .
    CLEAR FC.
    FC-TABNAME = 'IT_MARD'.
    FC-FIELDNAME = 'MATNR'.
    FC-KEY = 'X'.
    FC-HOTSPOT = 'X'.
    FC-OUTPUTLEN = 18.
    FC-SELTEXT_L = 'MATERIAL NUMBER'.
    APPEND FC TO IT_MARD_FC.
    CLEAR FC.
    FC-TABNAME = 'IT_MARD'.
    FC-FIELDNAME = 'WERKS'.
    FC-KEY = 'X'.
    FC-SELTEXT_L = 'PLANT'.
    APPEND FC TO IT_MARD_FC.
    CLEAR FC.
    FC-TABNAME = 'IT_MARD'.
    FC-FIELDNAME = 'LGORT'.
    FC-KEY = 'X'.
    FC-SELTEXT_S = 'STR LOC'.
    FC-SELTEXT_M = 'STORG LOC'.
    FC-SELTEXT_L = 'STORAGE LOCATION'.
    APPEND FC TO IT_MARD_FC.
    CLEAR FC.
    FC-TABNAME = 'IT_MARD'.
    FC-FIELDNAME = 'INSME'.
    FC-KEY = 'X'.
    FC-SELTEXT_S = 'QTY INSP'.
    FC-SELTEXT_M = 'QTY INSP STOCK'.
    FC-SELTEXT_L = 'QTY INSPECTION STOCK'.
    APPEND FC TO IT_MARD_FC.
    CLEAR FC.
    FC-TABNAME = 'IT_MARD'.
    FC-FIELDNAME = 'EINME'.
    FC-KEY = 'X'.
    FC-SELTEXT_S = 'RES STK'.
    FC-SELTEXT_M = 'RES BATCH STK'.
    FC-SELTEXT_L = 'RESTRICTED BATCH STOCK'.
    APPEND FC TO IT_MARD_FC.
    CLEAR FC.
    FC-TABNAME = 'IT_MARD'.
    FC-FIELDNAME = 'SPEME'.
    FC-KEY = 'X'.
    FC-SELTEXT_S = 'BLK STK'.
    FC-SELTEXT_M = 'BLK STOCK'.
    FC-SELTEXT_L = 'BLOCKED STOCK'.
    APPEND FC TO IT_MARD_FC.
    ENDFORM.                    " POPULATE_FIELDCATALOG
    *&      Form  FILL_EVENTS
          text
    -->  p1        text
    <--  p2        text
    FORM FILL_EVENTS .
    **THIS FM IS USED TO FILL ALL EVENTS IN  IT_EVENTS-NAME'S FILED**
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
       I_LIST_TYPE           = 0
    IMPORTING
       ET_EVENTS             = IT_EVENTS
    EXCEPTIONS
       LIST_TYPE_WRONG       = 1
       OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE IT_EVENTS WITH KEY NAME = SLIS_EV_TOP_OF_PAGE INTO WA_EVENTS.
    IF SY-SUBRC = 0.
    MOVE 'DISPLAY_HEADER' TO  WA_EVENTS-FORM.
    MODIFY IT_EVENTS from wa_events INDEX SY-TABIX.
    ENDIF.
    READ TABLE IT_EVENTS WITH KEY NAME = SLIS_EV_END_OF_PAGE INTO WA_EVENTS.
    IF SY-SUBRC = 0.
    MOVE 'DISPLAY_FOOTER' TO WA_EVENTS-FORM.
    MODIFY IT_EVENTS FROM WA_EVENTS INDEX SY-TABIX.
    ENDIF.
    READ TABLE IT_EVENTS WITH KEY NAME = SLIS_EV_USER_COMMAND INTO
    WA_EVENTS.
    IF SY-SUBRC = 0.
    MOVE 'PROCESS_SECONDARYLIST' TO WA_EVENTS-FORM.
    MODIFY IT_EVENTS FROM WA_EVENTS INDEX SY-TABIX.
    ENDIF.
    ENDFORM.                    " FILL_EVENTS
    FORM DISPLAY_HEADER.
      FORMAT COLOR 2.
      WRITE:/15 'INTELLI GROUP ASIA PVT LTD.'(002) .
    ENDFORM.
    FORM DISPLAY_FOOTER.
    FORMAT COLOR 5.
      WRITE:/150 'PAGE NO.'(003),SY-PAGNO.
    ENDFORM.
    *&      Form  DISPLAY_LIST
          text
    -->  p1        text
    <--  p2        text
    FORM DISPLAY_LIST .
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = V_REPID
      I_CALLBACK_PF_STATUS_SET       = ' '
      I_CALLBACK_USER_COMMAND        = ' '
      I_STRUCTURE_NAME               =
      IS_LAYOUT                      =
       IT_FIELDCAT                    = IT_MARD_FC
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
       IT_EVENTS                      = IT_EVENTS
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB                       = IT_MARD
    EXCEPTIONS
       PROGRAM_ERROR                  = 1
       OTHERS                         = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.                    " DISPLAY_LIST
    *&      Form  VALIDATION
    FORM VALIDATION .
    SELECT MATNR FROM MARD INTO V_MATNR
                           UP TO 1 ROWS
    WHERE MATNR IN S_MATNR  .
    ENDSELECT.
    IF SY-SUBRC <> 0.
    MESSAGE E000 WITH 'INVALID MATERIAL NO'.
    ENDIF.
    ENDFORM.                    " VALIDATION
    FORM PROCESS_SECONDARYLIST USING L_UCOMM LIKE SY-UCOMM  L_SELFIELD TYPE
    SLIS_SELFIELD .
    CASE L_UCOMM.
    WHEN '&IC1'.
    *READ TABLE IT_MARD INDEX L_SELFIELD-TABINDEX.
    REFRESH IT_MARA_ALV.
    *LOOP AT IT_MARA WHERE MATNR = IT_MARD-MATNR.
    LOOP AT IT_MARA WHERE MATNR = L_SELFIELD-VALUE.
    MOVE-CORRESPONDING IT_MARA TO IT_MARA_ALV.
    APPEND IT_MARA_ALV.
    CLEAR IT_MARA_ALV.
    ENDLOOP.
    PERFORM DISPLAY_SECONDARYLIST.
    ENDCASE.
       ENDFORM.
    *&      Form  DISPLAY_SECONDARYLIST
    FORM DISPLAY_SECONDARYLIST .
    PERFORM FIELD_CATALOG_SECONDRY.
    PERFORM DISPLAY_SLIST.
    ENDFORM.                    " DISPLAY_SECONDARYLIST
    *&      Form  FIELD_CATALOG_SECONDRY
    FORM FIELD_CATALOG_SECONDRY .
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
       I_PROGRAM_NAME               = V_REPID
       I_INTERNAL_TABNAME           = 'IT_MARA_ALV'
      I_STRUCTURE_NAME             =
      I_CLIENT_NEVER_DISPLAY       = 'X'
       I_INCLNAME                   = V_REPID
      I_BYPASSING_BUFFER           =
      I_BUFFER_ACTIVE              =
      CHANGING
        CT_FIELDCAT                  = IT_MARA_ALV_FC
    EXCEPTIONS
       INCONSISTENT_INTERFACE       = 1
       PROGRAM_ERROR                = 2
       OTHERS                       = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.                    " FIELD_CATALOG_SECONDRY
    *&      Form  DISPLAY_SLIST
    FORM DISPLAY_SLIST .
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = V_REPID
      I_CALLBACK_PF_STATUS_SET       = ' '
      I_CALLBACK_USER_COMMAND        = ' '
      I_STRUCTURE_NAME               =
      IS_LAYOUT                      =
       IT_FIELDCAT                    = IT_MARA_ALV_FC
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
      IT_EVENTS                      =
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB                       = IT_MARA_ALV
    EXCEPTIONS
       PROGRAM_ERROR                  = 1
       OTHERS                         = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards
    Naresh

  • Compute function on interactive report

    Hi Every 1,
    I need some help with an interactive report i am trying to produce. What i am trying to do is use to compute function of an interactive report and add the actual count from a week (e.g. week 26) and add it to the forecast count of that week
    The problem that i have is that they are on different rows
    The table below shows that i am working with.
    Week No|Forecast Count|Actual Count*
    ____26__|_______0______|___128231____
    ____26__|____180916____|______0______
    ____27__|_______0______|___164666____
    ____27__|____180916____|______0______
    ____28__|_______0______|___169302____
    ____28__|____180916____|______0______
    ____29__|_______0______|___159857____
    ____29__|____180916____|______0______
    ____30__|_______0______|___162210____
    ____30__|____180916____|______0______
    ____31__|_______0______|___152471____
    ____31__|____180916____|______0______
    Any help would be welcome :)
    Thanks in advance
    -N.S.N.O.

    Is that the only way that this could be done?
    I have tried to get the values on the same row but it has proved very very difficult.
    The query i use to get the data is this:
    select ROUND(TO_NUMBER(TO_CHAR(TO_DATE(rpad(con_add_td_hr, 10),'yyyy-mm-dd'),'ddd')-2)/7)+1 "Week No", 0, sum(cons_total) "Actual Count"
    from corcon01_hour_totals
    where db_name='CSAHEPA' and substr(con_add_td_hr,1,4)='2008' and CON_ADD_USER_ID not like '%LDL%'
    group by ROUND(TO_NUMBER(TO_CHAR(TO_DATE(rpad(con_add_td_hr, 10),'yyyy-mm-dd'),'ddd')-2)/7)+1
    UNION
    select week_no, sum(manual_entry_cons)+sum(citedi_cons)"Forecast Data", 0
    from concount_forecast_data
    where db_name ='CSAHEPA' and year ='2008'
    group by week_no
    The problem that i have is that the 2 tables are not relate and do not have a matching table structure. For the actual count table i have to generate the week number using a data/hour column.
    If you have any suggestions i would be very grateful.
    Thanks
    -N.S.N.O.
    Edited by: N.S.N.O. on Sep 16, 2008 2:21 AM

  • SAP CRM Interactive Reports in Interaction Center

    Hi
    I am trying to use SAP CRM Interactive reports. I am aware that we don't need a separate  BW serve for it. Do we need a separate local BI client or can we just use them through the IC_MANAGER Role?
    What are the settings to enable interactive reports?
    How can I create Interactive reports through the Analytics role?
    All help is greatfully appreciated.
    Thanks
    Tarang

    Take a look at  [SAP Help Topic 'CRM Interactive Reports'|http://help.sap.com/saphelp_crm70/helpdata/en/61/553f78fc3c48c894c082d0fb23ef0f/frameset.htm]
    Also you can refer to best practice building block [C41: CRM Interactive Reporting|http://help.sap.com/bp_crm70/BBLibrary/HTML/C41_EN_DE.htm].

  • Basic report, Interactive report

    Hi i am new in report . Anybody can help me regards this . I need material with examlpe (Proper coding also ).  Help me in interactive report also. send through my mail id [email protected]
    Edited by: supriya satapathy on Oct 14, 2008 7:29 AM

    Hi supriya,
    Goto tcode ABAPDOCU or http://help.sap.com.
    you'll find reports etc with examples wrt syntax, use .
    Regards,
    Amit

  • Interactive Report Link Column HELP FROM GURUS requested

    Hi,
    I have an interactive report the data of which returns a file name for an image. I would like to use the Link Column (Link to Custom Target) option. The column in my underlying query has the image file name #ILINK#.
    The Target URL is correctly formed using the #ILINK# bind variable http://myserver.mycompany.com/cgi-bin/oracle/img.cgi?img_file=#ILINK#;size=full
    However, for the Link Icon (which I wanted to be a dynamic thumbnail of the linked image). The #ILINK# bind variable is not read. Is this because the Link Icon cannot be dynamically determined and must always be the same image?
    I can get this working as a regular report using HTML expression, but I really wanted to harness the power of an interactive report.
    Thanks

    Hi,
    in this case you could build the required html-tags in your SELECT statement, like this:
    SELECT EMPNO
         , ENAME
         , '<a href="blablabla/index"><img src="'||ENAME||'.gif">'||ENAME||'</a>' AS ENAME_LINK
      FROM EMP
    ;brgds,
    Peter
    Blog: http://www.oracle-and-apex.com

  • 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.

  • Help with Aggregate on Interactive Report

    I have a field that is a number but I need to convert to show as a percentage (i.e. 17.4%) in the interactive report. At the same time I need to be able to do an Aggregate on this field so I know it needs to stay a numeric and I can't convert in the SQL. Is there a way to use the number format mask on the column to add the percentage or another way that will allow me to still perform aggregates?
    Version: Application Express 3.2.1.00.12
    Thanks for your help.
    Chris

    Anyone have any suggestions?
    Thanks.

  • Help on print button for interactive report

    Hi,
    I have created an interactive report and have also added a print button on the button of the report (unfortunately forgot how I did it). Say my column on the reports was Col_No, Col_First_name, Col_Last_name and a print button when I pressed a would get to choose open or save a pdf file, if I opened or saved it, I would had the same info on my pdf report as above.
    Since I have changed the column order meaning I have Col_No, Col_Last_name, Col_Start_Date, Col_First_name and that is working fine but when I click on the print button I will get the pervious columns.
    I noticed I have created a branches to print the report, basically after processing, when button was pressed an action with f?p=&APP_ID.:0:&SESSION.:PRINT_REPORT=6259824360775969936:&DEBUG.::: is present.
    I need help to fix this and I do very much appreciate any help or suggestions
    -regards
    ahmadii

    Found the answer, thanks.

  • Translation of Interactive Report (IR ignores translated help messages)

    Hi
    I've spend my time translating all 242 IR messages to Dutch and loaded them into my app.
    All seemed well. The IR is completely Dutch now. However when I choose help from the Action Menu the help text remains English. I really did translate all this help to. Why doesn't it use the translated text?
    The translations have been properly loaded as I can see them when I execute
    select *
    from flows_WWV_FLOW_MESSAGES$
    where flow_id = :APP_ID
    So I'm puzzled why is it picking up every piece of translation except for the help translations? Is this a bug?
    Anyone any experience

    Hi Geert,
    This is Bug 7001615 - fixed in the APEX 3.1.1 patch set, which is available now.
    Re: Bug? Interactive Report - Help not Translated
    Joel

  • Bringing up the help popup in an interactive report

    The gear dropdown on an interactive search, has a help, that when clicked on would bring up a popup explaining the icons of the gear search.
    I created a button and trying to bring up this help when the user clicks on it.
    How would I go about doing this?
    Thanks.

    Lloyd,
    An interactive report is also known as a worksheet. Each interactive report region has a unique ID. That ID is needed as a parameter in the URL to generate the help page.
    On second thought, try the following which should not need a page item:
    javascript:html_PopUp('wwv_flow_utilities.show_ir_help?p_app_id=' + $x('pFlowId').value + '&p_worksheet_id=' + $x('apexir_WORKSHEET_ID').value + '&p_lang=en-us');Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Need Help calling Dynamic Action from Link in Interactive Report

    Hello I have an Interactive Report. I would like to have a Dynamic Action called when the user selects a row (Clicks a Link).
    I am running Application Express 4.0.2.00.07 on Oracle 11gR1.
    Any help would be great.

    Hi VANJ,
    Sorry for the poorly written original post. I will be much more specific.
    I have a Interactive Report on page 40. That report has a column named X_UID that is a link back to page 40 and sets a text item named P40_X_UID in a Region we will call "Form X" with the value of the column. That page refresh also then calls a Automated Row Fetch process to fetch all the values needed for the rest of the page items in the "Form X" region. Also "Form X" region has a conditional display on to only display when P40_X_UID is not null.
    What I would like to do:
    When the user clicks on link in the IR for X_UID instead of the "Form X" region becoming visible I would like to become modal. I am trying to use a Plug-In named "ClariFit Simple Modal - Show". I have it working with a Dynamic Action when you click a Page Item. But I would like to to work when the link is clicked and the data populated.
    I hope that helps some.

  • Interactive reports help

    Hi all
    I have some questions about Interactive reports 3.1 . I'm not sure if IRR have this capability but I know I am having a hard time setting it up for a user. So if anyone knows if this is possible it would be a great help
    First I need to create a IRR that is grouped by Vendor/Year. Other column would include project and contract amount.
    I filtered the report using date between 01/06 -12/31/07 - easy enough
    The purpose of the report is to show the total spent on contracts for the year 06 compared to 07 . The user would select the years to compare in the future.
    I can break on vendor and aggregate the sum of the contract amount but I can not seem to
    a) get a grand total of all contracts
    b) break on year
    I tried the compute action item but was lost.
    The user may accept two separate reports by year (2007,2006) but I will need to sum the contract amount by vendor and then I'll need a grand total.
    Is either way possible with IRR?
    Thanks So much
    Moe

    Dimitri
    Thank You for your reply
    We are trying to make it easier for the user to generate these reports on demand. Once the IRR report is done it will be downloaded to pdf so the totals will need to be part of that report.
    As basic example, the user chose contracts awarded to vendors for the year 2006 only by using a filter. ( no compare) They would expect to see a subtotal of the contracts by vendor
    Vendor: Acme (break on vendor)
    contract1 500.
    contract2 500.
    Total of contracts to Acme = $1,000
    Vendor Genx
    contract12 500
    contract13 500
    Total of contract to Genx = $1,000
    Grand Total of contracts awarded for 2006 = $2,000.00
    Then I thought the user could use the save report feature to save the one for 2006 and create another one same format for 2007 and use that to compare years.
    If I'm missing the obvious I apologize
    Moe

  • Bug? Interactive Report - Help not Translated

    Hi,
    I translated all Text Messages regarding Interactive Report, but Help (popup window) is still in English. Everything else is translated.
    Is this a Bug, or am I missing something?
    Best Regards,
    Hrvoje.

    Hi Joel,
    I played a bit more with the IR, as this is one of the most important additions to 3.1.
    I have to say that even with the bug in the help windows, which will be fixed, as you said, in 3.1.1, the APEX team did a tremendous job with the translation options of this new feature, and you can see that a lot of work has been done to allow us to translate every aspect of the IR region, thus utilizing this great feature in all the other languages APEX is supporting. I was especially pleased to find out that even the CSS relevant selectors of the help window, are part of an external file, which allow me, very easily, to add RTL support, for example.
    I strongly believe that this approach – putting as much as possible in an external resources, and not as an internal (inline) APEX engine generated code – is the best approach, and it will help us to better use this great product.
    Thanks,
    Arie.

Maybe you are looking for

  • My iPad mini home button doesn't work all the time

    When I click the home button on my ipad, it doesn't do anything. If I try a few more times then it will work once or twice. But not all the time.

  • How to change system preferences programatically, 10.5 issue

    I know about the "preferences" api. Like SCPreferencesCreate(NULL, CFSTR("SomeName"), NULL); and get value and all the rest. In fact, I know how to read all the preferences. The problem is changing them. I do not care which one, any of them. You see,

  • Waiting for Orchestration. What does this mean?

    I have an application being deployed to different AD sites.  I do not have my DPs for those sites set up yet, but I do have my MP which is also a DP set to a fallback DP.  I deploy this application and deployment status says Waiting for Orchestration

  • Creating PDF from PostScript in Acrobat Distiller 11

    I've just upgraded to Professional 11 and I am having issues distilling a postscript file to PDF that works in other versions. Normally I need to use the -F option but with or without this I still get the error "%%[ Error: invalidfileaccess; Offendin

  • People cannot hear me properly, problem with speaker?

    I think there is a problem with my phone when I talk to people, they say I sound like I am far away I have to shout, or cup my hand to the bottom of the phone in order for someone to hear me. I have done, i have restarted my phone, removed the batter