How to display - Message Length more than 100 characters

Hi,
I am displaying a message string which gets generated dynamically. Which means I donno theolength of that. It may go upto 200 characters also.
However, In message display, the number of characters have some limit.
Could you please let me know, How can I achieve this?
MESSAGE E000 with lv_string.
Thanks,
Sandeep

Hi Srini,
I have already 4 place holders. And one of the place holder will be populated dynamically which I mentioned above. And more than 4 place holders, it is not accepting.
Could you please help me.
Thanks,
Sandeep

Similar Messages

  • How to perform Text length more than 4000 bytes

    I want to read each row from txt file
    and used utl_file pacage to concat contents into a variable,
    the variable datatype is varchar2(4000), so text length can't more than 4000 bytes,
    but I wish get full text from txt file, How can I do?

    Thans! Detlev.
    I have a code :
    PROCEDURE read_file( path in varchar2, filename in varchar2, msg in out varchar2) AS
    data_line varchar2(4000);
    ifile utl_file.file_type;
    BEGIN
    ifile := utl_file.fopen(path,filename,'R');
    LOOP
    utl_file.get_line( ifile, data_line);
    msg := msg | | rtrim(data_line);
    END LOOP;
    utl_file.fclose(ifile);
    EXCEPTION
    WHEN no_data_found THEN
    utl_file.fclose(ifile);
    END;
    My question is
    1. The msg length can't more than 4000
    2. I use utl_raw.cast_to_raw function, that can't cast varchar2 to raw if varchar2 length more than 2048
    3. If I want to change the data type varchar2 to raw,
    the utl_raw.concat function can't use Loop ....end loop clause,
    So that only use utl_raw.concat(ra1, ra2,ra3,ra4,ra5, ... ra12)
    I want to concat all line to a raw datatype from text file , How can I do?

  • How to increase alv field more than 128 characters

    Hi Experts,
                  I want to display more than 128 characters in alv grid field. If I enter more than 128 characters it will restricted to 128 characters, how to increase that size.
    Thanks & Regards,
    Hemanth Reddy.

    Hello Hemanth,
    Kindly go through the below link. Hope it helps u.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/600bc84a-a369-2e10-3dbf-f51d8aec2b58&overridelayout=true
    Thanks

  • SOLAR01/02 - Transaction Tab - Transaction length more than 20 characters.

    We have SCM transactions with more than 20 characters.
    There are any way to use in SOLAR01/02?
    Thanks
    Federico

    Hello,
    The Domain TCODE in se11 is defined with length 20, therefore there is no
    possibility to enter longer values.
    Regards,
    Jared Singh

  • How to display result in more than one jsp page

    Hi all,
    the result is a very large it will take more than one jsp page in this senario how we will display the result in more than one jsp page.
    Thanks in Advance.

    The magic word is "paging". Look around using this keyword.
    Basically it's all about subquerying, (eventually) caching and sublisting.

  • How to get data of more than 100 fields by Bulk API V2.0?

    Hi all,
    I'm trying to get data from Eloqua by Bulk APIs because of big data.
    But my Contact has 186 fields (more than the Bulk export limitation 100). I think I need to get all data by 2 exports.
    How could I match 2 parts of a row and join them together?
    I'm afraid that any edit of data between the 2 syncs for the 2 exports would make the order different.
    E.G.:
        1. any record is deleted or edited(make it not matching the filter) after getting data of the first part and before getting the second part, then every one behind it would move up in the second part result.
        2. data of some fields (included in both parts) are changed between the 2 syncs, then values of the second part are newest but values of the first part are old.
    Any suggestions would be expected.
    Thanks,
    Biao

    bhuang -
    I don't know that you're ever going to get around the fact that things will change in your database while you're syncing the data. You're going to have to have some way to create exceptions on the sync side.
    If I was pushing data from Eloqua to another database and had to deal with the problem of matches changing while I was syncing, I'd create a few extra columns in my database to keep track of sync status for that record. Or create another small table to track the data mapping. Here's how I'd do it.
    I'd have two extra columns:  'mapped fields 1' and 'mapped fields 2'. They'd both be datetime fields.
    I would only do one set of syncs at a time. First, sync every record for the email + 99 fields. Do the entire list. For each batch, set the datetime of the batch in 'mapped fields 1' column.
    I'd then sync all records for email + other 86 fields. Do the entire list again. For this batch, set the datetime of each batch in their 'mapped fields 2' column to now().
    For any records that had only 'mapped fields 1' filled, but 'mapped fields 2' was empty, I'd re-run the second Eloqua API query using the email as the lookup value. If no results were returned, I'd delete the row. Otherwise, update and set 'mapped fields 2' to now
    For any records that had only 'mapped fields 2', I'd re-run the emails against the first Eloqua API query, fill in the missing data, and set 'mapped fields 1' to the current datetime. If the record wasn't returned, delete the row as it's probably not in the search any longer.
    Finally, set 'mapped fields 1' and 'mapped fields 2' to empty for all records, since you know the data is in sync. This will let you use the same logic above on your next sync.
    Does that make sense? It's not super clean, but it'll get the job done, unless your syncs are taking a ridiculous amount of time and your data changes super often. 

  • How to display multiple waveforms (more than 2) with current time on x axis

    Dear All,
    I am trying to plot more than 2 waveforms on a graph/chart with current absolute time on the x-axis.
    It works if I plot two waveforms on XY graph  but shows broken wires (mismatching of data types) for more than 2 waveforms.
    Now, I have tried waveform charts and graphs, and ti doesnt work there too.
    I have attached my VI below.
    Can someone please help me out with this. 
    Attachments:
    timing problem.vi ‏21 KB

    Dear Mahu,
    I have attached a snapshot of my VI. This snapshot shows a VI which works perfectly but as soon as you will extend the bundle and add another random number generator, it will show data mismatching. 
    The reason why I am not using a chart, although it works perfectly for this, is beacuse I want to control the x axis (start and end time) to see data at time as specified by user. 
    Waiting for your reply. 
    Attachments:
    pic of prob.JPG ‏46 KB

  • How to print Text for more than 255 characters.

    Actually I am writing dynamic sql in which some text is assigned to some variables
    and then contacating tohse variables to create one complete SQL. So the text into that variable is more than 25 chars, which i want to print to check wether the sql generated is correct. While doing do I am getting following error.
    ORA-20000: ORU-10028: line length overflow, limit of 255 chars per line
    ORA-06512: at "SYS.DBMS_OUTPUT", line 133
    As i understood that in one line of DBMS_OUTPUT.PUT_LINE can accomodate only 255 characters. What is the alternative to get the text printed.??
    Sample code -->>
    SET SERVEROUTPUT ON
    DECLARE
    T varchar2(1000);
    T1 varchar2(100);
    T2 varchar2(300);
    T3 varchar2(250);
    T4 varchar2(85);
    BEGIN
    -- Assigning values to T1,T2,T3,T4...
    T := T1 || T1 || T3 || T4;
    DBMS_OUTPUT.PUT_LINE(T);
    END;

    The other alternative is to upgrade your database to 10g...
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> declare
      2    v_str   VARCHAR2(2000);
      3  begin
      4    v_str := LPAD('X',250,'X');
      5    v_str := v_str||LPAD('Y',250,'Y');
      6    v_str := v_str||LPAD('Z',250,'Y');
      7    v_str := v_str||LPAD('A',250,'A');
      8    v_str := v_str||v_str;
      9    DBMS_OUTPUT.PUT_LINE(v_str);
    10  end;
    11  /
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY
    YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
    AAAAAAAAAAAAAAAAAAAA
    PL/SQL procedure successfully completed.
    SQL>I've only done 2000 characters here, but it'll happily cope with more.
    ;)

  • How to send multiple emails (more than 100...)  to a single email address ?

    Hi folks,
    I'm new here and that's my first topic in this forum, so I would be very glad if someone could help me on my problem.
    I'm currently in the process to open my own business. Next week I should get access to my new email account (with my own domain). However, I have already ca. 300 emails on my private email account which are related to my new company, which I have to forward to my new email address.
    Question: *How can i forward multiple (or selected) emails to a single address without packaging them into one email* (1st problem: this email would become too large and 2nd: it wouldn't be very useful to search for a particular content in only 1 large, single email). How do I have to use the Automator to automatize that process?
    Many thanks for your help!
    Message was edited by: Valahala

    One way to solve your problem:
    CREATE OR REPLACE PACKAGE BODY multiple_dept_pkg IS
       PROCEDURE multiple_dept (VARR_DEPT   IN     t_deptno,
                                P_result       OUT SYS_REFCURSOR) IS
       dept_str varchar2(4000) default null;
       BEGIN
          FOR i IN VARR_DEPT.FIRST .. VARR_DEPT.LAST LOOP
             dept_str:=','||varr_dept(i)||','||dept_str||',';
          END LOOP;
          OPEN P_result FOR
                SELECT *
                  FROM EMP
                 WHERE instr(dept_str,','||deptno||',') >0;
       END;
    END;
    SET SERVEROUTPUT ON
    VARIABLE result REFCURSOR
    DECLARE
       p_OTS_REC    multiple_dept_pkg.t_deptno;
       result_out   SYS_REFCURSOR;
    BEGIN
       p_OTS_REC (1) := 10;
       p_OTS_REC (2) := 20;
       p_OTS_REC (3) := 30;
       multiple_dept_pkg.multiple_dept (p_OTS_REC, result_out);
       :result := result_out;
       COMMIT;
    END;
    PRINT result;
    Cheers,
    Manik.

  • How to display in KPI more than one dimension at once

    Dear Experts,
    We are using SSM 7.5 SP 7 and are trying to display more the one dimension at once on the same KPI.
    For example KPI "on time delivery" :
    Destination from (dimension 1) , Destination To (dimension 2) , ACTUAL, TARGET , SCORE , ETC
    GERMANY  , JAPAN ,  80 ,  75 , 5 , .....
    Could not find a standard option for that only one dimension on the row the rest are on top for the entire screen.
    would appreciate your help
    thanks
    Amir

    Hi Amir,
    If you want to do this for only one KPI, you can do so using the KPI Detail screen.
    Just click on the name of your KPI to navigate to the KPI Detail screen and then you can use the "Drill" button located on the top of the trend graph at the bottom of the screen to visualize the KPI information (Actual, Target, Score, Gap Performance) across multiple members of the same dimension.
    You need to select the dimension on the upper right hand side of the chart (there is a drop down list with all your dimensions so you can focus on one) and then you can drill down by clicking on the elements on the chart.
    I hope this helps,
    Hector

  • How do I send a message with more than 140 characters?

    Hi,
    I am having some problems with Firefox that just cropped up. I have been using it quite a while without incident.
    Now when I try to access my bank account, after I log in with the user name and password [I am at the page where I select my account], the screen shows a blank screen with this string.
    http://sso2.toast.net/login.php?SAMLRequest=fVLJTsMwEL0j8Q%2BW79mKEMhqggoIUYklooEDN9edJka2J3icFv4eNwUBB7g%2Bv3nLeKZnb9awDXjS6EpepDln4BSutGtL%2FthcJaf8rDo8mJK0phezIXTuAV4HoMDipCMxPpR88E6gJE3CSQskghKL2e2NmKS56D0GVGg4m1%2BWHNV6aVT7YjsD2oLrAUxrLGpAwK6HJfTLToLk7Okr1mQXa040wNxRkC5EKC%2BKJD9JJnlTHIvJsSiOnjmrP53Otds3%2BC%2FWck8icd00dVLfL5pRYKNX4O8iu%2BQtYmsgVWh39rUk0psIr6Uh4GxGBD7EgBfoaLDgF%2BA3WsHjw03JuxB6Elm23W7Tb5lMZiHGCamDkElFvBoXK8Zu%2FsdG%2F08uv5x59a09zX5IVZ8ftusxv6zRaPXOZsbg9sKDDLFE8EPscIXeyvC3W5EWI6JXyXqkisFRD0qvNaw4y6q96%2B%2FLiPfyAQ%3D%3D&RelayState=https%3A%2F%2Fwww.google.com%2Fa%2Ftoast.net%2FServiceLogin%3Fservice%3Dmail%26passive%3Dtrue%26rm%3Dfalse%26continue%3Dhttp%253A%252F%252Fmail.google.com%252Fa%252Ftoast.net%252F%253Fchat%253D0%2526labs%253D0%26bsv%3Dllya694le36z%26ltmpl%3Ddefault%26ltmplcache%3D2%26from%3Dlogin
    This also happens when I try to get my web mail from my internet service provider.
    IE gets through without issue.
    I have tried updating with no sucess.
    Then I uninstalled and reinstalled the program with the same results.
    Thanks, Mac McClure

    Actually,Acrobat won't do it by itself, you need a driver created by the scanner's manufacturer. In fact, many scanner's come with the capability. I have had HP, Epson and Fijitsu scanners they all came with the capability of scanning to PDF. The Fujitsu will not work with Acrobat's scanning capability, since it does not come with the appropriate drivers, even though it came with a copy of Acrobat!

  • How to Handle the Strings more than 4000 characters in OBIEE 11g

    Hi Folks,
    I have a derived column in RPD where there are like bunch of case statements which involve the columns from 2 or more dimensions. Now I am getting an error ORA-01489: result of string concatenation is too long at OCI call OCIStmtFetch.
    How can we handle this in OBIEE? I have tried the below option that is provided in the below link but I think this work only if it is a single column but in my case it is derived column.
    Please suggest.
    Thanks,
    Bharath

    Bharath,
    Can you try using CLOB function.Check the below URL.Not sure if it helps you.
    sql - LISTAGG function: "result of string concatenation is too long" - Stack Overflow
    Thanks,
    Sasi Nagireddy.

  • How to send a mail more than 255 characters in PDF format

    Hi Experts
    I am facing a problem sending an ALV list spool as an email attachment in PDF format. Here my problem is spool has morethan 255 characters, so the contents are trukated after 255.
    I am using the FM "SO_NEW_DOCUMENT_ATT_SEND_API1" to send the email. Please give any good suggestion.
    Thanks in advance
    Praveen

    Hi,
    <li>After converting spool to PDF using CONVERT_ABAPSPOOLJOB_2_PDF, need to use below function module
    <li>Use SX_TABLE_LINE_WIDTH_CHANGE to convert line width to 255 chars.
       CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
          EXPORTING
            line_width_src              = 134
            line_width_dst              = 255
          TABLES
            content_in                  = i_pdf
            content_out                 = l_attachment
          EXCEPTIONS
            err_line_width_src_too_long = 1
            err_line_width_dst_too_long = 2
            err_conv_failed             = 3
            OTHERS                      = 4.
        IF sy-subrc NE 0.
          MESSAGE s000(0k) WITH 'Conversion Failed'.
          EXIT.
        ENDIF.
    Thanks
    Venkat.O

  • Mail sender adress not in SHeaderFrom if length more than 50 characters

    Hi,
    we 're using the mail sender adapter in PI 7.00 to get attachments as XIPAYLOAD from our mailserver.
    Also we get the sender address in SHeaderFrom.
    Now we have the problem, if the sender address is larger then 50 character it is NOT stored in SHeaderFrom.
    Why? How to resolve this problem?
    Has anyone an idea?
    Many thanks for answers
    Sven

    Hi,
    we 're using the mail sender adapter in PI 7.00 to get attachments as XIPAYLOAD from our mailserver.
    Also we get the sender address in SHeaderFrom.
    Now we have the problem, if the sender address is larger then 50 character it is NOT stored in SHeaderFrom.
    Why? How to resolve this problem?
    Has anyone an idea?
    Many thanks for answers
    Sven

  • How can i see the URL which has  length more than 255 chars in fucnction

    Hello Every body....
      I am facing one problem....I have a function module which returns URL in one table
      but in the function module display i am able to see only 255 characters,but the URL is more than 255 Characters..How can i see the URL which has the length more than 255 characters..
    In the Table the fields url length is 4000 chars.....
    but display it is showing only 255 chars.....
    Please Help me...??????????

    Hello,
    Have you tried breaking your structure into 255 chunks? I don't know what the structure you are moving from looks like, but you should be able break it back up into the SOLI structure. The end of a line in SOLI doesn't create a Carriage Return/Line Break. You have to insert these yourself like in the following:
    * Create document
          clear mail_line.
          move 'This is a test E-Mail'(d01) to mail_line.
          concatenate mail_line
                      cl_abap_char_utilities=>newline
                      into mail_line.
          append mail_line to l_mailtext.
    What kind of attachment are you wanting to create - a text tab delimited file for reading in a spreadsheet application such as excel? You might try reassembling your data table into a single string with newlines where you need them. Then use function module SCMS_STRING_TO_FTEXT to turn it back into SOLI. This is what I have done in the past. I'm afraid without knowing more about your source structure and attachment type, this is about all I can tell you.
    Vasanth

Maybe you are looking for

  • Ink problem with HP Photosmart Premium Printer C309a

    I replaced the photo black cartridge with 564XL, and black will not print at all. Did I use the wrong cartridge. What else could be causing the problem?

  • Help with a better GUI??

    hi everyone!! i am thinking for a better GUI i have already made..earlier my GUI was not reflecting any changes but with the help and suggestions by many of you i have tried to change it..but i still find it is not reflecting to be a good interface.i

  • Hey,guys!Is there anyone know how to get the free OS X Mountain Lion exactly?

    Excuse me.I'm still puzzled how to apply for the free 1.I bought my Pro on July,before release date.I try to apply for a free one on this webside:                                              https://www.apple.com/osx/uptodate/ but after I filled the

  • 11g : column fornula as a SQL query

    While creating a report in 11 g and choosing columns from the subject area, I see that we can edit the column formula. Is it possible to specify a SQL query in the column formula.?

  • Advance Loan

    Hello Sir, I want to create the wage type for advance loan.Can you please suggest me where i can create the wage type for advance loan.Please provide the configuration path for this. After the advance loan will be created it will be updated in offcyc