<?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: BDC programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474823#M1253649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks all for helping me out.. thanks a ton..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Apr 2009 10:40:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-14T10:40:17Z</dc:date>
    <item>
      <title>BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474803#M1253629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  1). I have created a BDC program for transactio 'S_BCE_68000174'  . I have used call transaction method. when I put mode 'A' its working fine table is getting updated. but user has to press enter keys. BUT User doesnt want to press enter key.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'S_BCE_68000174'  USING BDCDATA MODE 'A' UPDATE 'S'&lt;/P&gt;&lt;P&gt;                                            MESSAGES INTO TMESG.&lt;/P&gt;&lt;P&gt;How can i do this. as i am new in BDC please help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) User also wants that if any data is not updated in table he should get a email notification. Can this be done because i think that it can be done in workflow only . can the error message be sent through eMail.&lt;/P&gt;&lt;P&gt;Please help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 08:51:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474803#M1253629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T08:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474804#M1253630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use following&lt;/P&gt;&lt;P&gt;Replace mode A with N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'S_BCE_68000174' USING BDCDATA MODE 'N' UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO TMESG.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;R K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 08:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474804#M1253630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T08:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474805#M1253631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PASS MODE 'N'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION c_pa30 USING i_bdc_data MODE p_mode
                                           MESSAGES INTO i_msg_tab.
  IF sy-subrc NE 0.
*   Process as error if message type is E or A. if it is type S, it is
*   only an error if it is 347, 348, 344"No batch input data for screen
    LOOP AT i_msg_tab INTO i_msg_tab_line
                      WHERE msgtyp = c_e OR msgtyp = c_a
            OR ( msgtyp = 'S' AND msgid  = '00' AND msgnr = '347' )
            OR ( msgtyp = 'S' AND msgid  = '00' AND msgnr = '348' )
            OR ( msgtyp = 'S' AND msgid  = '00' AND msgnr = '344' ).
      CALL FUNCTION 'MASS_MESSAGE_GET'
        EXPORTING
          sprsl             = sy-langu
          arbgb             = i_msg_tab_line-msgid
          msgnr             = i_msg_tab_line-msgnr
          msgv1             = i_msg_tab_line-msgv1
          msgv2             = i_msg_tab_line-msgv2
          msgv3             = i_msg_tab_line-msgv3
          msgv4             = i_msg_tab_line-msgv4
        IMPORTING
          msgtext           = l_errormsg
        EXCEPTIONS
          message_not_found = 1
          OTHERS            = 2.
      IF sy-subrc &amp;lt;&amp;gt; 0.                                     "#EC NEEDED
*       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*       WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
"  Send Email Functionality
      EXIT.
    ENDLOOP.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;[Email Logic|http://docs.google.com/Doc?id=dfv2hmgs_0fm22tggx&amp;amp;hl=en]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 08:57:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474805#M1253631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T08:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474806#M1253632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in Online mode(A) the user must give some action to the screen so as to get the transaction being exectued and there is no other way I think.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I prefer going to Background Mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put the type as N and not A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL TRANSACTION 'S_BCE_68000174' USING BDCDATA MODE 'N' UPDATE 'S'
MESSAGES INTO TMESG.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the error messages can be sent using the FM's  SO_DOCUMENT_SEND_API1 or SO_NEW_DOCUMENT_SEND_API1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;firstly loop  through the internal table  and find the message with message type as E and u can send those messages with the above FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please search SDN to get the related code for the FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:00:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474806#M1253632</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2009-04-10T09:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474807#M1253633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use mode as 'N' Like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'S_BCE_68000174' USING BDCDATA MODE &lt;STRONG&gt;'N'&lt;/STRONG&gt; UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO TMESG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then there will be no need to press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Sending mail you can use FM: 'SO_DOCUMENT_SEND_API1' . see the where used list for the FM for details or you can get in SDN forums.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:03:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474807#M1253633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T09:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474808#M1253634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solution for 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION 'S_BCE_68000174' USING BDCDATA MODE *'N'* UPDATE 'S'
MESSAGES INTO TMESG.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solution for 2.collect all the error records in an itab and use this FM SO_NEW_DOCUMENT_SEND_API1 to send mail.Search SDN u will get the sampple code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rhea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 09:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474808#M1253634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T09:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474809#M1253635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;thanks a lot for ur Suggestion.&lt;/P&gt;&lt;P&gt;but when i am changing mode to 'N' its not updating in DATABASE. so i m struck if u can suggess me any way then it ll be more helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;solution for my 2nd problem is perfect ..&lt;/P&gt;&lt;P&gt;Vikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 10:32:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474809#M1253635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T10:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474810#M1253636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;have u wrote commit work after call transaction.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;R K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 10:44:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474810#M1253636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T10:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474811#M1253637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the CALL TRANSACTION's  OPTION parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure is  options is of type CTU_PARAMS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you populate that structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

options-DISMODE = 'N'.
options-UPMODE  = 'S' .      
options-DEFSIZE = 'X'.
options-RACOMMIT = 'X'.


CALL TRANSACTION 'S_BCE_68000174' USING BDCDATA OPTIONS FROM options
MESSAGES INTO TMESG.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 11:35:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474811#M1253637</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2009-04-10T11:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474812#M1253638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do one thing write a SLEEP statement after execution .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because when ever updateion take place it create a critical section for tht particular table .&lt;/P&gt;&lt;P&gt;so before updation of the table u trace the table which wont work .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second mailing from the BDC is possible .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2009 11:58:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474812#M1253638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-10T11:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474813#M1253639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey guys its still not working.. i dont knw why in mode A it works but in mode its not working i tried commit and sleep as well.. please help me out..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Apr 2009 07:39:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474813#M1253639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-12T07:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474814#M1253640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are the messages u r getting in the Message Table of BDC i.e. TMESG......Does prog giving any Error or Warning msg in "N" mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try running this in "E" mode and then see the difference....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: AJAY TIWARI on Apr 12, 2009 10:40 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Apr 2009 08:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474814#M1253640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-12T08:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474815#M1253641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;even the mode N dint work but when i am doing with mode E its working. is it feasible to use mode 'E' will it have any problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 02:21:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474815#M1253641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-13T02:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474816#M1253642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When u are using Mode 'E' it means you want to display only errors. But anyhow you want to store the errors into the internal table right. then i think its better try using mode 'N' (no screen display) itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sakthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2009 03:00:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474816#M1253642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-13T03:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474817#M1253643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its not working in mode N but its working in mode A nd E i want it to work in mode N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 06:56:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474817#M1253643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T06:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474818#M1253644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems you have missed few enter keys while recording i.e. some enter are not recorded and so, please redo recording hitting enter after every screen entered with values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thans,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 07:05:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474818#M1253644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T07:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474819#M1253645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess when u run the prog in backgrnd mode, some screen might be goin in error like &amp;lt;field&amp;gt; does not exist in screen &amp;lt;screenno&amp;gt;. run the prog in 'E' mode chk wht all errors comes while running the prg and try to take care of all such errors in the program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it clears ur doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anil N.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 07:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474819#M1253645</guid>
      <dc:creator>former_member438956</dc:creator>
      <dc:date>2009-04-14T07:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474820#M1253646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U problem is quite simple .....&lt;/P&gt;&lt;P&gt;whenrever ur code for BDC recording is writeen ... comment out the following part....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*PERFORM BDC_FIELD       TABLES BDCDATA&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                       USING 'BDC_OKCODE'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                                                   '/00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the code for the ENTER in the recording ... and        '/00'. is the code for ENTER ... keep ur al the code as it is and comment out all the PERFORM STatements of       '/00'. .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the solution for ur second problem ...is also simple there are lot of FM .. for semding  Email.. use it for sending the  mail ... instead of Workflow....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Jay Sawant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 07:36:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474820#M1253646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T07:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474821#M1253647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can simply use mode 'N' instead of teh mode 'A' as in the previous case no screens will be displayed for the user to take any aaction, nd in the latter it will work as good as background processing with no user interaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as CALL TRANSACTION 'S_BCE_68000174' USING BDCDATA MODE 'N' UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO TMESG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can use the mode "E" if you you want to show the error screen in case you encounter any , rest all screens(which work fine) would not be displayed this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474821#M1253647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: BDC programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474822#M1253648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think ur qs is answeered ... so please update the thread as Answered...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-programming/m-p/5474822#M1253648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:39:31Z</dc:date>
    </item>
  </channel>
</rss>

