Invalid aruments in decode when running report

Hi,
I have a decode statement in my sql.
I can close the data model and compile the program - no errors
However, when I run the report, I get invalid number of arguments for the decode.
I have copied the same code from a working report with the same unfortunate result.
Help !

SELECT v.vendor_name C_VENDOR_NAME,
       v.segment1 C_VENDOR_NUMBER,
       decode(upper(:P_SORT_OPTION),'VENDOR NAME',decode(:C_VENDOR_NAME_SELECT,'%',upper(v.vendor_name),v.vendor_name),i.invoice_type_lookup_code) C_PRIMARY_BRK,
       decode(upper(:P_SORT_OPTION),'VENDOR NAME',decode(:C_VENDOR_NAME_SELECT,'%', decode(:SORT_BY_ALTERNATE, 'Y', upper(v.vendor_name_alt), upper(v.vendor_name)), decode(:SORT_BY_ALTERNATE, 'Y', v.vendor_name_alt, v.vendor_name)),i.invoice_type_lookup_code) C_PRIMARY_BRK_REAL,
       v.vendor_name C_SHORT_VENDOR_NAME,
       v.vendor_id C_VENDOR_ID,
       i.vendor_site_id C_CONTACT_SITE_ID,
       vs.vendor_site_code C_VENDOR_SITE_CODE,
       decode(:SORT_BY_ALTERNATE, 'Y', vs.vendor_site_code_alt, vs.vendor_site_code) C_VENDOR_SITE_CODE_BRK,
       nvl(vs.state,' ') C_VENDOR_STATE,
       nvl(substr(vs.city,1,15),' ') C_VENDOR_CITY,
       ps.payment_num C_REFERENCE_NUMBER,
       i.vendor_site_id C_ADDRESS_ID,
       nvl(substr(i.invoice_type_lookup_code,1,20), ' ') C_INVOICE_TYPE,
       i.invoice_id C_PAYMENT_SCHED_ID,
       nvl(to_char(ps.due_date,'DD-MON-RR'),' ') C_DUE_DATE,
       /* Bug: 1549982 */
       /* Bug 2083419 For foreign currencies, show amounts in functional currency */
       decode(i.invoice_currency_code,:C_BASE_CURRENCY_CODE,decode(:C_BASE_MIN_ACCT_UNIT,0,round(((nvl(ps.amount_remaining, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1)),:C_BASE_PRECISION),round(((nvl(ps.amount_remaining, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1))/:C_BASE_MIN_ACCT_UNIT) *:C_BASE_MIN_ACCT_UNIT), decode(i.exchange_rate,NULL,0, decode(:C_BASE_MIN_ACCT_UNIT, 0,round(((nvl(ps.amount_remaining, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1)),:C_BASE_PRECISION), round(((nvl(ps.amount_remaining, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1))/:C_BASE_MIN_ACCT_UNIT) * :C_BASE_MIN_ACCT_UNIT))) C_AMT_DUE_REMAINING,
       decode(i.invoice_currency_code,:C_BASE_CURRENCY_CODE, decode(:C_BASE_MIN_ACCT_UNIT,0,round(((nvl(ps.gross_amount, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1)),:C_BASE_PRECISION), round(((nvl(ps.gross_amount, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1))/:C_BASE_MIN_ACCT_UNIT) * :C_BASE_MIN_ACCT_UNIT), decode(i.exchange_rate,NULL,0, decode(:C_BASE_MIN_ACCT_UNIT, 0,round(((nvl(ps.gross_amount, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1)),:C_BASE_PRECISION), round(((nvl(ps.gross_amount, 0)/(nvl(i.payment_cross_rate,1))) * nvl(i.exchange_rate,1))/:C_BASE_MIN_ACCT_UNIT) * :C_BASE_MIN_ACCT_UNIT))) C_AMT_DUE_ORIGINAL,
       i.accts_pay_code_combination_id C_VENDOR_TRX_ID,
       i.invoice_num C_INVOICE_NUMBER,
       i.invoice_num C_INVOICE_NUM_SHORT,
       nvl(hr.org_information4,i.org_id) ORGNAME,
       to_char(i.invoice_date,'DD-MON-RR') C_INVOICE_DATE,
       ceil(to_date(to_char(SYSDATE,'DD-MON-RR')) - ps.due_date) C_DAYS_PAST_DUE,
       decode(i.invoice_currency_code, :C_BASE_CURRENCY_CODE, ' ', decode(i.exchange_rate, NULL,'*', ' ')) C_DATA_CONVERTED,
       nvl(i.exchange_rate, 1) C_EXCHANGE_RATE,
       decode(:C_VENDOR_NAME_SELECT,'%',decode(:SORT_BY_ALTERNATE, 'Y', upper(v.vendor_name_alt), upper(v.vendor_name)),decode(:SORT_BY_ALTERNATE, 'Y', v.vendor_name_alt, v.vendor_name)) C_VENDOR_NAME_BRK,
       decode(:p_seq_numbers, 'N', i.voucher_num, i.doc_sequence_value) VOUCHER_NUMBER
  FROM hr_organization_information                     hr,
       ap_payment_schedules_all                         ps, 
       po_vendor_sites_all                          vs,      
       po_vendors                               v,      
       ap_invoices_all                               i    
WHERE i.payment_status_flag in ('N','P')
   AND i.invoice_type_lookup_code like :C_INVOICE_TYPE_SELECT
   AND i.cancelled_date IS NULL  
   AND v.vendor_id                              = i.vendor_id
   AND vs.vendor_site_id                         = i.vendor_site_id
   AND ps.invoice_id                              = i.invoice_id
   AND ((to_date(to_char(SYSDATE,'DD-MON-RR')) - ps.due_date) between :C_MINDAYS and :C_MAXDAYS)
   AND hr.organization_id                         = i.org_id
   AND hr.org_information_context                     = 'Operating Unit Information'
   AND (nvl(ps.amount_remaining, 0) * nvl(i.exchange_rate,1))      != 0
   &P_VENDOR_PREDICATE
   &P_AMOUNT_PREDICATE  
   &P_ORDER_BYTry and comment out one of the 8 original decodes to see which one or ones is the offending statement and then default that column value to something, like:
       ceil(to_date(to_char(SYSDATE,'DD-MON-RR')) - ps.due_date) C_DAYS_PAST_DUE,
       --decode(i.invoice_currency_code, :C_BASE_CURRENCY_CODE, ' ', decode(i.exchange_rate, NULL,'*', ' ')) C_DATA_CONVERTED,
       '*' C_DATA_CONVERTED
       nvl(i.exchange_rate, 1) C_EXCHANGE_RATE,
...Also trying supplying more details on the "4 parameters that work". What does that mean to people who do not have your data. Does the 5th one work when null? Does the 5th one only produce an error when you supply a value. What are some example values of the other 4 parameters?

Similar Messages

  • Invalid group section error when running report containing command.

    The error is the following (displayed in Dutch, spent some time changing the language settings, but still CR persists in showing the message in my mother tongue, but the gist of it is: invalid group section or something like that) Process error: Ultimo.Services.ReportService.Core.ReportingException: Error creating export file: LtapList02-01.rpt ---> CrystalDecisions.CrystalReports.Engine.InvalidArgumentException: Deze groepssectie kan niet worden afgedrukt omdat het voorwaardeveld van de sectie niet bestaat of ongeldig is. Maak de sectie op om een ander voorwaardeveld te kiezen. Fout in bestand LtapList02-01 {DEE4EF1C-A138-4AE9-8C64-EF8389263782}.rpt: Ongeldige groepsvoorwaarde. ---> System.Runtime.InteropServices.COMException: Deze groepssectie kan niet worden afgedrukt omdat het voorwaardeveld van de sectie niet bestaat of ongeldig is. Maak de sectie op om een ander voorwaardeveld te kiezen. Fout in bestand LtapList02-01 {DEE4EF1C-A138-4AE9-8C64-EF8389263782}.rpt: Ongeldige groepsvoorwaarde.  at CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)  at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)  --- End of inner exception stack trace ---  at CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)  at CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)  at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)  at CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)  at CrystalDecisions.CrystalReports.Engine.ReportDocument.Export(ExportOptions options) etc. The command is phrased thus: select * from {?DatabaseSchemaPrefix}applfn_LtapStructure(). The error is somehow associated with the parameter used in this command. If I remove it and replace it by the value used when running the report, the report runs successfully. Also, strangely, when I define a default value for the parameter in the command and programmatically add a value for it by the method call parameterFieldDefinition.CurrentValues.AddValue(), also the report will run flawlessly. Without the default value it will fail. But when I want to run the command without a value for the parameter (parameterFieldDefinition.CurrentValues.AddValue("")), so for it to be empty, while a default value is defined for it too, also, running the report will result in an error. My question is: has anyone ever seen this type of thing happening? And is there a solution?

    Hi
         Is it a Date Parameter., ! if so, look for format it is taking. because u said report runs well when default value is assigned. Hope, most probably the problem will be related to data format.
    and
    try to provide details regarding CR version and all., will be helpful to others to help you.

  • Smart forms print control pop box (no required) when run report

    Dear All Expert Guru,
             how to control printing pop box when execute transaction code ,Report are make in smart form format
             because while run our report then come printing pop box  select out put device the will come report
                                             . but our user required no should be come printing pop box they are required when run report direct come report
       Pls help me any one.
    Thanks & Regars.
    Sudhir Srivsatava

    Hi,
       Pass the parameter no_dialog = 'X' while calling the smartform.
    data: wa_ctrlop type ssfctrlop.
       wa_ctrlop-no_dialog = 'X'.
    CALL FUNCTION fm_name
      EXPORTING
    *   ARCHIVE_INDEX              = ARCHIVE_INDEX
    *   ARCHIVE_INDEX_TAB          = ARCHIVE_INDEX_TAB
    *   ARCHIVE_PARAMETERS         = ARCHIVE_PARAMETERS
        CONTROL_PARAMETERS         =  wa_ctrlop
    *   MAIL_APPL_OBJ              = MAIL_APPL_OBJ
    *   MAIL_RECIPIENT             = MAIL_RECIPIENT
    *   MAIL_SENDER                = MAIL_SENDER
    *    OUTPUT_OPTIONS             = OUTPUT_OPTIONS
    *    USER_SETTINGS              = 'X'
    * IMPORTING
    *   DOCUMENT_OUTPUT_INFO       = DOCUMENT_OUTPUT_INFO
    *   JOB_OUTPUT_INFO            = JOB_OUTPUT_INFO
    *   JOB_OUTPUT_OPTIONS         = JOB_OUTPUT_OPTIONS
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    Regards,
    Srini.

  • Maxmize window when run Report builder 10gR2

    Thanks in advance to all,
    I have read of a post in which he treated maxmize window when run Report builder 10gR2, but I don't succeed in finding it. Can someone point out me the link?
    PS. I have already post on Form Forum

    Thanks for your reply.
    But i was speaking maxmize window of report builder application on WIN xp, because when i
    exe rwbuilder i always,have to maxmize window.
    I know that it is a fool problem, but if to someone it happens and he had resolved...
    Howevar thanks for your time

  • Proxy error when running reports in Infoview

    We are running XI 3.1 sp4 and are getting a Proxy error on some reports when running in PDF mode. Any ideas?
    Here's the error:
    Proxy Error
    The proxy server received an invalid response from an upstream server.
    The proxy server could not handle the request GET /AnalyticalReporting/ViewAsPDF/Disposition Analysis Report.pdf.
    Reason: Error reading from remote server
    Apache Server at preprod.nalts.com Port 443

    Hi Sylvia,
    It seems that the reverse proxy you are using: Apache could have problems with the sessions of the users. I have seen the same behaviour with other Load Balancers. If you have different WAS in the backend, make sure they stay with the same WAS (session affinity).
    Regards,
    Julian

  • URGENT!!!!- INTEL MAC "INVALID SIBLING DISK" error when run disk utility

    I am very upset, I ran my verify disk permissions, everything fine, repair disk permissions, everything fine, do t periodically just to mae sure all my stuff is in order,,,, then I decided to run te VERIFY DISK, because do not do it as much and want to mae sure my macbook pro is running fine, and I get:
    Verifying volume “minimal minimal”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Invalid sibling link
    The volume minimal minimal needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    !!!!!!!!!!!!!!! ***?!!!!!!!!!!!!!!!!! there is no way of repairing the disk, and when I search for possible solutons it says I need to run it from the original osx installer disk, and even when it does not necessarily repir this error. besides the fact that the original cd is in atlanta and I am currently in barcelona, some say that I would need to reformat my drive and either way this might not solve the problem. I HAVE WAY TOO MUCH IMPORTANT INFORMATION on my macbook pro to reformat, and i do not have the money to buy an external hardrive, I A VERY UPSET, A BRAND NEW COMPUTER, LESS THAN TWO MONTHS OLD, AND ALREADY I HAVE THESE KIND OF PROBLEMS WITH IT, WHERE IS MY SUPPORT?! please tell me, what do i do? I expect a decent, viable slution to the problem. I need my computer ad the information in it, I work from it and also use it to produce music. why would I have this kind of problem, when I search for answers, everything relates to external hardrives, ..... this is my internal hard drive that I am talking about--- WHAT DO I DO?!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    The available Apple centers in Spain are:
    ADEMAC
    C Castelló, 109
    28006 Madrid
    Tel 91 562 11 00
    BANANA COMPUTER
    C Leon and Castillo, 88
    The 35004 Palms of Great Canary
    Tel: 928 24 28 28
    Fax: 928 24 82 31
    BANANA COMPUTER
    General boulevard Franco, 141
    38001. - Santa Cruz de Tenerife
    Tlf.: 922882126
    Fax.: 922206782
    BENOTAC
    C Doctor Castelo, 35
    28009 Madrid
    Tel 91 308 43 63
    BENOTAC
    C Babel Nº1, the Premises
    29006 Malaga
    Tel: 952 04 09 55
    Fax: 952 04 13 58
    BILBOMICRO
    Stolen c of Amezaga, nº 7 low
    48008 Bilbao (Biscay)
    Tel 94 423 02 13
    BILBOMICRO
    C Abendaño, 52
    01008 Vitoria
    Tel 945 28 41 33
    BUS Solutions
    C Cabrales, 100
    33201 Gijón - Asturias
    Tel: 985 35 90 85
    CTA Serveis
    C Consell de Cent, 382
    08009 Barcelona
    Tel 93 24 40 350
    GOLDENMAC
    C Bolt, 48
    29007 Malaga
    Tel 952 42 97 12
    GOLDENMAC
    Avda. White Carrero, 2
    41011 Seville
    Tel 95 427 12 13
    K-TUIN
    C Luis You live 8
    50006 Zaragoza
    Tel 976 56 72 27
    K-TUIN
    C Hernandez Lazaro 14
    46015 Valencia
    Tel 96 385 36 74
    K-TUIN
    C Muntaner 537 - 541
    08022 Barcelona
    Tel 93 418 02 03
    K-TUIN
    C Orense, 52
    28020 Madrid
    Tel 91 55 56 798
    K-TUIN
    C Aureliano Valle, 4
    48010 Bilbao
    Tel 94 410 07 77
    Microgestio, LIMITED LIABILITY COMPANY.
    C Valencia, 87-89
    08029 Barcelona
    Tel 93 454 63 63
    Rossellimac.
    C Painter Lopez Mosque, 12
    18002 Granada
    Tel 95 829 13 24
    SICOS
    Pza of Good Shepherd 6
    20005 San Sebastián (Guipuzcoa)
    Tel 94 344 12 79
    Valles Tecnologic, S.A.
    Plza. Of the Unio, 3 the Premises 1º
    08190 Sant Cugat of Valleys (Barcelona)
    Tel 93 590 80 60
    Perhaps, since you are under warranty, they may have a boot disk to attempt to run disk utility and see if the problem can be repaired before resorting to reformatting. Disk error may occur because of a number of issues (installed software, crashes, shutdowns, physical movement of the drive while disks spinning, etc.)
    In addition you may want to boot in the single user mode to access the FSCK command as follows: The following is from the Apple support site
    Mac OS X: How to Start up in Single-User or Verbose Mode
    You may use a key combination when starting up the computer to enter single-user mode or verbose mode, either of which can be used for troubleshooting and in software development. This document applies to Mac OS X and Mac OS X Server versions 10.0 and later.
    Steps to Enter Single-User or Verbose Mode
    1. Shut down the computer if it is on.
    2. Press the power button to start the computer.
    3. Immediately press and hold the Command (Apple) key and one of the following:
    the "s" key for single-user mode.
    the "v" key for verbose mode.
    4. To exit single-user mode type: reboot
    5. Press Return.
    You have successfully entered single-user or verbose mode when you see white text appear on the screen.
    Then you may try to repair as follows using the FSCK
    fsck is a command-line utility that may be able to verify and repair a disk. If you can successfully start up in Safe Mode or use Disk Utility while started up from a disc, you don't need to use fsck. However, here are some situations in which fsck may be necessary.
    Your Mac OS X disc isn't available.
    Your optical drive isn't available.
    You can't start with a Safe Boot.
    Tip: If you use a Mac OS X Extended (Journaled) formatted volume, such as with Mac OS X 10.3 or later, you probably won't need to use fsck. If you do use it for any reason, please be aware that benign error messages can appear.
    If you're not sure how your volume is formatted and you can't start up from your Mac OS X volume to find out, type the following command in a command-line interface and then press Return: diskutil info /
    If you see "File System: Journaled HFS+" returned, you have a Journaled volume.
    To use fsck, you must run it from the command line. Unlike using your mouse to open an application to do something, you'll need to type a text command at the prompt (#) to tell fsck what to do. The Terminal application (/Applications/Utilities) and single-user mode are two examples of command-line interfaces in which you can type such commands. To use fsck:
    Start up your computer in single-user mode to reach the command line.
    Note: If necessary, perform a forced restart as described in the Emergency Troubleshooting Handbook that came with your computer. On desktop computers, you can do this by pressing the reset/interrupt button (if there is one) or holding down the power button for several seconds. On portable computers, simultaneously press the Command-Control-power keys. If your portable computer doesn't restart with this method, you may need to reset the Power Manager.
    At the command-line prompt, type /sbin/fsck -fy
    Press Return. fsck will go through five "phases" and then return information about your disk's use and fragmentation. Once it finishes, it'll display this message if no issue is found:
    ** The volume (nameofvolume) appears to be OK
    If fsck found issues and has altered, repaired, or fixed anything, it will display this message:
    *** FILE SYSTEM WAS MODIFIED ***
    Important: If this message appears, repeat the fsck command you typed in step 2 until fsck tells you that your volume appears to be OK (first-pass repairs may uncover additional issues, so this is a normal thing to do).
    When fsck reports that your volume is OK, type reboot at the prompt and then press Return.
    Your computer should start up normally and allow you to log in.
    About live verification in Mac OS X 10.4.3 or later
    In Mac OS X 10.4.3 or later, you can verify your Mac OS X volume while started from it. This is known as live verification, and can be used in three different ways.
    Option 1: Verify your disk using Disk Utility while started from the startup disk. To find out how to do this, see this article. Please note that live verification does not involve any disk repair, so if verification finds something that should be repaired, start up from your Mac OS X Install disc and use Disk Utility as described above in "Try Disk Utility."
    Option 2 (advanced): Use the command line and the command-line utility, diskutil.
    Start up your computer and log in as an administrator.
    Open Terminal (/Applications/Utilities).
    At the prompt, type the following command and then press Return:
    diskutil verify /
    Note: Don't use this method to check non-startup volumes.
    You should see messages such as the following during the disk check:
    Could not unmount disk for verification, attempting live verify
    Started verify/repair on volume disk0s3 Macintosh HD
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD appears to be OK.
    Mounting Disk
    Verify/repair finished on volume disk0s3 Macintosh HD
    Option 3 (advanced): Use the command line and the fsck_hfs -l command.
    Start up your computer and log in as an administrator.
    Open Terminal (/Applications/Utilities).
    At the prompt, type the following command and then press Return to determine your filesytem ID:
    df -hl
    Look for some lines of text that look like this:
    Filesystem Size Used Avail Capacity Mounted on
    /dev/disk0s3 37G 20G 17G 55% /
    /dev/disk0s5 37G 37G 641M 98% /Volumes/Storage
    Make a note of the first "disk" name that appears after /dev/, such as "disk0s3." This is your filesystem ID for your startup volume.
    At the prompt, type the following command and then press Return:
    df -hl
    Then type the following command, where "disk0s3" is your filesystem ID you noted in step 4, then press Return:
    sudo fsck_hfs -l /dev/disk0s3
    When prompted, enter your admin password, then press Return to begin the verification.
    You should see messages like these during the disk check:
    ** /dev/rdisk0s3 (NO WRITE)
    ** Root file system
    ** Checking HFS Plus volume.
    ** Checking Extents Overflow file.
    ** Checking Catalog file.
    ** Checking multi-linked files.
    ** Checking Catalog hierarchy.
    ** Checking Extended Attributes file.
    ** Checking volume bitmap.
    ** Checking volume information.
    ** The volume Macintosh HD appears to be OK.
    Additional Information
    If you're interested in UNIX-style command-line syntax, here's a look at how a couple of flags used in our instruction can influence fsck:
    The -y flag: Tells fsck that you want to answer "yes" to all questions about fixing, repairing, or salvaging information. This is the optimal approach, as answering "no" to any question causes fsck to stop. You cannot determine that all necessary repairs have been made until fsck completes and gives its final report.
    The -f flag: Forces fsck to check "clean" filesystems when preening.
    Macbook Pro 17" 7200 HD 1GB Powerbook G4 (15 inch FW 800)   Mac OS X (10.4.6)  
    Macbook Pro 17" 7200 HD 1GB Powerbook G4 (15 inch FW 800)   Mac OS X (10.4.6)  
    Macbook Pro 17" 7200 HD 1GB Powerbook G4 (15 inch FW 800)   Mac OS X (10.4.6)  

  • Issue when Run Report with  Hier selection   in the Portal

    Hi  Portal  BI Experts,
    we are finding a strange issue  when Running the Report.
    the following  Variables are in the  Report  Selection screen :
    Company code [optiona]
    Prod.Variance Type [ mandatory]
    Hierarchy Node Variable [optional]
    TheQuery  which I am Running  thro Bex Analyzer  with  the Hier  selection as below , is working  fine. But
    When I  run   thro portal with Hier selection value   with    00/50/G310/702258(0CUST_SALES
    It automatically  display as +00/50/G310/702258(0CUST_SALES    with + symbol. and  thro the error:
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    If I remove the plus symbol  report runnig fine.
    Your  immediate help highly appreciated.
    Thanks
    Hema
    Edited by: hemav on Mar 21, 2011 2:29 PM

    Hi Jaya,
    This is the Error message  I am facing when I Execute ithe query  report n the Web[Portal]
    Input "\+00/50/G310/702258(0CUST_SALES);\+00/51/G410/703096(0CUST_SALES)" for Ship-To Party (Sales has invalid format
    ie. In the variable screen the selected hier value  automaticvally display with plus symbol
    Actual   Hier  value :   00/50/G310/702258(0CUST_SALES)
    Once close the Hier  selection list window , the Hier value  turned to  +00/50/G310/702258(0CUST_SALES)
    If I give ok with this Plus symbol  it throwing the above error.  By  removing the Plus symbol manually  it is working fine.
    I unable locate the  settings.
    that too when I run the same report  in Bex Analyzer  woking fine , no issues in the Hier  value.
    Thanks ,
    Hema

  • Error when running reports: "File Server needs to be re-initialized"

    Hi.
    This error "File Server needs to be re-initialized" appears when our users try to run reports on 11.5.10. EBS.
    There is also a message box that appears and reads:
    "A error occurred while attempting to establish a conection to Application File Server. There may be a network configuration problem, or the TNS listener may not be running."
    This is a problem in our test environment. We recently ran autoconfig on the test side.
    I have checked Metalink and also wider google search.
    Perhaps we have an issue with the tnsnames files? Well, I verified this and the tnsnames in production and test, and they are the same.
    Perhaps a listener.ora file issue?
    "The issue is caused by the variables APPLFSTT and APPLFSWD is not being set properly in the <8.0.6_ORACLE_HOME> listener.ora file. " (Note 263654.1)
    I am trying to verify the meaning of the following (in listener):
    ( SID_DESC = ( SID_NAME = FNDFS )
    ( ORACLE_HOME = /oracli2/oracle/testora/8.0.6 )
    ,APPLFSTT=
    TEST_BALANCE;TEST;PROD_806_BALANCE;TEST_FO;TEST_806_BALANCE;PROD_FO,APPLFSWD=/or
    acli2/oracle/testappl/admin;/oracli2/oracle/testcomn/temp;/oracli2/oracle/testco
    mn/html/oam/nonUix/launchMode/restricted' )
    In the APPLFSTT entry, should there be any mention of "PROD" ? Shouldnt this all be changed to TEST?
    Also, comparing this to the PROD listener, the order of APPLFSTT is different:
    TEST: APPLFSTT=
    TEST_BALANCE;TEST;PROD_806_BALANCE;TEST_FO;TEST_806_BALANCE
    PROD:APPLFSTT=
    PROD_806_BALANCE;PROD;PROD_BALANCE;PROD_FO,
    I have made a copy of our listener in TEst, so I can edit the existing one. Trouble is, not sure if I even should try to edit it!
    Any suggestions, much appreciated.
    Oracle 9.2.0. AIX 5.2.
    Notes covered in Metalink:
    274177.1
    303971.1
    304568.1
    263654.1

    Yes thanks for that. Metalink has informed me to do the same, basically.
    But I am in the middle of a cloning, so I will finish that then run autoconfig once again.
    I already ran Autoconfig on both source and target, so will do again once this process is over.
    Cheers.
    DA

  • Error when running reports on the WEB

    Hi,
    I have been successful in deploying our application on the Web,
    using WebDB listener, Developer Server, Report Server and JInitiator 1.1.7.18.
    Now the forms on the web runs fine without any problem but
    when I run Reports from Forms using RUN_PRODUCT built-in by passing parameters from Forms to Reports it generates this following error: REP-0081-Error During I/O operation and REP-0110: Unable to open file "<<file>>.html" scaba 14.
    The strange thing about the REP-0110 is, it refer to a path that is not defined in my registry(FORMS60_OUTPUT,_MAPPING, REPORTS60_PATH,_TMP,_WEBLOC,_WEBLOC_TRANSLATED) and neither my physical directory in the directory mappings which I defined on the web server. (I refer to a the path mindpack4.1 and the REP-0110 refer to mindpack4_1)
    Any help appreciated.
    Thanks

    Hello pals,
    i have set the following parameters: TMPDIR and REPORTS60_TMP...
    and it seems to be working!!!
    i hope that the problem is not somewhere else.
    NB. I was having problems with 2 reports only. the others were
    working fine.
    any comments will be most welcomed.
    regards
    Yogeeraj

  • Error when running Report

    I've a problem when run the report.
    I get the error like below:
    Rep-0108:File 'C:\orawin95\report60\rwbdexpq.res' not found.
    Are you solve this error before? I already check the file and I found that is missing for the first time then I copy the file from the other machine.but same message still apear.
    This only hanppend when the PC is newly install of my application from my installation disk.
    Thanks in advance
    Eric
    null

    I had an similar error, because I developed the form/report.. with an updated version of developer but forgot to update the users runtime module; when I installed the patch on the users pc everything went fine;
    I tried at first also to copy the missing file, which didn't help at all;
    null

  • Error 401 when run report "RSCMST" to test my content server

    when I run report "RSCMST" to test the my content server. I get the error:
    header HTTP/1.1 401 Authorization Required
    date: Fri, 05 Dec 2008 20:20:45 GMT
    server: Apache/1.3.41 (Unix) SAPCS/640
    x-servertime: 20:20:45
    x-query: create&pVersion=0046&contRep=ZTEST001&docId=020D3949CA03445AE10000000A14022B&compId=data&docPro ..
    t=rud&accessMode=c&authId=CN%3DCPJ&expiration=20081205142027&secKey=MIH3BgkqhkiG9w0BBwKggekwgeYC
    x-serverdate: 2008-12-05
    x-pversion: 0046
    x-errordescription: URI signature has expired
    x-serverid: server="content01.ivo.com.cn";serverPort="1090"
    x-servertype: SAP HTTP Content Server
    content-length: 752
    connection: close
    content-type: text/plain
    ~remote_addr:
    ~uri_scheme_expanded: NONE
    want 201
    bad 401
    time 17.974
    It seems that the "bad 401" means a http error. I do not know how to configure it ?
    my content server uses the maxdb, and http is apache, they are all running on redhat linux ese 5
    who can give me some advices? thanks

    hello,
    I am also getting same problem with newly installed content server.
    I have defined connectivity through CSADMIN. but when I 'm running this report I 'm getting same
    time (-93) problem.
    Could you please tell me how you rectified time zone setting problem..
    would be great help..
    Regards
    Anju

  • Part.getContent() is never decoded when running on Mac through WebStart

    I have an application using JavaMail 1.4.3 to extract content from MimeMessages. This works great when run locally on Mac, Windows and Linux, and also on Windows and Linux through WebStart. When run through WebStart on the Mac, content from parts are never decoded, so I just get the stream class when calling part.getContent().
    It seems like some functionality is lost when running through WebStart on the Mac. I realize this can be a problem with the Java implementation on the Mac, but I'm hoping someone can give me a pointer as to how to figure out what's going wrong. If I start from the command line with the same JRE used by WebStart, everything is fine on the Mac as well.
    Any ideas?
    Sincerely,
    Edvin Syse

    I was too quick - part.getContent() is now decoded for most content types, for example text/plain, rfc822, all MimeBody types etc, but for text/html I always just get an empty string. Is text/html handled differently, maybe reading in another config-file or something, so I need to handle this case in another way?

  • When run report from form(6i) on the web,error FRM-921000

    While I was trying to run report from form (6i)on the web,it will give me this error
    message FRM-921000 and hang.
    But when I try to call form using form,I do
    not have the problem.
    May I know ehat is the cause?
    Anybody encounter this before?
    Thanks
    null

    I am running Forms 6i on the web and attempting to call me report via RUN_REPORT_OBJECT. I am getting the same error as Jenny FRM-92100. I need to pass a parameter list so I don't think I can use WEB.SHOW_DOCUMENT. Any ideas???
    Thanks,
    Jenny N.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Joseph Schwertner ([email protected]):
    Dear Jenny,
    I am running reports from Forms 6i on the WEB. I did not encounter your problem. Nevertheless I would like to share the following with you.
    RUN_PRODUCT doesn't work for calling reports ON THE WEB. Instead using RUN_PRODUCT do the following:
    1. Install Oracle Reports Server
    2. For WEB calls of reports use WEB.SHOW_DOCUMENT
    3. Learn how to pass parameters to the reports. It is a litlle bit strange, but it is explaint excellent in the documentation to the Reports Server.
    I hope this will help you.
    Joseph Schwertner
    <HR></BLOCKQUOTE>
    null

  • REP-56092 WHEN RUN REPORT IN WEB LAYOUT

    I have installed report 9iDS and can run report in paper layout without any problem.
    However , when I press "Run Web Layout" button , I get message
    rep-56092 NO CLASS DEFINED FOR DESTINATION TYPE SCREEN WHEN RUN WEBLAYOUT.
    Do anybody has idea why this is happening??

    Hi
    If the ENVIRONMENT is Sun SPARC and
    NLS_LANG: Traditional Chinese_Taiwan.ZHT16MSWIN950 , then it is a known problem. There is a bug 2332838 filed for this issue.
    regards
    ~sudha

  • Error when run report 10g (10.1.2.0.2) with Paper parameter form

    Dear Friends
    I just installed Developer suite 10g and Database 10g on my pc (10.1.2.0.2) when I run report in Report builder with paper parameter form (I selected only one system parameter : Destination type) I got the message
    Reports Error Page
    Fri Apr 07 09:06:01 GMT+07:00 2006
    javax.servlet.jsp.JspException: REP-56092: No class defined for destination type Screen
    How to solve it? Please give me the instruction or Oracle link that I can get the documents. If someone has the white paper .pdf please give me.
    Hope with help
    Thanks & Best regards,
    Bansak K.
    [email protected]

    Thanks for the tip.
    Correct me if I am wrong but you have set up SLED SP1 connecting to an OS like (RHEL 4/OEL 4,SuSE 9) using VMWare Server. What OS is SLED?
    I chose SUSE 10.3 as its free and I want to set up apps server for purely training purposes. Do you know of a free linux OS that is certified to run AS 10g 10.1.2.0.2?
    Thanks
    Jon

Maybe you are looking for

  • Financial Statement

    Hi all I am creating a customized report of Financial Statement that contains monthly figures for every G/L account. When I compared my report with the standard FS, I found out in standard FS, there are some G/L are taking amount from previous fiscal

  • Discoverer 4i - Max Dimensions Supported?

    Is there any limitation on the maximum number of dimensions that can be supported in Discoverer 4i? Thanks & Regards, Deepti

  • Lost on application.cfc

    Hi all, I've used application.cfm for ages on our site (now in sustainment) and we have been moved to a new server using CF9. Our server dudes have "per application" settings in place where I can map my custom tag directory (works fine) but when I us

  • MM:Classify Condition Types

    Dear Gurus, Plz check following path, SPRO>Logistics - General>Tax on Goods Movements>India>Basic Settings>Determination of Excise Duty>Condition-Based Excise Determination-->Classify Condition Types Plz tell me which condition types we maintainover

  • Show ip cef switching statistic output - some clarifications required

    Good morning, everyone! I need some clarifications regarding ouput of show ip cef switching statistic on Catalyst 6k and some entries apply to other platforms as well. Consider output: #show ip cef switching statistics        Reason