<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: use insert comand in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271114#M781920</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vinodh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i append all records to internal table \but i am getting the same error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u please modify my above code if possible and send me back .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Jan 2008 17:05:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-20T17:05:58Z</dc:date>
    <item>
      <title>use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271110#M781916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i created a ztable and now by using  gui_upload i want to enter a flat file to the that database table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i need to keep 3 radio buttons on the selection screen they are insert modify and delete by using these radio buttons flat file must be upload according to that condition by using GUI_UPLOAD  fm&lt;/P&gt;&lt;P&gt;can anyone help how can we solve it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 15:07:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271110#M781916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T15:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271111#M781917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     I think u know how to create the radio buttons.After creating tht buttons u want to select whether after pressing the radio button it want to work or after selecting the button we want to press f8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For first choice u want to write the code on atselection screen,for second choice u want to write code in start of selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After getting the file into SAP,as based on the condition like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if &amp;lt;radio1&amp;gt; = 'X'.&lt;/P&gt;&lt;P&gt;u can write the insert code here&lt;/P&gt;&lt;P&gt;(insert &amp;lt;DB table name&amp;gt; from table &amp;lt;internaltable name&amp;gt;)&lt;/P&gt;&lt;P&gt;elseif &amp;lt;radio2_modify&amp;gt; = 'X'.&lt;/P&gt;&lt;P&gt;modify code here&lt;/P&gt;&lt;P&gt;(modify DB from table internal table)&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;delete code here.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 15:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271111#M781917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T15:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271112#M781918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi mahesh&lt;/P&gt;&lt;P&gt; thanks for reply&lt;/P&gt;&lt;P&gt;i already  did in the same format what u told&lt;/P&gt;&lt;P&gt;but i am getting dump if possible check the code once and tell me whats the error is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: FILE LIKE IBIPPARMS-PATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_tmg OCCURS 0,&lt;/P&gt;&lt;P&gt;        NAME TYPE ZTMG-NAME,&lt;/P&gt;&lt;P&gt;        DOB(10), " TYPE ZTMG-DOB,&lt;/P&gt;&lt;P&gt;        GENDER TYPE ZTMG-GENDER,&lt;/P&gt;&lt;P&gt;       END OF IT_tmg.&lt;/P&gt;&lt;P&gt;DATA PFILE TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : WA like ZTMG occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      PROGRAM_NAME  = SYST-CPROG&lt;/P&gt;&lt;P&gt;      DYNPRO_NUMBER = SYST-DYNNR&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   FIELD_NAME    = 'x'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      FILE_NAME     = FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PFILE = FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FILENAME                      = PFILE&lt;/P&gt;&lt;P&gt;     FILETYPE                      = 'ASC'&lt;/P&gt;&lt;P&gt;      HAS_FIELD_SEPARATOR           = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        HEADER_LENGTH                 = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        READ_BY_LINE                  = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        DAT_MODE                      = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        FILELENGTH                    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        HEADER                        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB                      = IT_tmg&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;         FILE_OPEN_ERROR               = 1&lt;/P&gt;&lt;P&gt;         FILE_READ_ERROR               = 2&lt;/P&gt;&lt;P&gt;         NO_BATCH                      = 3&lt;/P&gt;&lt;P&gt;         GUI_REFUSE_FILETRANSFER       = 4&lt;/P&gt;&lt;P&gt;         INVALID_TYPE                  = 5&lt;/P&gt;&lt;P&gt;         NO_AUTHORITY                  = 6&lt;/P&gt;&lt;P&gt;         UNKNOWN_ERROR                 = 7&lt;/P&gt;&lt;P&gt;         BAD_DATA_FORMAT               = 8&lt;/P&gt;&lt;P&gt;         HEADER_NOT_ALLOWED            = 9&lt;/P&gt;&lt;P&gt;         SEPARATOR_NOT_ALLOWED         = 10&lt;/P&gt;&lt;P&gt;         HEADER_TOO_LONG               = 11&lt;/P&gt;&lt;P&gt;         UNKNOWN_DP_ERROR              = 12&lt;/P&gt;&lt;P&gt;         ACCESS_DENIED                 = 13&lt;/P&gt;&lt;P&gt;         DP_OUT_OF_MEMORY              = 14&lt;/P&gt;&lt;P&gt;         DISK_FULL                     = 15&lt;/P&gt;&lt;P&gt;         DP_TIMEOUT                    = 16&lt;/P&gt;&lt;P&gt;         OTHERS                        = 17&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; LOOP AT IT.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; WRITE:/ IT-NAME.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : INSERT RADIOBUTTON GROUP G1,&lt;/P&gt;&lt;P&gt;             MODIFY RADIOBUTTON GROUP G1,&lt;/P&gt;&lt;P&gt;             DELETE RADIOBUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : END OF BLOCK B1 .&lt;/P&gt;&lt;P&gt;*MOVE IT TO WA.&lt;/P&gt;&lt;P&gt;WA-NAME = IT_tmg-NAME.&lt;/P&gt;&lt;P&gt;WA-DOB = IT_tmg-DOB.&lt;/P&gt;&lt;P&gt;WA-GENDER = IT_tmg-GENDER.&lt;/P&gt;&lt;P&gt;IF INSERT = 'X'.&lt;/P&gt;&lt;P&gt;*LOOP AT IT.&lt;/P&gt;&lt;P&gt;INSERT ztmg from table wa.&lt;/P&gt;&lt;P&gt;**ENDLOOP.&lt;/P&gt;&lt;P&gt;*MODIFY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;if modify = 'x'.&lt;/P&gt;&lt;P&gt;update ztmg from table wa.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;delete ztmg from table wa.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 16:01:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271112#M781918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T16:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271113#M781919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sachin, First append your record to your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values are still in our work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 16:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271113#M781919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T16:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271114#M781920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vinodh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i append all records to internal table \but i am getting the same error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u please modify my above code if possible and send me back .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 17:05:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271114#M781920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T17:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271115#M781921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the Dump you are getting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attach the Dump message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 17:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271115#M781921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T17:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271116#M781922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vinodh&lt;/P&gt;&lt;P&gt;iam getting dump like this&lt;/P&gt;&lt;P&gt;Exception condition "WRONG_PARAMETER" raised&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 17:22:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271116#M781922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T17:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271117#M781923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vinodh can u modify the above code in a proper way if poossible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 17:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271117#M781923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T17:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271118#M781924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Modified your program accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just copy this program to your System and Replace &lt;STRONG&gt;ZZZ_CAB_TEST_DB&lt;/STRONG&gt; with Your Database table in your Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: FILE LIKE IBIPPARMS-PATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_tmg OCCURS 0.&lt;/P&gt;&lt;P&gt;        Include Structure ZZZ_CAB_TEST_DB.&lt;/P&gt;&lt;P&gt;data : END OF IT_tmg.&lt;/P&gt;&lt;P&gt;DATA PFILE TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : WA like ZZZ_CAB_TEST_DB occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      PROGRAM_NAME  = SYST-CPROG&lt;/P&gt;&lt;P&gt;      DYNPRO_NUMBER = SYST-DYNNR&lt;/P&gt;&lt;P&gt;      FIELD_NAME    = 'x'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      FILE_NAME     = FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PFILE = FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FILENAME                = PFILE&lt;/P&gt;&lt;P&gt;      HAS_FIELD_SEPARATOR     = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB                = IT_tmg&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      FILE_OPEN_ERROR         = 1&lt;/P&gt;&lt;P&gt;      FILE_READ_ERROR         = 2&lt;/P&gt;&lt;P&gt;      NO_BATCH                = 3&lt;/P&gt;&lt;P&gt;      GUI_REFUSE_FILETRANSFER = 4&lt;/P&gt;&lt;P&gt;      INVALID_TYPE            = 5&lt;/P&gt;&lt;P&gt;      NO_AUTHORITY            = 6&lt;/P&gt;&lt;P&gt;      UNKNOWN_ERROR           = 7&lt;/P&gt;&lt;P&gt;      BAD_DATA_FORMAT         = 8&lt;/P&gt;&lt;P&gt;      HEADER_NOT_ALLOWED      = 9&lt;/P&gt;&lt;P&gt;      SEPARATOR_NOT_ALLOWED   = 10&lt;/P&gt;&lt;P&gt;      HEADER_TOO_LONG         = 11&lt;/P&gt;&lt;P&gt;      UNKNOWN_DP_ERROR        = 12&lt;/P&gt;&lt;P&gt;      ACCESS_DENIED           = 13&lt;/P&gt;&lt;P&gt;      DP_OUT_OF_MEMORY        = 14&lt;/P&gt;&lt;P&gt;      DISK_FULL               = 15&lt;/P&gt;&lt;P&gt;      DP_TIMEOUT              = 16&lt;/P&gt;&lt;P&gt;      OTHERS                  = 17.&lt;/P&gt;&lt;P&gt;  IF not SY-SUBRC eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;  PARAMETERS : INSERT RADIOBUTTON GROUP G1,&lt;/P&gt;&lt;P&gt;  MODIFY RADIOBUTTON GROUP G1,&lt;/P&gt;&lt;P&gt;  DELETE RADIOBUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN : END OF BLOCK B1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF INSERT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    INSERT ZZZ_CAB_TEST_DB from table IT_tmg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elseif modify = 'x'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    update ZZZ_CAB_TEST_DB from table IT_tmg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    delete ZZZ_CAB_TEST_DB from table IT_tmg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this Helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 18:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271118#M781924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T18:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271119#M781925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vinodh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here we can get it_tmg is not long enough as error na&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 18:52:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271119#M781925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T18:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271120#M781926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sacin Did you replace ZZZ_CAB_TEST_DB  with your Table name in all places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paste your changed code again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VInodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 18:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271120#M781926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T18:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: use insert comand</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271121#M781927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vinodh &lt;/P&gt;&lt;P&gt;sorry its mistake of mine checking other program and for that also same internal table name i gave thats why&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway thanks for helping with lot patience &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Jan 2008 19:12:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-insert-comand/m-p/3271121#M781927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-20T19:12:36Z</dc:date>
    </item>
  </channel>
</rss>

