Gramatical Error in Default Interactive Report

When creating an interactive report, by default the maximum number of rows returned is set to 10,000 and the related message is set to:
"This query returns more then 10,000 rows, please filter your data to ensure complete results."
Two problems with this:
1) the word "then" should be "than"
2) this is a run on sentance.
The correct verbage should be:
"This query returns more than 10,000 rows. Please filter your data to ensure complete results."
Can this be put in to the next patch please?

Doug,
Thanks. I'll file a bug and we'll fix this, but maybe not in the next patch release as it impacts translations.
Now, in all good sport, you should have seen this coming:
-- The word run-on is hyphenated.
-- You misspelled sentence.
-- You misspelled verbiage.
The use of the word "verbiage" can be considered disparaging given the primary meaning ascribed to it in most English dictionaries, where it carries the message of superfluity and excessive wordiness (when used to describe a specific set of words in a specific context as opposed to its use to describe more general styles or manners of language use). For this reason, I always refer to "wording" or "language", not "verbiage", in my constructive criticism of certain aspects of writing, not only because of the pejorative connotation of the latter, but to observe the rule that simpler words will usually do.
(Hope you enjoyed that.)
Scott

Similar Messages

  • How to set different default interactive reports for different user groups?

    I'm probably overlooking an obvious solution, but how do I set different default interactive report for different user groups?
    For the same interactive report, I want one set of users to see a default where the default filter is based on column X. However, another group of users doesn't have authorization to see that column so I need to set the default filter to something else for them.
    Thanks

    You can set a filter on a report in a URL - would that help? I think with apex 4.x you can also link to a saved default report or alternative report...

  • Error when creating interactive report

    Hi everyone,
    I get the following error when creating any kind or interactive report, one might say is was a huge amount of data, however it hapens whether is is a small or big reporrt.
    ORA-20001: Unable to create modules. ORA-20001: create_table error: ORA-20001: Excel load run ddl error: ORA-01658: unable to create INITIAL extent for segment in tablespace APEX_1241314296468143
    I hope that I find help
    best,

    Hi,
    This might help
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21678/aadm_request.htm#sthref51
    Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0

  • Runtime error in ALV interactive report

    Hi all,
    While clicking the cutomer no to get the order details am getting run time error. Your help will be rewarded.
    REPORT  Z_INTERACTIVE_ALV.
    TYPE-POOLS : SLIS.
    TABLES : KNA1.
    TYPES : BEGIN OF TY_KNA1,
           KUNNR  TYPE  KUNNR,
           NAME1  TYPE  NAME1,
           ORT01  TYPE  ORT01,
           LAND1  TYPE  LAND1,
           END OF TY_KNA1.
    TYPES: BEGIN OF TY_VBAK,
           KUNNR  TYPE  KUNNR,
           VBELN  TYPE  VBELN,
           ERDAT  TYPE  ERDAT,
           NETWR  TYPE  NETWR,
           END OF TY_VBAK.
    DATA : IT_KNA1  TYPE STANDARD TABLE OF TY_KNA1,
           W_KNA1  LIKE LINE OF IT_KNA1,
           IT_VBAK  TYPE STANDARD TABLE OF TY_VBAK,
           W_VBAK LIKE LINE OF IT_VBAK.
    DATA : IT_FCAT TYPE SLIS_T_FIELDCAT_ALV,
           W_FCAT  TYPE SLIS_FIELDCAT_ALV.
    DATA : IT_FCAT1 TYPE SLIS_T_FIELDCAT_ALV,
           W_FCAT1  TYPE SLIS_FIELDCAT_ALV.
    DATA : IT_EVENT TYPE  SLIS_T_EVENT,
            W_EVENT TYPE SLIS_ALV_EVENT.
    W_EVENT-NAME = 'USER_COMMAND'.
    W_EVENT-FORM = 'USER_COMMAND'.
    APPEND W_EVENT TO IT_EVENT.
    SELECT-OPTIONS : S_CUSTNO  FOR KNA1-KUNNR.
    W_FCAT-COL_POS = 1.
    W_FCAT-FIELDNAME = 'KUNNR'.
    W_FCAT-SELTEXT_M = 'CUSTOMERNO'.
    APPEND w_fcat TO IT_FCAT.
    W_FCAT-COL_POS = 2.
    W_FCAT-FIELDNAME = 'NAME1'.
    W_FCAT-SELTEXT_M = 'CUSTOMERNAME'.
    APPEND w_fcat TO IT_FCAT.
    W_FCAT-COL_POS = 3.
    W_FCAT-FIELDNAME = 'ORT01'.
    W_FCAT-SELTEXT_M = 'CUSTOMERCITY'.
    APPEND w_fcat TO IT_FCAT.
    W_FCAT-COL_POS = 4.
    W_FCAT-FIELDNAME = 'LAND1'.
    W_FCAT-SELTEXT_M = 'COUNTRY'.
    APPEND w_fcat TO IT_FCAT.
    W_FCAT-COL_POS = 1.
    W_FCAT-FIELDNAME = 'KUNNR'.
    W_FCAT-SELTEXT_M = 'CUSTOMERNO'.
    APPEND w_fcat1 TO IT_FCAT1.
    W_FCAT-COL_POS = 2.
    W_FCAT-FIELDNAME = 'VBELN'.
    W_FCAT-SELTEXT_M = 'ORDERNO'.
    APPEND w_fcat1 TO IT_FCAT1.
    W_FCAT-COL_POS = 3.
    W_FCAT-FIELDNAME = 'ERDAT'.
    W_FCAT-SELTEXT_M = 'ORDERDATE'.
    APPEND w_fcat1 TO IT_FCAT1.
    W_FCAT-COL_POS = 4.
    W_FCAT-FIELDNAME = 'NETWR'.
    W_FCAT-SELTEXT_M = 'ORDERVALUE'.
    APPEND w_fcat1 TO IT_FCAT1.
    W_FCAT-COL_POS = 1.
    W_FCAT-FIELDNAME = 'KUNNR'.
    W_FCAT-SELTEXT_M = 'CUSTOMERNO'.
    APPEND w_fcat1 TO IT_FCAT1.
    W_FCAT-COL_POS = 2.
    W_FCAT-FIELDNAME = 'VBELN'.
    W_FCAT-SELTEXT_M = 'ORDERNO'.
    APPEND w_fcat1 TO IT_FCAT1.
    W_FCAT-COL_POS = 3.
    W_FCAT-FIELDNAME = 'ERDAT'.
    W_FCAT-SELTEXT_M = 'ORDERDATE'.
    APPEND w_fcat1 TO IT_FCAT1.
    W_FCAT-COL_POS = 4.
    W_FCAT-FIELDNAME = 'NETWR'.
    W_FCAT-SELTEXT_M = 'ORDERVALUE'.
    APPEND w_fcat1 TO IT_FCAT1.
    *PERFORM user_command.
    START-OF-SELECTION.
      SELECT KUNNR NAME1 ORT01 LAND1 FROM KNA1 INTO TABLE IT_KNA1 WHERE KUNNR IN S_CUSTNO.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                = 'Z_INTERACTIVE_ALV'
      I_CALLBACK_PF_STATUS_SET          = ' '
         I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
         IT_FIELDCAT                       = IT_FCAT
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
         IT_EVENTS                         = IT_EVENT
      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
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = IT_KNA1
    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.
    *&      Form  USER_COMM
          text
    -->  p1        text
    <--  p2        text
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                      RS_SELFIELD TYPE SLIS_SELFIELD.
      READ TABLE IT_KNA1 into w_kna1 INDEX RS_SELFIELD-TABINDEX.
      SELECT KUNNR VBELN ERDAT NETWR FROM VBAK INTO TABLE IT_VBAK WHERE KUNNR = rs_selfield-value.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                = 'Z_INTERACTIVE_ALV'
      I_CALLBACK_PF_STATUS_SET          = ' '
         I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
         IT_FIELDCAT                       = IT_FCAT1
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
         IT_EVENTS                         = IT_EVENT
      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
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = IT_VBAK
    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
    Jerry

    Hi ,
    Please check it. I think ur prod is solved.
    REPORT z_interactive_alv.
    TYPE-POOLS : slis.
    TABLES : kna1.
    TYPES : BEGIN OF ty_kna1,
    kunnr TYPE kunnr,
    name1 TYPE name1,
    ort01 TYPE ort01,
    land1 TYPE land1,
    END OF ty_kna1.
    TYPES: BEGIN OF ty_vbak,
    kunnr TYPE kunnr,
    vbeln TYPE vbeln,
    erdat TYPE erdat,
    netwr TYPE netwr,
    END OF ty_vbak.
    DATA : it_kna1 TYPE STANDARD TABLE OF ty_kna1,
    w_kna1 LIKE LINE OF it_kna1,
    it_vbak TYPE STANDARD TABLE OF ty_vbak,
    w_vbak LIKE LINE OF it_vbak.
    DATA : it_fcat TYPE slis_t_fieldcat_alv,
    w_fcat TYPE slis_fieldcat_alv.
    DATA : it_fcat1 TYPE slis_t_fieldcat_alv,
    w_fcat1 TYPE slis_fieldcat_alv.
    DATA : it_event TYPE slis_t_event,
    w_event TYPE slis_alv_event.
    w_event-name = 'USER_COMMAND'.
    w_event-form = 'USER_COMMAND'.
    APPEND w_event TO it_event.
    SELECT-OPTIONS : s_custno FOR kna1-kunnr.
    w_fcat-col_pos = 1.
    w_fcat-fieldname = 'KUNNR'.
    w_fcat-seltext_m = 'CUSTOMERNO'.
    APPEND w_fcat TO it_fcat.
    w_fcat-col_pos = 2.
    w_fcat-fieldname = 'NAME1'.
    w_fcat-seltext_m = 'CUSTOMERNAME'.
    APPEND w_fcat TO it_fcat.
    w_fcat-col_pos = 3.
    w_fcat-fieldname = 'ORT01'.
    w_fcat-seltext_m = 'CUSTOMERCITY'.
    APPEND w_fcat TO it_fcat.
    w_fcat-col_pos = 4.
    w_fcat-fieldname = 'LAND1'.
    w_fcat-seltext_m = 'COUNTRY'.
    APPEND w_fcat TO it_fcat.
    w_fcat-col_pos = 1.
    w_fcat-fieldname = 'KUNNR'.
    w_fcat-seltext_m = 'CUSTOMERNO'.
    APPEND w_fcat1 TO it_fcat1.
    w_fcat-col_pos = 2.
    w_fcat-fieldname = 'VBELN'.
    w_fcat-seltext_m = 'ORDERNO'.
    APPEND w_fcat1 TO it_fcat1.
    w_fcat-col_pos = 3.
    w_fcat-fieldname = 'ERDAT'.
    w_fcat-seltext_m = 'ORDERDATE'.
    APPEND w_fcat1 TO it_fcat1.
    w_fcat-col_pos = 4.
    w_fcat-fieldname = 'NETWR'.
    w_fcat-seltext_m = 'ORDERVALUE'.
    APPEND w_fcat1 TO it_fcat1.
    w_fcat-col_pos = 1.
    w_fcat-fieldname = 'KUNNR'.
    w_fcat-seltext_m = 'CUSTOMERNO'.
    APPEND w_fcat1 TO it_fcat1.
    w_fcat-col_pos = 2.
    w_fcat-fieldname = 'VBELN'.
    w_fcat-seltext_m = 'ORDERNO'.
    APPEND w_fcat1 TO it_fcat1.
    w_fcat-col_pos = 3.
    w_fcat-fieldname = 'ERDAT'.
    w_fcat-seltext_m = 'ORDERDATE'.
    APPEND w_fcat1 TO it_fcat1.
    w_fcat-col_pos = 4.
    w_fcat-fieldname = 'NETWR'.
    w_fcat-seltext_m = 'ORDERVALUE'.
    APPEND w_fcat1 TO it_fcat1.
    *PERFORM user_command.
    START-OF-SELECTION.
      SELECT kunnr name1 ort01 land1
        FROM kna1
        INTO TABLE it_kna1
        WHERE
      kunnr IN s_custno.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = sy-repid
         i_callback_user_command           = 'USER_COMMAND'
         it_fieldcat                       =  it_fcat[]
         it_events                         = it_event
        TABLES
          t_outtab                          = it_kna1[]
       EXCEPTIONS
         program_error                     = 1
         OTHERS                            = 2
      IF sy-subrc <> 0.
      ENDIF.
      IF sy-subrc <> 0.
      ENDIF.
    **& Form USER_COMM
       * text
       * --> p1 text
       * <-- p2 text
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
      READ TABLE it_kna1 INTO w_kna1 INDEX rs_selfield-tabindex.
      SELECT kunnr vbeln erdat netwr FROM vbak INTO TABLE it_vbak WHERE
      kunnr = rs_selfield-value.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
      i_callback_program = sy-repid
      i_callback_user_command = 'USER_COMMAND'
      it_fieldcat = it_fcat1
      it_events = it_event
      TABLES
      t_outtab = it_vbak
           EXCEPTIONS
           program_error = 1
           OTHERS = 2  .
      IF sy-subrc <> 0.
      ENDIF.
    ENDFORM.                    "user_command

  • Error in crm interactive report while  export to excel file.

    Hi expert,
    Any one facing this issue . please advice me ur suggestion.  when i am try to export .csv file it is not showing the value as it is in report.
    did i miss any configuration or please suggest  me how to fixed the issue.
    Thanks regards
    Dev

    Hi
    You probably had some wording in the total line such as SUM or TOTAL. When this is exported, Excel is unable to format that column as a number. Try removing all labels from the totals and see if this helps.
    I hope this helps
    Best wishes
    Michael Armstrong-Smith
    URL: http://learndiscoverer.com
    Blog: http://learndiscoverer.blogspot.com

  • Interactive Report validation error messages...

    Hi guys!
    I was looking for answer to this question for a long time now...is it possible to change the validation error messages in interactive report?
    With regards,
    PsmakR

    Hi,
    there are more validations than you think. Anthony Rayner has prepared a nice summary in a [url http://anthonyrayner.blogspot.com/2010/08/apex-40-enhancements-validating-form.html]blog post.
    You see in that post where and how to disable validations, but also, that you may not disable all of them. The only way to avoid all validations would be to implement the report yourself completely.
    The good news is, you can overwrite those messages. The following documentation tells you how to:
    http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/global.htm#CHDEDHBJ
    -Udo

  • Hyperion Interactive reporting performance issue.

    Hi,
    We created a report in Hyperion Interactive reporting using Hyperion Essbase as database connection file .
    Report performance was good in Interactive reporting Studio we don't have any problem in studio.
    when we open the the report in Hyperion Workspace We are facing performance issue of the report and also when i hit refresh button to refresh data in the Workspace,i am getting the following error message
    *"An Interactive Reporting Service error has occurred - Failed to acquire requested service. Error Code : 2001"*
    Any suggestions to resolve this will be really helpful.
    Thanks in advance
    Thanks
    Vamsi
    Edited by: user9363364 on Aug 24, 2010 7:49 AM
    Edited by: user9363364 on Sep 1, 2010 7:59 AM

    Hi
    i also faced such an issue and then i found the answer on metalink
    Error: "An Interactive Reporting Service Error has Occurred. Failed to Acquire Requested Service. Error Code: 2001" when Processing a bqy Report in Workspace. [ID 1117395.1]     
    Applies to:
    Hyperion BI+ - Version: 11.1.1.2.00 and later [Release: 11.1 and later ]
    Information in this document applies to any platform.
    Symptoms
    Obtaining the following error when trying to process a BQY that uses an Essbase data source in Workspace:
    "An Interactive Reporting Service error has occurred. Failed to acquire requested service. Error Code: 2001".
    Cause
    The name of the data source in the CMC contained the machine name in fully qualified name format whereas the OCE contained the machine name only. This mismatch in machine names caused the problem. Making the machine name identical in both cases resolved the problem.
    Solution
    Ensure that the name of the data source as specified in the OCE in Interactive Reporting Studio matches the name specified in the CMC tool in the field "Enter the name of the data source".
    In fact, all fields need to match between the OCE and the CMC Data Source.
    regards
    alex

  • Control which Interactive Report is initially displayed.

    Hi,
    I have a page with an Interactive Report which has a default page and a saved public page called 'My Cases'. The interactive report is accessed from several different pages and I want to be able to display either the default page or the public page depending on where the user calls the page from.
    For example, if the user accesses the page from Page 1, it displays the default interactive report, and if they access it from Page 2, it displays the saved public report.
    I can see that the interactive report as an onchange="gReport.pull(this.value,'REPORT_CHANGED')" which is called when you change the Reports selection which is refreshing the report and displaying the relevant report. So I have tried to change the value when the page loads to the report I want by adding this
    $('#apexir_SAVED_REPORTS').val('23219303448909609'); I realise the report id will change by session, but have hardcoded it just to see if I can get it to work.
    I also tried adding apex.event.trigger('#report_id','apexrefresh') aswell but it doesn't seem to work
    Any ideas on how I can achieve this?
    Cheers
    Paul

    Hi ProfessorFudger,
    According to your description, you want to create a report that the end user could enter the comment, then the comment could be sent to the report creator, right?
    Reporting Services is used for rendering the report with data retrieved from datasource. In Reporting Services, we can retrieve data from the datasource then design a report, after the report processed, data is fixed on the report. So it’s not supported
    to have the end users enter comment and fed back to report creator. For your requirement, it can’t be achieved currently.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Interactive Report Download Limit

    Hi All,
    By default, interactive reports set the number of records that can be viewed & downloaded to ten thousand. When I increase this to; say, five million - this causes a browser to crash (I have checked with Firefox & IE) when i try to download or just view all records.
    What I want to know is: is there a work around solution to this? Can a user be able to download millions of records from the database without affecting the application's performance? If it is - How?
    Thanks for making the time.
    Regards
    Kamo

    Hi Tony,
    Thanks for the reply . I have adjusted maximum row count to 100,000, even then I can download only 65535 .
    I have around 12-15 Interactive Reports(each with different Query) and I do not want to write a custom download procedure for each report and also the application is in production.
    I just want to understand(confirm) if it is a existing bug (3.2) , if there is any patch that will solve this or if there is a setting somewhere that I have missed.
    Can you please check with some other query on your 3.2 installation ?
    I ran a test on
    select rownum
    from all_objects where rownum < = 80000Norma report I was able to download all the rows but IR stopped at 65535
    Thanks,
    Dippy
    Edited by: Dippy on Jan 10, 2011 11:33 AM

  • Generated Query for Interactive Report

    Hi folks
    I am getting an error in an Interactive Report: "Column ambiguously defined".
    This cannot have been triggered by the columns selected to appear in the report. Where can I see the query generated by the report after all the user-defined edits on the original query?
    Regards
    CS

    Hi Chris,
    I'm not sure what version it became available, but in later versions you can enable debugging at the application level and then view the debugging information when running the application as a developer. This gives you information on the actual query issued by Apex.
    Andre

  • Ora-1445 in an interactive report

    I'm running into an issue adding an outer join to a SQL statement in an interactive report. When I add (+) to the where clause the I get the following error.
    1 error has occurred
    * The report query needs a unique key to identify each row. The supplied key cannot be used for this query. Please edit the report attributes to define a unique key column. ORA-01445: cannot select ROWID from, or sample, a join view without a key-preserved table
    When I run the sql in the SQL workshop and it works fine and returns the results I expect. As soon as I add the (+) to the report, it fails. I have duplicated this issue on the apex.oracle.com site and can provide the details on how to reproduce the error.
    Thanks,
    Bruce

    I tried to convert this where clause to the left outer join but it give me a table does not exist error. Perhaps you can see what I've done wrong. Here's the where clause.
    from ni_requests a,
    (select chain_num, chain_name, chain_seq_num from apex_so.cs_chain) b,
    APEX_SO.ASSOCIATE ASSOCIATE,
    (select NEW_ITEM_SEQ_NUM, assignor_comments, ASSIGNEE_ASSOC_SEQ_NUM from NI_ASSIGNEE where DATE_UNASSIGNED is null) ni_assignee
    where a.NEW_ITEM_SEQ_NUM = NI_ASSIGNEE.NEW_ITEM_SEQ_NUM(+)
    and NI_ASSIGNEE.ASSIGNEE_ASSOC_SEQ_NUM = ASSOCIATE.ASSOC_SEQ_NUM(+)
    and a.chain_seq_num = b.chain_seq_num and NI_PROC_PHASE_SEQ_NUM = 14
    The issue is on the outer from the ni_assignee to the associate table. This (+) spec causes the error in the interactive report but not in the workshop.
    I tried this, maybe I did it incorrectly...
    from ni_requests a,
    (select chain_num, chain_name, chain_seq_num from apex_so.cs_chain) b,
    left outer join APEX_SO.ASSOCIATE on NI_ASSIGNEE.ASSIGNEE_ASSOC_SEQ_NUM = ASSOCIATE.ASSOC_SEQ_NUM,
    (select NEW_ITEM_SEQ_NUM, assignor_comments, ASSIGNEE_ASSOC_SEQ_NUM from NI_ASSIGNEE where DATE_UNASSIGNED is null) ni_assignee
    where a.NEW_ITEM_SEQ_NUM = NI_ASSIGNEE.NEW_ITEM_SEQ_NUM(+)
    and a.chain_seq_num = b.chain_seq_num and NI_PROC_PHASE_SEQ_NUM = 14
    The above here give the table not found.
    Thanks,
    Bruce

  • Error opening PDF downloaded from Interactive Report

    hi -- I'm getting an error opening a PDF file downloaded from an interactive report.
    I've seen on the forum that this could be related to the size of the file, but I've tried
    this out on 10-row results (1k files) and it's still an issue.
    I save the file to my file system. If I try to open it in Adobe Reader, I get:
    File does not begin with '%PDF-'
    and
    Adobe Reader could not open <filename>.pdf because it is either not a supported
    file type or because the file has been damaged (for example, it was sent as an email
    attachment and wasn't correctly decoded).
    If I try to open in Internet Explorer, I get:
    File does not begin with '%PDF-'
    Other users are having the same problem. Download to csv and open in Excel works fine.
    Do I need to have special print attributes for this? I didn't think so... I'm just using the defaults
    (response header = report settings, content disposition = attachment).
    Ideas?
    Thanks,
    Carol

    Hi,
    I'm having the same problem that was described above, and my site does have BI Publisher installed, and it does successfully produce readable pdfs for many reports.
    But there are other reports, even reports produced using the Apex Wizard and all defaults, that just keep producing the same Adobe Reader error reported above, ie
    "Adobe Reader could not open <filename>.pdf because it is either not a supported
    file type or because the file has been damaged (for example, it was sent as an email
    attachment and wasn't correctly decoded)."
    Any suggestions?
    Cheers,
    Peter

  • VERY STRANGE Interactive Report Filter Error

    I have a very interesting problem happening with an interactive report in my APEX application. The report runs just fine and has been in use for about 6 months. Just recently, the users have begun to run into problems when using the filter capability within the report. There is a specific column heading (RH Analyst) that they typically click on and select a specific analyst name (the list contains 10 entries). Most selections from the filter list work fine. However, when one specific name is chosen, they get the dreaded ORA-06502: PL/SQL: numeric or value error: character string buffer too small+*  error. 
    I have been working to narrow the problem down and have found the following:
    1. The filter error is related to the content of one specific column (not the one I am filtering on)
    2. The column that is causing the error is a CLOB datatype
    3. The data in the CLOB column was inserted into the database from a form utilizing an "HTML Editor Standard" type of item
    4. The data in the CLOB column was copied and pasted from an email that was being viewed using Outlook 2007
    5. If I try to recreate the problem with exactly the same information, but copied and pasted from Outlook 2003, I don't experience the problem.
    6. The only people experiencing this problem are people who have upgraded their system from Microsoft Office 2003 to Microsoft Office 2007
    7. When I try to load the form with the data that was stored in the database, I get a 404 page not found error. This is the same error that I get if more than 32k of data was saved into the CLOB.
    The data pasted into the HTML editor from Outlook 2007 (_this is the data that causes problems_) and saved to the CLOB looks like this when I extract it in SQL Developer
    (CLOB) <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
    <meta content="Word.Document" name="ProgId" />
    <meta content="Microsoft Word 12" name="Generator" />
    <meta content="Microsoft Word 12" name="Originator" />
    <link href="file:///C:\DOCUME~1\euw6ay0\LOCALS~1\Temp\msohtmlclip1\01\clip_filelist.xml" rel="File-List" />
    <link href="file:///C:\DOCUME~1\euw6ay0\LOCALS~1\Temp\msohtmlclip1\01\clip_themedata.thmx" rel="themeData" />
    <link href="file:///C:\DOCUME~1\euw6ay0\LOCALS~1\Temp\msohtmlclip1\01\clip_colorschememapping.xml" rel="colorSchemeMapping" /><!--[if gte mso 9]><xml>
    <w:WordDocument>
    <w:View>Normal</w:View>
    <w:Zoom>0</w:Zoom>
    <w:TrackMoves />
    <w:TrackFormatting />
    <w:PunctuationKerning />
    <w:ValidateAgainstSchemas />
    <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
    <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
    <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
    <w:DoNotPromoteQF />
    <w:LidThemeOther>EN-US</w:LidThemeOther>
    <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
    <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
    <w:Compatibility>
    <w:BreakWrappedTables />
    <w:SnapToGridInCell />
    <w:WrapTextWithPunct />
    <w:UseAsianBreakRules />
    <w:DontGrowAutofit />
    <w:SplitPgBreakAndParaMark />
    <w:DontVertAlignCellWithSp />
    <w:DontBreakConstrainedForcedTables />
    <w:DontVertAlignInTxbx />
    <w:Word11KerningPairs />
    <w:CachedColBalance />
    </w:Compatibility>
    <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
    <m:mathPr>
    <m:mathFont m:val="Cambria Math" />
    <m:brkBin m:val="before" />
    <m:brkBinSub m:val="&#45;-" />
    <m:smallFrac m:val="off" />
    <m:dispDef />
    <m:lMargin m:val="0" />
    <m:rMargin m:val="0" />
    <m:defJc m:val="centerGroup" />
    <m:wrapIndent m:val="1440" />
    <m:intLim m:val="subSup" />
    <m:naryLim m:val="undOvr" />
    </m:mathPr></w:WordDocument>
    </xml><![endif]--><!--[if gte mso 9]><xml>
    <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
    DefSemiHidden="true" DefQFormat="false" DefPriority="99"
    LatentStyleCount="267">
    <w:LsdException Locked="false" Priority="0" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Normal" />
    <w:LsdException Locked="false" Priority="9" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="heading 1" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" />
    <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" />
    <w:LsdException Locked="false" Priority="39" Name="toc 1" />
    <w:LsdException Locked="false" Priority="39" Name="toc 2" />
    <w:LsdException Locked="false" Priority="39" Name="toc 3" />
    <w:LsdException Locked="false" Priority="39" Name="toc 4" />
    <w:LsdException Locked="false" Priority="39" Name="toc 5" />
    <w:LsdException Locked="false" Priority="39" Name="toc 6" />
    <w:LsdException Locked="false" Priority="39" Name="toc 7" />
    <w:LsdException Locked="false" Priority="39" Name="toc 8" />
    <w:LsdException Locked="false" Priority="39" Name="toc 9" />
    <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" />
    <w:LsdException Locked="false" Priority="10" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Title" />
    <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" />
    <w:LsdException Locked="false" Priority="11" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" />
    <w:LsdException Locked="false" Priority="22" SemiHidden="false"
    UnhideWhenUsed="false" QFormat="true" Name="Stro..."The data pasted into the HTML editor from Outlook 2003 and saved to the CLOB looks like this when I extract it in SQL Developer
    (CLOB) <p style="margin-bottom: 6pt;" class="MsoNormal"><u><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">&ldquo;Implementation and  Compliance Update #2&rdquo;</span></u><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> addresses a concern  that clearinghouses may be in some cases inappropriately charging providers for  the use of a standard transaction. </span><o:p></o:p></p>
    <ul type="disc">
        <li style="" class="MsoNormal"><span style="font-size: 7pt;"> </span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">In particular, we  cite MN Statutes 62J.536, Subd. 1f, which states that:  <em>Group purchasers may  not impose any fee on providers for the use of the transactions prescribed in  this subdivision.  </em>The update explains that &ldquo;payers (or their agents) may  not charge for receiving a standard transaction&rdquo; and provides additional  information. The update is accompanied by a joint cover memo from MDH, the  Minnesota Department of Commerce, and the Minnesota Department of Labor and  Industry.  Note:  The Minnesota Department of Health (MDH) is charged with  implementing and enforcing Minnesota Statutes, section 62J.536. In addition, the  Minnesota Department of Commerce and the Department of Labor and Industry  administer additional statutory requirements for electronic claims submission,  consistent with MS &sect; 62J.536.</span><span style="font-size: 9pt; font-family: 'Arial','sans-serif';">  <o:p></o:p></span></li>
    </ul>
    <p style="margin-bottom: 6pt;" class="MsoNormal"><u><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">&ldquo;Implementation and  Compliance Update #3&rdquo;</span></u><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> provides a reminder  of the upcoming Dec. 15, 2009 effective date for rules for the standard,  electronic exchange of health care remittance advices. It also clarifies  that:</span> <o:p></o:p></p>
    <ul type="disc">
        <li style="" class="MsoNormal"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Statutory  requirements for standard, electronic remittance advices do not include  requirements for electronic payment (electronic funds transfer &ndash;  EFT)</span><span style="font-size: 9pt; font-family: 'Arial','sans-serif';">  <o:p></o:p></span></li>
    </ul>
    <ul type="disc">
        <li style="" class="MsoNormal"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Consistent with MDH&rsquo;s  enforcement policies and plans described in Update #1 (posted  6/5/09):</span><span style="font-size: 9pt; font-family: 'Arial','sans-serif';">  <o:p></o:p></span></li>
    </ul>
    <p style="margin-bottom: 6pt; margin-left: 1.1in; text-indent: -0.25in;" class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New';">o</span><span style="font-size: 7pt;">        </span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Starting Dec. 15,  2009, group purchasers (payers) must be able to transmit &ndash; and providers must be  able to accept - standard, electronic RAs via computer-computer electronic data  interchange (EDI). So long as payers and providers are able to exchange the  remittance advice standard transaction electronically, the Department does not  take issue with payers making available additional mechanisms for communicating  RAs to providers, such as access to portable document format (.pdf) files, or  provider electronic mailboxes.</span><span style="font-family: 'Arial','sans-serif';"> </span><o:p></o:p></p>
    <ul type="disc">
        <li style="" class="MsoNormal"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">The Department&rsquo;s  determinations of whether payers and providers are complying with the  regulations will take into account several factors. However, we have determined  that it is not realistic to require electronic remittance advices when claims  ar..."     I am using APEX version 3.2
    Any help would be greatly appreciated. For now, my short term solution for them is to copy the information from Outlook 2007, paste it into a Wordpad, then copy it from wordpad and paste it into the HTML editor control. That seems to work fine but it is not a very nice solution for the users!
    Thanks,
    Dale

    Roel,
    Hey there! Hope you enjoyed your time off ;) Thanks for having a look...
    Yes, of course I "could" update the functions, but this is NOT something I want to do. I'm one of those people that subscribes to Coding by Contract and the assertion routines at the beginning and end of my subprograms are an important part of that.
    This may be a lack of understanding on my part with regards to the order in which Oracle does it's thing - or a bug in Apex... I'm able to duplicate the problem on apex.oracle.com: dmcghan/test/test.
    Log into the demo app with admin/dmcghan. The home page has an interactive report, filter the name and you should get the error. When you look at the query you'll see a filter in the where clause that goes against the apex_collections table. This is populated from the post-authentication procedure. Let me know if you have questions.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur

  • Interactive report download in PDF - getting an error message

    Hi,
    while using default feature to download interactive report in PDF format, I am getting following error:
    Adobe Reader could not open 'filename.pdf'because it is either not a supported file type or because the file as been damaged ( for example, it was sent as an email attachment and wasn't correctly decoded
    please advice
    Thanks

    Hi,
    Adobe Reader could not open 'filename.pdf'because it is either not a supported file type or because the file as been damaged ( for example, it was sent as an email attachment and wasn't correctly decodedWhen I get this error, I rename the downloaded PDF file to TXT to look into it. Usually there is a human-readable error message in there generated by the web server, Apex or any other party involved in its generation...
    But, as pointed out, have you set up Apex to generate PDFs?
    Luis

  • Interactive Report - Save Default Filter not Saving

    In Apex 3.2 I have an Interactive report were a Filter I applied won't save to the report.
    I applied the Filter and saved it as the default report for all users, but when I leave the page and come back the filter its gone.
    The same application on different pages has interactive report with filters applied to the default report and they all work fine, it's just this one report that the filter won't stay.
    First time I've every had this issue.
    Any ideas?
    The filter is pretty simply, I have a column that has codes of D, E, G,... and I apply the filter for CODE != D.

    Hi,
    I've just been trying the "in the last" option and had no problems for any number that I entered. Are you just entering 1 into the box? What error do you get?
    I've loaded the page with Debug switched on, and get:
    select
           null as apxws_row_pk,
           "DATE_ID",
           "ATD_DATE",
           "CHECK",
           count(*) over () as apxws_row_cnt
    from (
    select  *  from (
    select
    apex_item.checkbox(1, DATE_ID) "CHECK",
    "DATE_ID",
    "ATD_DATE"
    from "#OWNER#"."ATD_DATES"
    )  r
    where ("ATD_DATE" between systimestamp - (1 * :APXWS_EXPR_1) and systimestamp)
    ) r where rownum <= to_number(:APXWS_MAX_ROW_CNT):APXWS_EXPR_1 would contain the value 1 as that is what I've entered for the filter. My report's sql statement is just the innermost nested select statement, the rest has been added by the IR functionality and the filter.
    Andy

Maybe you are looking for