Append row (line) to coloum

Dear All,
          I have a internal table itab1 having plant wise 3 line,& want to append these 3 line to 3 rows to other internal table itab2. is it possible if yes please help.
Thank's & Regard's
    Atul

Hello,
Yes you can always do this this is a general ABAP programming concept. You can user APPEND statement or directly assign usin " = " operator or modify statement.
IF you have any specific requirement then please explain that.
Thanks

Similar Messages

  • How to append  row in internal table for perticular condition

    Hi,
    I have 4 records in my internal table and i want to append row
    after second row when condition will match.
    please guide me.
    thanks in advancs
    regards
    SND

    hi,
    using key word INDEX u can insert a record in aspecified position as
    if internal table is with header line.
    INSERT <internaltable> index SY_INDEX [or index no if u  know where to insert]
    with out header line.
    INSERT <internaltable> FROM <workarea> index SY_INDEX [or index no if u  know where to insert]
    if condition is true.
    insert itab index 2.
    endif.
    if helpful reward some points.
    with regards,
    Suresh.A

  • How to trap Append row fcode from ALV toolbar in OOPS approache

    Hi
    1. I would like trap the function code for ALV toolbar button like APPEND row and Delete row etc. Please let the procedure for that or may be if somebody can tell me that how do what logic is being  followed while appending a line to the grid using "Insert Row" in BCALV_TEST_GRID_EDITABLE program.
    2. My is editable ALV grid, if i pressing the delete button from the keyboard then it is deleting the from the ALV.I would like to prevent from not deleting the rows.
    Thanks
    Suruchi

    how did you resolve it?
    thank in advance.

  • Append New Line Item(s) onto the created Purchase Request using Function

    Dear Expert,
    I am trying to append new lines into the created purchase request via Function Module/ BAPI.
    Say, now, the Purchase Request has already 1 line item. And i want to append new line items into
    this purchase request via function module/ bapi.
    Do you know if there is any function module/ bapi exists to do this?
    Thanks.
    Tee

    Hi,
    It's weird.
    I tried on the BAPI_PR_CHANGE, and the return message says that it has successfully changed the PR. But, when i see it via ME53N, it's not being updated.
    Does anyone has sample usage/ code using this BAPI?
    Thanks.
    Tee

  • Append a line to a text file

    hi,
    I'm using Oracle 11g.
    I'm storing text files in XML DB and accessing them using FTP, pl/sql and Java.
    Sometimes this files are huge, and all I need is to append a line.
    Is there any way to do this, without reading the full content of the file, using PL/SQL? Or Java?
    Thanks for all the help you can give me.

    procedure writeDebug(P_LOG_MESSAGE VARCHAR2)
    as
    pragma autonomous_transaction;
    V_LOG_CONTENT CLOB;
    V_LOG_BUFFER blob;
    V_SOURCE_OFFSET integer := 1;
    V_TARGET_OFFSET integer := 1;
    V_WARNING integer;
    V_LANG_CONTEXT integer := 0;
    V_DEBUG_CONTENT blob;
    begin
    createDebugOutputFile;
    update RESOURCE_VIEW
    set RES = updateXML(RES,'/Resource/DisplayName/text()',extractValue(RES,'/Resource/DisplayName/text()'))
    where equals_path(RES,G_DEBUG_OUTPUT_FILE) = 1;
    select extractValue(RES,'/Resource/XMLLob')
    into V_DEBUG_CONTENT
    from RESOURCE_VIEW
    where equals_path(RES,G_DEBUG_OUTPUT_FILE) = 1;
    V_LOG_CONTENT := chr(13) || chr(10) || to_char(systimestamp,'YYYY-MM-DD"T"HH24:MI:SS.FF') || ' : ' || P_LOG_MESSAGE;
    dbms_lob.createTemporary(V_LOG_BUFFER,true);
    dbms_lob.convertToBlob(V_LOG_BUFFER,V_LOG_CONTENT,dbms_lob.getLength(V_LOG_CONTENT),V_SOURCE_OFFSET,V_TARGET_OFFSET,nls_charset_id('AL32UTF8'),V_LANG_CONTEXT,V_WARNING);
    dbms_lob.freeTemporary(V_LOG_CONTENT);
    dbms_lob.open(V_DEBUG_CONTENT,dbms_lob.lob_readwrite);
    dbms_lob.append(V_DEBUG_CONTENT,V_LOG_BUFFER);
    dbms_lob.close(V_DEBUG_CONTENT);
    dbms_lob.freeTemporary(V_LOG_BUFFER);
    commit;
    end;

  • Append a line in VB Script File in Diadem9.0

    I am trying to append a line into a VBS Script file(opened in script panel) of Diadem9.0 through another script file. I am using the command Opentextfile(WriteLine)/Filewriteln command. The line gets appended as an unicode characters.(kind of minute rectangles) Please suggest me a solution to this.

    Hi,
    In DIAdem 9 you can specify whether to use Unicode or Ascii in the new commands for text handling:
    Function: TextFileOpen(Argument1,Argument2)
    Argument1 Text with path, name, and extension of the text file.
    Argument2 Attribute which opens the file. You can connect logically various attributes. (eg.
    TfANSI Specifies that DIAdem codes a text file in ANSI or
    TfUNICODE Specifies that DIAdem codes a text file in UNICODE.
    I hope this will help you
    Greetings
    Walter Rick

  • Append rows to existing xls file

    Hello Friends,
    I have a problem with gui_download. I am working on ECC6.0.
    I need to append some rows to existing xls file. I am using gui_download but it not working properly.
    I am giving append = 'X' also it is not appending rows it is overwriting the existing rows.
    Please help in the regard.
    Thanks in advance.
    Krishna Yerram.

    Hi,
    BOOK2 is laready existed excel file
    Please make sure that X is captail
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                        = C:\BOOK2.XLS
       FILETYPE                        = 'ASC'
       APPEND                          = 'X'
      tables
        data_tab                        = data_tab
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards
    jana

  • ALV  List Layout add new button  and modify Append Row Button Text and Logi

    Hi All,
    I am working on Employee custom development Application in Webdynpro ABAP>
    In my ALV list Layout  I have to add new  two Buttons  Top or Bottom of the ALV List.
    If I am adding I have to add logic for those Buttons. How to add and add logic for those buttons.
    as well as I have to Change the  Text  for  Existing Button ''Append Row''    to  "ADD NEW ROWS"
    and I have to add logic in this button while Append New Row I have to generate ID no for New Rows .
    Kindly help/advice  me to proceed further.
    Thanks in advance.
    Dav

    Hi Dav,
    To Add buttons please refer this thred,
    ALV with user-defined buttons on toolbar in wd abap
    To change or rename text in ALV standard buttons, please refer this ...
    How can i change the text of an standard button in ALV?
    and also see this article on self defined functions...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/101df93f-4b5c-2910-14aa-9eb0338c2110?quicklink=index&overridelayout=true
    Thanks,
    Kris.
    Edited by: kissnas on Feb 22, 2011 5:59 AM

  • Erroneous row-lines in application server file

    Hello,
    There are some erroneous row-lines in application server file. Some part of data is repeating on a single line. I could not able to figure out if this is new record or part of same line. I have checked the code. Internal table is correctly written on application server using TRANSFER statement.
    This problem is occurring only in Production environment as per description. So, I am not able to simulate the case in development environment.
    When I downloaded file into notepad I get following text on single line:-
    7411NC00101 GASNW 49223004 ESSENT NETWERK NOORD (GAS) GASNW 49223004 ESSENT NETWERK NOORD (GAS)  871694840014102760
    Correct record should be:-
    7411NC00101 GASNW 49223004 ESSENT NETWERK NOORD (GAS) 871694840014102760
    Can anyone please suggest me possible causes of the problem?
    Thanks in advance,
    Minal

    Hi,
    Just check the code in debugging  where the "GASNW 49223004 ESSENT NETWERK NOORD (GAS)" portion is generated and written to text area. This is happening because of the loop or not refreshing the variables.
    With regards,
    Sunil

  • Append row in end of table?

    Hi,
         I have an ALV table with default "Append row" "Delete Row" buttons. When i give append row initially, then a new row is added to the end of the table. But when i give field sorting (Ascending order), and then go for Append row, a new row which is added to the top of the table. User want this to be added always in the end of the table. Can anyone please help me on this? ...
    Thanks,
    Sathishkumar GS

    Code for your reference : (Taken from the thread mentioned earlier)
    DATA display_function TYPE REF TO cl_salv_wd_function.
    LR_FUNCTION_SETTINGS->IF_SALV_WD_FUNCTION_SETTINGS~CREATE_FUNCTION(
        EXPORTING
          ID     = 'BTN_DISPLAY_DET'
        RECEIVING
          VALUE  = display_function ).
    * set button and tool tip text
      LV_BUTTON_TEXT = WD_ASSIST->IF_WD_COMPONENT_ASSISTANCE~GET_TEXT( '007' ).
      CREATE OBJECT lo_own_button.
      lo_own_button->set_text( LV_BUTTON_TEXT ).
      LV_BUTTON_Tooltip = WD_ASSIST->IF_WD_COMPONENT_ASSISTANCE~GET_TEXT( '008' ).
      CALL METHOD LO_OWN_BUTTON->SET_TOOLTIP
        EXPORTING
          VALUE = LV_BUTTON_Tooltip.
      display_function->set_editor( lo_own_button  ).

  • How to restrict append row upto 5 in ALV Webdynpro.

    how to restrict append row up to 5 in ALV Webdynpro.

    how did you resolve it?
    thank in advance.

  • Append a line at the beginning of a file via UTL_FILE

    Hello,
    is there a way to append a line to the beginning of a file instead of at the end of an existing file via UTL_FILE?
    Thanks in advance,
    Geert

    No, you would have to create a new file.

  • Appending Rows To Editable ALV Grid

    Hi,
    I have a requirement to allow users to append rows to ALV grid in order to insert new data.  The standard append button works to add the row on the front end, however, when I go to process the row through the DATA_CHANGED event of the CL_GUI_ALV_GRID class the program errors out with a GETWA_NOT_ASSIGNED error. 
    Any help or examples of programs utilizing the Append button would be much appreciated.
    Thanks,
    Brian S

    Hi,
    check this demo program <b> BCALV_EDIT_04</b>
    regards
    Vijay

  • Appending rows in ALV Grid

    Hi all,
      I am using CL_GUI_ALV_GRID to create an ALV grid.
    I set some fields to be editable.When I tried to use the APPEND ROW button in the tool bar it is showing a popup where i get the error message
    <i><b>Unit validity period: Enter a valid value.</b></i>
    the field unit validity period is having fixed values in the domain.
    the message is coming because when a new row is inserted the value of the field unit validity period is blank and blank value is not there in the fixed values of the domain.
    ideally when a new row is inserted the initial value will be blank and later on the user enters the correct value.but the system is throwing a popup and is not allowing to proceed further.
    Can any one help on how to handle this.

    Hi,
    Try setting AUTO_VALUE in your field catalog to 'X' for the fields in question, but I don't think that's going to work for you as you want the field to be empty. To achive the result you want, you will probably need to trap and remove the error message in the DATA_CHANGED event.
    See program BCALV_EDIT_04 for an example of defaulting values when a new row is added.
    MJ

  • Doubts regarding the 'Append Row' button

    Hi Experts,
    I have created one ABAP screen. In this ABAP screen I can see 'Append Row' button. I want to know what code is executed after this button is clicked.
    Answer of this question is very important. As it will help me in resolving one important query.
    The query is mentioned in my other two threads that I have created today.
    Thanks in advance
    Smith

    Hi Vijay,
    I have used class CL_GUI_ALV_GRID for creation of the screen. I can see that function = '&LOCAL&APPEND' of method handle_toolbar_set is responsible for creation of this push button.
    Regards,
    Smith

Maybe you are looking for