Input Truncated Problem

Dear all,
I have seen the "input truncated to n characters" messages on the forum here but my problem is a little different. When I run a sql from a file locally everything works fine. When I send the file to a customer for them to run on their database they get the following message:
SQL> @c:\sql\sql_to_run.sql
Package created.
Warning: Package Body created with compilation errors.
Input truncated to 1 characters
Trigger created.All of the messages on the forum that I have seen relate to this message appearing when a space is at the end of the file. Obviously this is happening in the middle of the file. Also, no matter how many spaces/linefeeds I do or donot put in I cannot duplicate this problem locally. Any suggestions would be helpful.

. Since you said input truncated is harmless, I assume it cannot have anything to do with the "Warning: Package Body created with compilation errorsIt may be that the Warning causes the input truncated, although it seems unlikely. You could try reproducing your customer's environment by setting the COMPATIBLE parameter to 8.1.7.
Cheers, APC

Similar Messages

  • Input truncated to 3 characters in Sql*Plus

    Hi All,
    I ran .sql script in SQL*PLUS but i got one error.
    error is Input truncated to 3 characters.
    pls help me..

    Hi,
    Read > this one.
    Twinkle

  • Input truncated

    Is it possible to hide the comment 'Input truncated to x
    charaters' after a query?

    This is becaus ethe last line in a SQL*Plus script should
    consist of a linefeed only. For every script where this occurs,
    go to the last line, go to the end of the last line and press
    <Return>. The input truncated message disappears! Magic!
    This is purely a cosmetic error, it doesn't mean your program
    didn't run cleanly.
    ciao, APC

  • Input truncated message

    Does anyone know why when doing multiple inserts into a table you sometimes get the "input truncated to 3 characters" message. I can't find any documentation on it. Thanks.

    probably, one of the columns in the table is only 3 character long and value for that column ( in some of the records being inserted) is exceeding 3 characters.

  • Why The message Input truncated to - - - -

    When we run pl/sql program some times it will give a messae input truncated to n characters. Why it will come. If we don't want this one what we have to do.
    Please help me
    Thanks
    null

    This occurs because the last line of the script does not have a
    carriage return. It is a harmless message. Add a carriage
    return to the final line of your script and the message should
    not occur.
    I believe it no longer occurs in SQL*Plus 9.0.1
    -- CJ

  • File Input Stream problem

    i have a text file that i want to read to be my input into my database in db4o. i was looking through the websites. like http://java.sun.com/javase/6/docs/api/java/io/FileInputStream.html
    and
    http://www.java2s.com/Code/JavaAPI/java.io/FileInputStreamavailable.htm
    there were different types too. like FileReader, FileInputStream. can anyone explain to me the differences between this two?
    below is an example on how inside my text file is going to look like
    Jack | China | 23
    Helen | Holland | 34
    Jenny | US | 34
    Micheal | Brazil | 23
    different attributes is separated by "|". i need to capture all this from a text file and store it in my db4o database. maybe someone could guide me on this? i am very new in java so forgive me if i am wrong. Thanks alot

    ok. thanks alot. i will look into it
    the "|" is because i want to separate different
    attributes by using symbol
    for example:
    Name | Address | Age
    Alex | Australia | 34
    Jack | Malaysia | 32
    Kate | Africa | 11
    Holmes | California | 54
    from there, this will be captured by the
    BufferedReader (because this is use to capture text)
    and read it and then stored inside the db4o. the
    problem now is how can i capture the data and
    automatic separate it as different field with this
    "|" symbol
    Message was edited by:
    erickhHow about using Scanner:
    Scanner inFile = new Scanner(new FileReader("a:\\file.txt"));

  • Table Input Field Problem

    Hi All,
    I am facing a problem now where table row height is too big , as in 1 row size is actually a merged of 2 rows, the input field is shifted to the bottom of the cell.  And when you select the row, an asterik is visible at the bottom row, and the input field is shifted up to the top of the cell. I am using customized iterator and cl_crm_ic_inputfield to render the cell. Anyone have this problem before?
    Thanks!
    Cheers,
    cady

    Hi Guys,
    Some additional info i found on this issue. I am using design2003. I realized that the * added meant that its required field. However, upon further checking, when calling method RENDER_DESIGN2003 in class cl_crm_ic_inputfield, it checkes for me->required is not initial, which is kind of odd since the required field has the initial value of 'FALSE'. So , either required = 'TRUE' or 'FALSE', it will always be required field. Anyone encountered such problem before?
    Cheers,
    cady

  • Input form problem

    Ok I have created a input form, which is suppose to input
    data into two tables on on an SQL server. One field (a list) allows
    for multiple enters (the only field that goes to the 2nd table).
    The problem; I get an error message when I select more then one
    selection in the list field. The code is below. Thank you for any
    help.

    Ok I have created a input form, which is suppose to input
    data into two tables on on an SQL server. One field (a list) allows
    for multiple enters (the only field that goes to the 2nd table).
    The problem; I get an error message when I select more then one
    selection in the list field. The code is below. Thank you for any
    help.

  • Trans. ME32K. Batch Input. Problem in header versions with container

    Hi all:
    I've got a problem with the transaction ME32K.
    The required action is meant to be changing the address delivery in the agreement position.
    The bapi BAPI_AGREEMENT_MAINTAIN doesn't solve the problem because the field adrn2 is not present in this function module, so refering to other posts I've decided to implement a batch input.
    The problem starts when I try to introduce REVOK and RSCOD in grid container in section header version. When I simulate the transaction ME32K with shdb the only code appearing is:
    SAPLMEDCMV     0200     X     BDC_OKCODE     =GRIDENTER
                                                                BDC_SUBSCR     SAPLMEDCMV                              0100SUB0
    SAPLMEDCMV     0200     X     BDC_OKCODE     =SAVE
         BDC_SUBSCR     SAPLMEDCMV                              0100SUB0
    and then the values 'X' in REVOK and '0007' in RSCOD are not recognized.
    How can I introduce the new version in header ?
    Thanks in advance.
    Jose Luis.

    Hi Jose,
    did you find a solution for your issue?
    I have the same problem now.
    Greets,
    Valentin

  • TRUNCATE PROBLEM

    HI FRIENDS,
    CAN ANY ONE TELL ,
    FROM WHICH FUNCTI0N MODULE WE CAN TRUNCATE .
    INPUT      - > ABCDEFGH
    OUTPUT   - > ABCDE
    IT'S URGENT,
    PLZ. HELP ME

    Hi,
    You can use offset as below
    Data: INPUT(10) TYPE C,
             OUTPUT(5) TYPE C.
    INPUT = 'ABCDEFGH'.
    OUTPUT = INPUT+0(5). " OUTPUT WILL BE 'ABCDE'.
    Reward Points if this helps,
    Satish

  • Web service data control with complex input parameter problem

    Hi!
    I'm making ADF web app, using JDev 11.1.1.2.0. I have to call a web service (using a data control), which has complex input parameter (array of complex objects).
    I followed steps from Susan Duncan blog: http://susanduncan.blogspot.com/2006/09/dealing-with-complex-input-params-in.html , but I ran into a problem.
    As Susan wrote, I changed submit's button action binding to an operation in a managed bean, which returns array of objects and everything works fine. I can call a WS and my table shows the result.
    The problem is, that after I change button's action binding to my manage bean, row selection in result table doesn't work anymore (I allways get NullPointerException).
    What can be done here?
    Can somebody please help?

    Hi,
    I also have similar type of problem where I need to invoke a Web service with Complex input parameters.
    I followed Susan's blog but I stuck at a point where methos getItem is created.
    Can anyone tell me how to get that method for my requirement.
    If possible can you guys share your solutions here.
    Thanks in advance.

  • Input Level problem in GB with Fastrack Pro

    I have a wierd problem with Fastrack Pro. It's the same in GB and also Logic Express. I'm trying to record acoustic piano with a pair of condensor mic's on a MacBook Pro. I do get a weak signal in both programs if I set the gain knobs on Fastrack above 3/4 position. But there's no ability to adjust the signal up until I push the knobs to maximum. Then the signal clips. M-Audio let me exchange the unit for a new one, but the problem's the same. I took the setup to AppleCare and tried it on a MacBook there--same problem. AppleCare says there may be a problem with M-audio's driver, but they haven't found a fix yet. Has anybody else experienced this, or have any ideas on how to fix it?

    HT, thanks for your interest. I've tried with the pads both on and off, but to no effect. Another point of info: I used the Fastrack with my old Dell system, and it worked normally. It really seems to be internal to the MacBook, since the meter seems to work right in System Preferences but not in GB and LE. Can you think of anyway to calibrate the System Pref input to the app inputs? I know this is supposed to be automatic, but so far it's not working that way.

  • Input monitoring problem

    Hi all!
    I've got the latest version of GarageBand that runs on my OS X Mavericks. The problem is with my guitar tracks. I plug in using my line-in input with simple cord and at first, there is no problem. I can hear my guitar playback live in real time(i.e. input monitoring is on) on the guitar track. But then something happens and my guitar sound disappears from the track, although the input monitoring function is still shown as working. Can somebody please tell me why this is so?
    All help much appreciated.
    therealking

    I have a similar problem, although I'm on Logic Pro 8.
    I can't seem to record my guitar track (mic'd cabinet) without having the result monitor back through my studio monitors unless I turn off software monitoring in Preferences/Audio. But then if I want to record keyboards direct and listen to what I'm playing, I have to go back in and turn the option back on.
    In Sonar on the PC, this was much more intuitive. You could arm a track for recording by clicking the "R" button, and separately toggle monitoring on and off by clicking the little speaker button to the right. You didn't have to constantly fiddle with the program preferences.
    I have a FireWire410 interface, and the monitoring only happens when Logic is loaded. I would have thought that the little "I" icon was to turn monitoring on and off, but it's some "pre/post-tape" toggle I can't find a use for.
    Kevin, how did you control your monitor mix before?

  • Input help problem

    Current scenario i have an input textbox attached to an input help. A user needs to find a particular table, but do not know the exact name. The user only knows that the table starts with 'PA'. So, we need to filter all the tables that start with 'PA' for e.g. 'PA0001' and return it to the user for selection.
    The problem now is that i cannot retrieve the input string given by the user for e.g. 'PA'.
    Does anyone knows how to solve this problem?

    This is my codes. The string 'PA' is not hard coded. We need to read what the user input in the textbox. For example it can be PA, PB, PC or any other input.
    REPORT  ZMEIHUI_METADATA.
    *& Global Declaration
    DATA: IO_TABLEA(40) TYPE C,
          IO_TABLEB(40) TYPE C,
          VALUE(40) TYPE C,
          VALUE2(100) TYPE C,
          PROGNAME TYPE SY-REPID,
          DYNNUM TYPE SY-DYNNR.
    *& Processing Blocks called by the Runtime environment
    START-OF-SELECTION.
      CALL SCREEN 8000.
    MODULE STATUS_8000 OUTPUT
    MODULE STATUS_8000 OUTPUT.
      SET PF-STATUS 'UI'.
      SET TITLEBAR 'TITLE'.
    ENDMODULE.                    "STATUS_8000 OUTPUT
    MODULE USER_COMMAND_8000 INPUT
    MODULE USER_COMMAND_8000 INPUT.
      CASE SY-UCOMM.
        WHEN 'BACK'.
          LEAVE PROGRAM. "need to change to the previous screen!!!"
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'EXECUTE'.
         " PERFORM VALIDATE_REQUIRED_FIELD.
      ENDCASE.
    ENDMODULE.                    "USER_COMMAND_8000 INPUT
    MODULE F4_INPUT INPUT
    MODULE F4_INPUT INPUT.
      TYPES: BEGIN OF VALUES,
        TABNAME TYPE DD02T-TABNAME,
        DDTEXT TYPE DD02T-DDTEXT,
      END OF VALUES.
      DATA: F4_VALUES TYPE TABLE OF VALUES.
      PROGNAME = SY-REPID.
      DYNNUM = SY-DYNNR.
      VALUE = IO_TABLEA.
      CONCATENATE VALUE '%' INTO VALUE2.
      SELECT DISTINCT TABNAME DDTEXT FROM DD02T
        INTO TABLE F4_VALUES WHERE TABNAME LIKE VALUE2.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD    = 'IO_TABLEA'
          DYNPPROG    = PROGNAME
          DYNPNR      = DYNNUM
          DYNPROFIELD = 'IO_TABLEA'
          VALUE_ORG   = 'S'
        TABLES
          VALUE_TAB   = F4_VALUES.
    ENDMODULE.                    "F4_INPUT INPUT

  • Shortcuts & input language problem

    Hello,
    I've a problem.
    My OS 10.5 is in english, my photoshop is in english but as an input device I'm used to the Swiss German Keyboard.
    I've a problem with the keyboard mapping. and specifically with this function:
    "Toggle layer mask on/off as rubylith: \ (backslash"
    My keyboard doesn't have that key.
    How do I remap the function to another key (best solution)
    or how do i remap that key (backslah) to anther key?
    thanks, daniele kaehr

    Uh, ok, so your english is not perfect, but I'll try to see what I understand.
    You want phone language to be english, but you want it to be able to show chinese as well? You'll have to install a third party font pack application which supports both english and chinese. Like this one:
    http://forum.dailymobile.se/index.php/topic,15893.0.html
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

Maybe you are looking for