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

Similar Messages

  • Hang on copy: "btrfs-transacti:282 blocked for more than 120 seconds."

    Lately (at least after upgrading to linux 3.15), when I try to copy lots of files between btrfs partitions, I'm getting these "IO hangs" (not sure what to call it) where I can use the system fine as long as I don't try to read/write from my btrfs /home. So I can log in as root and look around, but as soon as I try and ls some random dir within my btrfs /home, it blocks and I have to log in from a different tty to use the system.
    A "sudo journalctl -b-1 |grep -i btrfs" will show stuff like
    juli 17 14:25:54 arch kernel: [<ffffffffa049fadf>] wait_current_trans.isra.18+0xcf/0x120 [btrfs]
    juli 17 14:25:54 arch kernel: [<ffffffffa04a12d8>] start_transaction+0x3a8/0x5c0 [btrfs]
    juli 17 14:25:54 arch kernel: [<ffffffffa04a1547>] btrfs_join_transaction+0x17/0x20 [btrfs]
    juli 17 14:25:54 arch kernel: [<ffffffffa04a6dd3>] btrfs_dirty_inode+0x43/0xf0 [btrfs]
    juli 17 14:25:54 arch kernel: [<ffffffffa04a6eff>] btrfs_update_time+0x7f/0xc0 [btrfs]
    juli 17 14:35:54 arch kernel: INFO: task btrfs-transacti:282 blocked for more than 120 seconds.
    juli 17 14:35:54 arch kernel: btrfs-transacti D 0000000000000000 0 282 2 0x00000000
    juli 17 14:35:54 arch kernel: [<ffffffffa04b0df6>] btrfs_wait_and_free_delalloc_work+0x16/0x30 [btrfs]
    juli 17 14:35:54 arch kernel: [<ffffffffa04bb128>] btrfs_run_ordered_operations+0x1f8/0x2e0 [btrfs]
    juli 17 14:35:54 arch kernel: [<ffffffffa04a0546>] btrfs_commit_transaction+0x36/0xa20 [btrfs]
    juli 17 14:35:54 arch kernel: [<ffffffffa049c475>] transaction_kthread+0x1e5/0x250 [btrfs]
    juli 17 14:35:54 arch kernel: [<ffffffffa049c290>] ? btrfs_cleanup_transaction+0x5a0/0x5a0 [btrfs]
    juli 17 14:35:54 arch kernel: Workqueue: btrfs-flush_delalloc normal_work_helper [btrfs]
    (see full paste at http://pastie.org/9399449)
    There seems to be others with similar issues:
    http://www.spinics.net/lists/linux-btrfs/msg34458.html
    http://www.mail-archive.com/linux-btrfs … 33795.html
    but no solution from what I can tell.
    It may be that it would unhang itself if I waited a really long while, but haven't had the patience to wait and see yet. I do run nightly backups between the btrfs partitions and the computer seems fine each morning though …
    Anyone know what to do about this?
    Last edited by unhammer (2014-07-17 13:49:55)

    Same thing for me when running rsync... It also corrupted my filesystem. So I restored from a backup and I'm using XFS@LVM@dm-crypt for the time being.
    https://imgur.com/a/6gNhH

  • 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

  • Send an attachment in email with length more than 255 char per line

    Hi All,
    I have to send an attachment in email with length more than 255 char per line. I dont want to break the line after 255 char and add it in another line.
    Please suggest me any function module which can perform this.
    Thank you all.

    I looked at all threads in the forum, there was about 5 or 6 identical questions, but surprise, nobody knows! It seems that SO_NEW_DOCUMENT_ATT_SEND_API1 function module does not allow more than 255 characters by line.
    It would surprise me a lot if there is no workaround !
    As it is very easy to add any binary attachment which is like a very long line, PDF for example (several kilobytes), via the function module above (lots of examples in the forum), I would advise you to try to use the same way, i.e. use the contents_bin parameter instead of the contents_txt parameter (convert the text into binary) and add the line feeds yourself (okay I know, it's not very smart).
    Last thing, this function module is deprecated, and we should use BCS classes, maybe they work better.

  • 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?

  • To display text more length more than 1000

    Hi,
    I have Ztable which has a LCHAR field of length 1000. through a program i am populating records in to this table. But i am unable to see the complete text in Se11 or se16 not even in debugger (not showing more than 132 char). Is there a way to see that text. I wrote a program to read that text & display it is not fetching the required data means the 1000 Lchar text. Can you pl tell me how can this be done.
    Below is the code used to read & display the text.
    DATA : BEGIN OF zerr OCCURS 0,
             buildid LIKE zmm-buildid,
             message LIKE zmm-message,
            END OF zerr.
    SELECT buildid message
           FROM zmm
           INTO TABLE zerr.
    LOOP AT zerr.
      WRITE :/5 zerr-buildid.
      WRITE :/5 zerr-message.
    ENDLOOP.

    Hi
    U can try to use NEW-PAGE statament, here you can indicate line having a length longer than 255 char:  the maximum line length is 1023:
    DATA : BEGIN OF zerr OCCURS 0,
                   buildid LIKE zmm-buildid,
                   message LIKE zmm-message,
                END OF zerr.
    START-OF-SELECTION.
    SELECT buildid message FROM zmm
    INTO TABLE zerr.
    NEW-PAGE LINE-SIZE 1000.
    LOOP AT zerr.
      WRITE :/5 zerr-buildid.
      WRITE :/5 zerr-message.
    ENDLOOP.
    Anyway this doesn't mean you'll be able to print this layout, because you need to create a right format by SPAD transaction.
    Max

  • PO Header Text --- Length more than 132.

    Dear Experts,
    I hv to read header text (me23n) of po where terms and conditions are defined. I hv used READ_TEXt FM which return the internal table L_LINES. Because I hv to display label also i.e.
    Header Note  (label)
    for example , the pr qty is 1000 , but we are doing sub contracting po for only 500 and for other 500 we want to do std po but system allows us to do only subcontracting po...for that we are doing manually prs for the remaing qty... Moving ahead, management wants us to Purchase     ( This is entered text).
    Payment Terms (label)
    1) 100% advance.
    2) 100% advance.
    3) 100% advance.
    so i hv used my own internal table of type TLINE.
    Problem is , the length of TLINE-TDLINE is 132, but the length of entered text is more than 132 (Header Note above).
    when i copy the tdline from L_LINES to w_line, it does copy only 132 characters.
    Can anyone guide me in this.
    And one more thing is , as above in terms and conditions, after first point enter is pressed. how to capture if enter is pressed.
    Regards,
    Jaspal Kumar

    Hi
    See the below logic
    DATA: lv_string(2000).
          LOOP AT it_tline1 INTO wa_tline1.
            CONCATENATE lv_string wa_tline1-tdline INTO lv_string SEPARATED BY space.
            CLEAR wa_tline.
          ENDLOOP.
    let me know if there are any issues.

  • Char length more than 60

    Hi~
    Is it possible at all to display char length greater than 60 using bex in excel other than workbook marcos or web reports?
    Thanks,
    Ani.

    Check :
    /people/sap.user72/blog/2006/06/05/long-texts-in-sap-bw-displaying-in-bex-analyzer-introduction-to-excel-workbooks-formatting-part-i
    /people/sap.user72/blog/2006/06/05/long-texts-in-sap-bw-displaying-in-bex-analyzer-introduction-to-excel-workbooks-formatting-part-ii
    incoming data with more than 60 chars
    BeX Variable:Strange problem with InfoObject CHAR 60

  • Appraisal document tab name appear more than one

    Dear Experts,
    We are currently upgrading our EHP4 to EHP6.
    We discover issue where appraisal tab name has been display more than one time in portal. Upon debugging, there was standard table lead to this issue as below :
    HRHAP_TAB
    HRHAP_TAB_DATA
    HRHAP_TAB_T
    Appreciate if you can share with us possible solution on this.
    Thanks,
    Khairul

    can you show me the screen, what it looks like do you have any enhancements or modification in system?HAP_DOCUMENT_BODY typically with the new rendering with EHP6. The first occurence is the title of the block and the second the name of the element. option for you to change the configuration of the element in the template, so that only the description is displayed in the Web-Layout instead of the name. This could be a workaround, as then only the block title would display the name of the element.

  • 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

  • Uploading excel file into internal table with field length more than 255

    I am trying to upload the data from an excel file through function module 'TEXT_CONVERT_XLS_TO_SAP'.
    I have tested by changing the field type from string, and char2000.
    But it is accepting only 255 chars from the cell content.
    How to get the total content of the field if it is more than 255 char.

    hi,
      you can use any of the following procedures:
    For uploading data from excel to internal table refer standard report  RC1TCG3Z  in se38 :
                                               or
    You can use the FM 'ALSM_EXCEL_TO_INTERNAL_TABLE' itself. Please check if you have done it this way . But,  this FM can be a little time consuming if the excel has large data, so you can use the FM u2018GUI_UPLOADu2019.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
            EXPORTING
              filename                = p_file1
              i_begin_col          = l_b1
              i_begin_row        = l_c1
             i_end_col               = l_b2
             i_end_row             = l_c2
           TABLES
              intern                  = lt_data
            EXCEPTIONS
             inconsistent_parameters = 1
            upload_ole              = 2
              OTHERS                  = 3.
          IF sy-subrc <> 0.
            MESSAGE e018 DISPLAY LIKE 'i'.
         ENDIF.
    *---Removing the first heading fields from the file.
          IF NOT lt_data[] IS INITIAL.
            LOOP AT lt_data INTO lwa_data WHERE row = '0001'.
              DELETE lt_data.
              CLEAR lwa_data.
            ENDLOOP.
    *---Inserting the data from file the internal table
            LOOP AT lt_data INTO lwa_data.
              CASE lwa_data-col.
                WHEN 1.
                  wa_file_wicopa-serial = lwa_data-value.
                WHEN 2.
                  wa_file_wicopa-blart = lwa_data-value.
                WHEN 3.
                  wa_file_wicopa-bldat = lwa_data-value.
                WHEN 4.
                  wa_file_wicopa-budat = lwa_data-value.
              ENDCASE.
              AT END OF row.
                APPEND wa_file_wicopa TO gt_file_wicopa.
                CLEAR wa_file_wicopa.
              ENDAT.
              CLEAR lwa_data.
            ENDLOOP.
          ENDIF.
        ENDIF.
                                                or
    DATA: it_test TYPE STANDARD TABLE OF alsmex_tabline WITH HEADER LINE.
    DATA :v_start_col TYPE i VALUE '1',
          v_start_row TYPE i VALUE '1',
          v_end_col TYPE i VALUE '256',
          v_end_row TYPE i VALUE '65536',
          v_text TYPE repti.
    * Funtion Module to upload values from excel to the Internal table
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = p_file
          i_begin_col             = v_start_col
          i_begin_row             = v_start_row
          i_end_col               = v_end_col
          i_end_row               = v_end_row
        TABLES
          intern                  = it_test
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
                             Or
    You can use FM u201CTEXT_CONVERT_XLS_TO_SAPu201D.
    DATA : i_raw TYPE truxs_t_text_data.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
          i_field_seperator          = 'X'
          i_tab_raw_data             = i_raw
          i_filename                 = p_path
        TABLES
          i_tab_converted_data       = itab
    EXCEPTIONS
       conversion_failed          = 1
       OTHERS                     = 2
    hope it will help u
    regards
    rahul

  • Parameter selection text length more than 30.

    Hi,
    I declared the one parameter in selection-screen.
    i declared selection texts for the parameter.
    but selection-text not taking more than 30 chars.
    how can i provide selection texts more than 30 chars.
    Regards,
    Suresh.

    Here's another example that makes use of the POSITION verb and can allow you to be more precise with the placement of screen items.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(20)   text-613.
    SELECTION-SCREEN POSITION 22.                        " Standard
    PARAMETER: pst04sl RADIOBUTTON GROUP x041 DEFAULT 'X' MODIF ID cus.
    SELECTION-SCREEN POSITION 27.                        " Standard
    PARAMETER: pst04bu RADIOBUTTON GROUP x041 MODIF ID cus.
    SELECTION-SCREEN END   OF LINE.

  • 'More Info' disappears from 'Get Info' Inspector Tab when accessed more than once

    I've just got back from an appointment at my local Apple store Genius Bar and have had three members of staff all looking bewildered and unsure as to what to suggest with regard to this issue (apart from a fresh OS install/HD reformat). Basically, it seems that after initially using the Inspector to gather metadata about files - mp3, m4a, MOV, avi etc the 'More Info' section becomes blank, as if there is no metadata to display, even though metadata is definitely present (see attached pictures and linked video):
    Demonstration of issue (best to open in new tab, then click play or double click to start video)
    First use of Inspector to view metadata on an mp3 file, Flexible (Original Mix) at 17:05
    Second use of Inspector to view metadata on an mp3 file, Flexible (Original Mix) at 17:06
    As you can see, in the second instance, all mention of metadata is gone. Am somewhat perplexed as to why this is happening. Any thoughts or suggestions appreciated.
    Jonathan

    Ok, so this issue has resolved all by itself. Perhaps an update has rectified whatever the problem was, who knows. Anyway, job done tick lol
    FYI the link to the demo video won't work anymore either as I've removed corresponding video from my dropbox account

  • Out put length more than 6423,7 chars

    TYPES : BEGIN OF ty_final,
             line(600)  TYPE c,
            END OF ty_final.
    DATA : gt_final TYPE TABLE OF ty_final.
    I have some the records are that are appending to the  internal table gt_final is of length 6423,7.
    How can I achieve this ?
    Finally I have to send this internal table data into file to third party.

    Hi Sam kumar,
    The ABAP Predefined type C (Chacter type) can accomdate characters upto 65535. Your required length is less than this limit so change the length of line to required length(64237).
    TYPES : BEGIN OF ty_final,
    <b>line(64237) TYPE c,</b>
    END OF ty_final.
    Check this link for Predined ABAP Types with valid lenghts.
    http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3000358411d1829f0000e829fbfe/frameset.htm
    Thanks,
    Vinay

  • Problem to upload the data into internal table record length more than 6000

    Hi all
            I stuck with this problem from past 3 days. I have to upload the data from excel sheet. iam making it tab delimited and trying to upload from gui_upload. but in the structure of file, we have, one field of 4000 characters, and other fields of 255 characters.
    how can i upload this into internal table . From excel sheet or from tab delimeted or any other format? or any special function module is there?  while iam doing this its truncating the datat 255 characters and not uploading the other fields also...
    can any one of you help me out. ASAP
    thnks in advance

    from one of the forum iam just pasting code which it is used in lsmw, try the same logic in ur code hope it can work.
    you have to create multiple lines with do...enddo loop., like this:
    (assuming excel_long_text-text is 924 characters long, 7 lines X 132 char)
    __GLOBAL_DATA__
    data: offset type i,
    text_132(132) type c.
    __BEGIN_OF_RECORD__ Before Using Conversion Rules
    Rule : Default Settings Modified
    Code: /sapdmc/ltxtl = init_/sapdmc/ltxtl.
    CLEAR offset.
    DO 7 TIMES.
    text_132 = excel_long_text-text+offset(132).
    offset = offset + 132.
    __END_OF_RECORD__ After Using Conversion Rules
    Rule : Default Settings Modified
    Code: transfer_record.
    ENDDO.
    also check this
    COMMIT_TEXT
    To load long text into SAP
    READ_TEXT
    To load long text into SAP

Maybe you are looking for

  • I can no longer create new folders in Windows 7; could this problem be a result of recently reinstalling Firefox?

    I'm using Windows 7 Home premium on an HP Pavilion laptop. Maybe two weeks ago, I stopped being able to create new folders in the Windows Explorer box; I click the "New Folder" button, and nothing happens: no error message, nothing. Around two weeks

  • Largest Thumbnail for viewing on 24" monitor

    Good Morning! I'm runnung bridge 2.1.1.9 and I have a 24" monitor and I'm wondering if there is a way to make the thumbnail large enough for 1 in the light table area instead of 2 now showing?  I've moved the slider in the lower right all the way to

  • Sales from vendor consignement stock

    Is it possible to configure sales item catogory and schedule line to automatic withdraw stock from vendor consignement stock? I will assume that the special stock vendor consignement must be assigned to the item category, but there are no standard it

  • Weblogic plugin for formatting JSP

    Hi           Is there any third party plug in available for formatting/cleaning up JSP files in weblogic

  • Portal Favorites Bad Request Invalid URL

    Recently upgraded from EP6.0 SP13 to SP16. When selecting a link, folder or document from within Portal Favorites - Bad Request Invalid URL error is displayed. I have changed the Isolation Mode to URL on Portal Favorites iView - but this has not fixe