Rep-2103

Hi after migrating to 10g from 6i. when I want to generate a report I am getting the following err:
rep-2103: column 'cf street_address' : pl/sql formula returned invalid value or no value below is my code:
function CF_street_addressFormula return VARCHAR2 is
begin
return(:address_line_1||' '||:address_line_2||' '||:address_line_3||' '||:address_line_4);
end;
Please help I am stuck with this problem for days now
Thanks in advance...

Since your function worked with the constant value, its not the issue related to migration, otherwise it will not have worked. So it must be related to data. What is the precision for your formula column ? Is it wide enough to accept the output?
Still if you want to know how you can delete and create the formula, then go to the property pallete of the formula column , click button in front of PL/SL Formula and then delete that function.
To create the formula, follow the same steps, when you click the PL/SL Formula button, you will be able to create
the function.

Similar Messages

  • REP-2103 error in report summary column

    Hi ,
    I am getting the below error while running the report
    REP-2103 Column 'CS_Achived_tot' : PL/SQL formula returned invalid value or no value
    Could you please help me ...
    Thanks in Advance
    Regards,
    Sandeep

    Hi,
    I have used the below code in the formula column
    function CF_Achived_totFormula return Number is
    v_achived_tot number;
    begin
    begin
    select nvl(:attribute4,0)
    into v_achived_tot
    from dual;
    exception when others
         then
         --v_achived_tot :=0;
         srw.message(130,'CF_Achived_tot');
         return null;
    end;
    return (v_achived_tot);
    end;
    no data was there in the attribute4 feild and it was varchar2 data type
    Regards,
    sandeep

  • REP-2103: PL/SQL formula returned invalid value or no value

    Hi all,
    Before clone the report GEPS FA Prepare Mass Addition Report runs fine. But after cloned from production, it shows error:
    Enter Password:
    REP-0004: Warning: Unable to open user preference file.
    REP-2103: Column 'G_MASS_ADDITION_INVOICE' : PL/SQL formula returned invalid value or no value.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-2103: Column 'G_MASS_ADDITION_INVOICE' : PL/SQL formula returned invalid value or no value.
    Actually I didn't have such column 'G_MASS_ADDITION_INVOICE'. This is a group name. I tried a lot, such as widden the formula column width or delete the formula column, but it still show this error. I didn't have any trigger or other formula column. Even I create a new report use the same name with a single query( select sysdate from dual), but it still shows the same error.
    Is there anyone faced this issue before or can help me ? Thanks
    ares
    Edited by: 930967 on Jun 13, 2012 12:46 AM

    Hi;
    Please see:R12 GL Account Balances Across Ledgers (GLRGCBGT) Report Errors With: REP-0004 MSG-00025 MSG-00104 MSG-01221 REP-2103 REP-0069 REP-57054, Program Exited With Status 1 [ID 1316929.1]
    Regard
    Helios

  • Rep=2103 error message in oracle 10g

    Hi After migrating from 6i to 10g I am getting the following msg when I try to generate a report:
    rep-2103: column 'cf_street_address' : pl/sql formula returned invalid value or no value
    I have the following code in my function:
    function CF_street_addressFormula return VARCHAR2 is
    begin
    return(:address_line_1||' '||:address_line_2||' '||:address_line_3||' '||:address_line_4);
    end;
    Please help.

    I'm using Reports 9.0.4.0.19 and I recreated the scenario without any issues. I'm just wondering what would happen if you wrapped the :address_lines in nvl's in case 10g cares.
    return(nvl(:address_line_1,' ')||' '||nvl(:address_line_2,' ')||' '||nvl(:address_line_3,' ')||' '||nvl(:address_line_4,' '));
    Sorry, I could reproduce the problem.
    -mike

  • REP-2103 Error

    I have written a formula column in a matrix report. I want to display a zero instead of a blank field where there are not recordd. When I run the report I get the error REP-2103: Column 'Zero_disp' PL/SQL formula returned invalid or no value. How do I trap this error. I have tried the no_data_found and SRW.DO_SQL_FAILURE and others. All these failed. Any Ideas.
    null

    can u plz send me the script for ur formula column ?

  • REP-2103 Column 'G_LINE_TOTAL' : PL/SQL formula returned invalid value

    I'm getting the above error message for printing of certain invoices. Most invoices work/print just fine. What's puzzling to me is that this error message says that COLUMN 'G_LINE_TOTAL' returns an invalid value. However, I don't have a column called G_LINE_TOTAL. I do have a group called G_LINE_TOTAL. I've looked at all functions within that group but can't find anything. I've got exception handling in all of the functions but no exception get's listed. Does anyone have any idea how I can go about troubleshooting/fixing this problem?
    thanks
    John

    I appreciate the feedback. Those are all the things I have looked at already. I think this problem is being masked by another problem. The report works most of the time. The existence of certain transactions is causing the report to fail and to provide a misleading error message. I have never seen a GROUP column ( doesn't really exist!). The datavalues from these other transactions are exceedingly large. I'm going through each funtion now and increasing the return sizes. The error message keeps shifting around to other columns almost as if the report is somewhat corrupt ... still runs thoug for most invoice printing. I'll keep hacking away at this.
    Thanks again.

  • Barcode problem on report 10g r2

    Dear all,
    I am testing on a solution provided by IDAutomation. I followed the tutorial with the following page: http://www.idautomation.com/oracle/java_barcode.html
    However, I am not able to generate the barcode. The Report Builder returned a REP-2103: Column 'CF_1' : PL/SQL formula returned invalid value or no value.
    I have the PL/SQL as below:
    /*name of temp file*/
    ImageFile VarChar2(250);
    /*object containing barcode properties*/
    BarcodeObject ORA_JAVA.JOBJECT;
    /*object that creates jpeg of barcode based on BarcodeObject*/
    BarcodeEncoderObject ORA_JAVA.JOBJECT;
    begin
    /*Get a temporary file name for the jpeg*/
    /*On Solaris Unix, use the following code to create the temp file: ImageFile := srw.create_temporary_filename() || '.jpg'; */
    imageFile := srw.create_temporary_filename();
    /*Create the barcode object*/
    BarcodeObject := Barcode.new();
    /*Set the symbology*/
    Barcode.setSymbologyID(BarcodeObject, Barcode.CODE128);
    /*set the data to encode*/
    Barcode.setDataToEncode(BarcodeObject, to_char(:ProductID));
    /*Create the jpeg*/
    BarcodeEncoderObject := BarcodeEncoder.new(BarcodeObject, 'JPEG',ImageFile);
    /*If, for some reason, the barcode is not created, return null
    otherwise, return the name of the barcode image jpeg that was
    created */
    if ORA_JAVA.IS_NULL(BarcodeEncoderObject) then
    return(NULL);
    else
    return(ImageFile);
    end if;
    Is there anything wrong with it?
    Thanks

    I did another test on the code. I replaced the
    imageFile := srw.create_temporary_filename();
    with
    imageFile := 'c:\temp\a.jpg';
    The report runs and generates a barcode. So, does it mean that my report builder is not able to generate a temporary filename?

  • Reports not generated successfully while patching.

    Hi All,
    I applied patch 13461067 on our dev instance and it failed to generate following files successfully:
    APXT7F99.rdf
    APXT7INE.rdf
    APXT7RVT.rdf
    Now I need to apply the same patch to our production instance. Before applying the patch, is there any way to check whether there are already any rdf files in invalid state?
    Regards,
    Vinod

    Hi Vinod,
    Please upload the patch log file and corresponding worker files? Also below Metalink hits might be helpful.
    Patch :13461067:HP-UX PA-RISC (64-bit):12.0.4:Fails with errors.[Community Discussion ID 523239]
    APTCMT 1099 ELECTRONIC MEDIA FAILS WITH REP-2103: COLUMN 'C_B_RECORD'[Bug ID 16092679]
    Oracle Payables Plans for 2012 1099 Reporting[Community Discussion ID 523718]
    regards,
    Shiva.

  • Invoices Payables Open Interface Import Error REP-1419: 'beforereport': PL/

    I am having the following error when I try to import the invoces from the interface tables. I've search for the problem but and tried various solutions but they did not solve the problem or did not apply.
    Can someone help??
    APXIIMPT module: Payables Open Interface Import
    Current system time is 22-SEP-2006 22:31:13
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    p_source='CI'
    p_batch_name='INITIAL'
    p_purge_flag='N'
    p_trace_switch='N'
    p_debug_switch='N'
    p_summary_flag='N'
    p_commit_batch_size='1000'
    p_user_id='1115'
    p_login_id='337907'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.WE8ISO8859P1
    MSG-01104: (Before Report) Modified file
    MSG-00000: p_purge_flag :N
    MSG-00000: c_nls_yes :Yes
    MSG-00000: c_nls_no :No
    MSG-00000: p_summary_flag :N
    MSG-00000: p_nls_summary :No
    MSG-00000: p_nls_purge :No
    REP-1419: 'beforereport': PL/SQL program aborted.
    Report Builder: Release 6.0.8.25.0 - Production on Fri Sep 22 22:31:14 2006
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 577860.
    Review your concurrent request log and/or report output file for more detailed information.

    I get the following error message: "Invalid Liability Liability account is invalid". I've tried both populating the ACCTS_PAY_CODE_COMBINATION_ID field and leaving it null. Some googling also said mentioned that particular error message may be misleading.
    And yes, I'm passing the correct code from the lookup_type. The only difference is that for the one that works, I'm using an Oracle seeded source lookup. However, in the lookups screen I can't see where there are any special configuration.
    I should also mention that the invoices will be imported from an external system, and there will be no PO attached to the invoice. I'm not sure if this info is relevent though.
    I've done some researching and thinking and maybe there is some kind of profile option I need to set but I haven't been able to find it yet.
    Also, I can't find the AP_ERRORS_GT table or any other closely named ones.
    Edited by: Sean Ong on 15/08/2012 01:27

  • Rep-1401: formula name : Fatal Pl/SQL error occured

    Hi,
    I am using report builder 6.0 and recently came across a error while running the report. Rep-1401:<formula name> : Fatal Pl/SQL error occured.
    I created a formula column in the report. In that i have three local variable.
    f_val number := 0;
    s_val number := 0;
    t_val number := 0;
    t_val := f_val/s_val ; --> this gives the above fatal error.
    t_val := (f_val + 1)/s_val; --> this gives the above fatal error
    t_val := f_val/(s_val + 1); ---> no error
    if i change the value of s_val
    s_val := 1;
    t_val := f_val/(s_val - 1) ; ----> this gives the above fatal error.
    Can anyone help me to solve this problem or is it report builder bug.
    Please help me, as i desperately need help.
    Thanks

    Thanks for ur reply.
    I used nvl too, but the same error occurred.
    For the information in my question I by mistake typed
    t_val := (f_val + 1)/s_val; --> this gives the above fatal error.
    but when the value of f_val = zero and s_val is zero why it gives fatal error when i divide, i used nvl on both the variable while dividing but still got the same error.
    but if s_val is greater than zero then no error occurs.
    please help me, I feel it is a bug.

  • Rep-1401 : Fatal PL/SQL error occured

    Hi,
    I am using report builder 6.0 and recently came across a error while running the report. Rep-1401:<formula name> : Fatal Pl/SQL error occured.
    I created a formula column in the report. In that i have three local variable.
    f_val number := 0;
    s_val number := 0;
    t_val number := 0;
    t_val := f_val/s_val ; --> this gives the above fatal error.
    t_val := (f_val + 1)/s_val; --> this gives the above fatal error
    t_val := f_val/(s_val + 1); ---> no error
    if i change the value of s_val
    s_val := 1;
    t_val := f_val/(s_val - 1) ; ----> this gives the above fatal error.
    Can anyone help me to solve this problem or is it report builder bug.
    Please help me, as i desperately need help.
    Thanks

    The best way to handle this is to just add an exception handler that handles a zero divide.
    EX:
    function...blah
    var3:=var/var2...
    EXCEPTION
    when zero_divide then
    var3:= 0;Zero Divide is a built-in exception to handle cases just like this - so if you run into it, you can set it to whatever you want

  • REP-56055 exceedign maxconnections

    Hi ,
    i m getting error REP 56055 while running a report form a in a browser output format pdf
    I searched on many forums and i have made the changes like
    1. repserver.conf : maxconnect :3000 idletimeout :40
    2. reports/dtd/rwserver.conf : EngineResponsetimeout :5
    i restarted the reports services after that but still the REP 56055 is coming
    pls help me for the solution

    The change is not to be made in DTD (rwserverconf.dtd).
    It has to be made in $OH/reports/conf/server_name.conf
    Thanks
    Ratheesh
    [    All Docs     ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Help me keep unlimited data. reps being extremely rude and not helping...

    So I don't want to make this long and boring so I'm going straight to the point. I am grandfathered in and I know there are many discussions on here about this but I need serious help. I don't know what to do. Long story short, I went to my local normal Verizon store and asked politely to be on the 12 month payment plan for a new phone. And I stressed I wanted to keep my unlimited data. No problem they said....45 limited later they come back and say sorry, we cannot do that. Doing the payment plan makes you sign a new 2yr contract. I was mad obviously but left politely not knowing any better. But it didn't seem right. So I called the 800 support number and they said there is no reason why they shouldn't have done that for me. The guy said he shouldn't of told me this BuT he told me that reps don't like doing that because they don't get as much If any commission for doing so. So he said they usually come up with a lame excuse like the one they told me. He told me to go right back in there and tell them that yes they are able to do that. So I did. I got a different rep and he was acting weird about it. Get this... I told him my situation and gave him a puzzled look when he explained he doesn't know what he can do, HE said "what's that condescending look for?" I justccan't believe he said that how unprofessional of him to call me, a customer or ten years condescending. I was astonished. But that's not even my point. He didn't know what todo so called the manager over and she claims to have spoke with the "president" and "CEO" of their Verizon in north east ohio, this was a wooster Ohio Verizon. And claims that they don't allow that and what I was originally told by the rep is true. That is changes the contract going on a payment plan the 12 month one not the edge. I told her what the 800 number has told me and she said they are wrong. PLEASE HELP ME :(  AGAIN, I was not rude or anything at all with them. They treated me like garbage because I want to keep my unlimited data. How can I do this? Can I go to another Verizon perhaps In Ashland Ohio and do the payment plan and keep my data? Sorry for the long question but any help would be TREMENDOUSLY appreciated. I am in wooster Ohio btw

        brant13,
    I want to start off by saying, I am truly sorry for the way that you have been treated at that the store location. This is by no means how we run a business. I can assure you that if you do the Device Payment Plan http://vz.to/ZILXBT  that is for 12 months that you are able to keep the unlimited data plan. You can always go to the store location on Commerce Pky in Ashland, OH. That is a direct store location and they should be able to get you set up with out any kind of issues. Please keep us posted if you have any further troubles. Again, I apologize for any inconvenience this may have caused.
    KevinR_VZW
    Please follow us on Twitter @VZWSupport

  • Rep-0118:Unable to create temporary file error in Report Builder

    I have installed Report Builder (latest edition) for windows 2000 server, but my users on windows XP cannot create the report it gives them
    Rep-0118:Unable to create temporary file error
    Please help me out
    Vijay

    You have to change registry settings by going through REGEDIT. Under hkey_local_machine/software/oracle/<oracle home>, look for variable REPORTS_TMP. Change value for this, for example c:\windows\temp or something like that where you want oracle reports to create temp files.

  • Help Needed REP-1800 Formatter error VGS-1701 Not enough memory

    Hi. Gents
    Help needed
    I’m working on a Report, it gets some 2 million records and the report pages are approximately 52,000
    It works fine if the pages are lesser then 48,000 or the data is less let say one and half a million, the problem occurs only after 48000 + pages formatted.
    Report is generated successfully when trying to go to the last page it throw an error.
    REP-1800 Formatter error
    VGS-1701 Not enough memory
    I have already gone through the metalink DOC Id 95505.1 as well as OTN
    But all in vain,
    Any comments or help much appreciated.
    Details are:
    Reports 6i (Clients/Server) on Windows platform
    (Windows XP Professional with SP 2)
    Database: Oracle9i Enterprise Edition Release 9.2.0.5.0
    Computer:
    Pentium(R) 4, CPU 3.00GHz, 1 GB of RAM
    Still 20 GB free space
    Thanks & Regards

    I don't see the point in making a report with more than 48,000 pages, I think Al Gore will not be happy when you start printing it...
    The problem might be caused by the fact that Reports needs to format all output at once, and then even 1GB of memory will probably be not enough. Formatting all pages at once is needed if you use pagination with displaying total number of pages. If you have this, try to get that out of the report definition and try again.

Maybe you are looking for

  • How do I convert an old DCR file to a standard video file, like MP4?

    Preferably, I would like to use a free, easy to use program to convert old DCR files to a video format that I can upload to YouTube, etc.

  • Migrating Oracle E-Business Suite 11.5.10.2 from Linux 32-bit to Linux 64-bit

    Hello Experts. We have to do R12 upgrade. Currently: database (11.2.0.3) running on RH5 64 bit apps (11.5.10.2) running on RH5 32 bit (separate machines, of course) Plan: migrate db and apps tiers to separate 64bit RH6 machines then migrate again to

  • Animating a stream of images

    Perhaps this can be done as easily in FCPHD as Motion 2, not sure. Trying to take a couple hundred images and move them across the screen smoothly. Picture a stream of images running left to right on the upper 3rd of screen, a stream moving right to

  • Launch programs from file.jsp ?

    i am working about a web application in jsp and i must submit an input, for example pasted by the user in the html form,as an input for others programs which are not written in java but in c or perl. have you ever done something like that ? are there

  • Finally found a printer driver for Okidata C5400 under Lion

    Okidata USA support told me there was no driver available at this time to use my C5400 with my Mac that is using Lion. After diligent searching,I finally found, loaded, and have used a driver that seems to be working fine. The driver was found at Oki