<?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: Recording coding ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386597#M188152</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;':' is a way to eliminate repeating the portion of the code that is in front of the ':'. It is just to improve the readability of the code. It is to be interpreted as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PERFORM dypro USING 'X' 'SAPMF05A'    '0100'.
PERFORM dypro USING ' ' 'BKPF-bldat'  itab-date.
PERFORM dypro USING ' ' 'BKPF-blart'  'AF'.
PERFORM dypro USING ' ' 'BKPF-bukrs'  'ABCE'.
PERFORM dypro USING ' ' 'BKPF-waers'  'USD'.
PERFORM dypro USING ' ' 'RF05A-newko' itab-kunnr.
PERFORM dypro USING ' ' 'BDC_OKCODE'  '/00'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jun 2006 16:00:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-16T16:00:15Z</dc:date>
    <item>
      <title>Recording coding ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386595#M188150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you tell me how to write a code like this?&lt;/P&gt;&lt;P&gt;      PERFORM dynpro USING: 'X'  'SAPMF05A'    '0100',&lt;/P&gt;&lt;P&gt;                            ' '  'BKPF-bldat'  itab-date,&lt;/P&gt;&lt;P&gt;                            ' '  'BKPF-blart'  'AF',&lt;/P&gt;&lt;P&gt;                            ' '  'BKPF-bukrs'  'ABCE',&lt;/P&gt;&lt;P&gt;                            ' '  'BKPF-waers'  'USD',&lt;/P&gt;&lt;P&gt;                            ' '  'RF05A-newko' itab-kunnr,&lt;/P&gt;&lt;P&gt;	                    ' '  'BDC_OKCODE'   '/00'.&lt;/P&gt;&lt;P&gt;I think it is a type of recording, but when I record and generate a program, it is full of subroutines. (Not exactly like above). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 14:33:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386595#M188150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T14:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Recording coding ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386596#M188151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu can see as many performs as the number of lines in the bdc.&lt;/P&gt;&lt;P&gt;YOu have a ':' which means you may not write the perofrm dynpro each and every time.&lt;/P&gt;&lt;P&gt;PERFORM dynpro USING: 'X' 'SAPMF05A' '0100'.&lt;/P&gt;&lt;P&gt;' ' 'BKPF-bldat' itab-date,&lt;/P&gt;&lt;P&gt;' ' 'BKPF-blart' 'AF',&lt;/P&gt;&lt;P&gt;' ' 'BKPF-bukrs' 'ABCE',&lt;/P&gt;&lt;P&gt;' ' 'BKPF-waers' 'USD',&lt;/P&gt;&lt;P&gt;' ' 'RF05A-newko' itab-kunnr,&lt;/P&gt;&lt;P&gt;' ' 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 14:38:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386596#M188151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T14:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Recording coding ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386597#M188152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;':' is a way to eliminate repeating the portion of the code that is in front of the ':'. It is just to improve the readability of the code. It is to be interpreted as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PERFORM dypro USING 'X' 'SAPMF05A'    '0100'.
PERFORM dypro USING ' ' 'BKPF-bldat'  itab-date.
PERFORM dypro USING ' ' 'BKPF-blart'  'AF'.
PERFORM dypro USING ' ' 'BKPF-bukrs'  'ABCE'.
PERFORM dypro USING ' ' 'BKPF-waers'  'USD'.
PERFORM dypro USING ' ' 'RF05A-newko' itab-kunnr.
PERFORM dypro USING ' ' 'BDC_OKCODE'  '/00'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 16:00:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386597#M188152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T16:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Recording coding ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386598#M188153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;using ':' this you can avoid repeated portion .&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM dynpro USING: 'X' 'SAPMF05A' '0100',
' ' 'BKPF-bldat' itab-date,
' ' 'BKPF-blart' 'AF',
' ' 'BKPF-bukrs' 'ABCE',
' ' 'BKPF-waers' 'USD',
' ' 'RF05A-newko' itab-kunnr,
' ' 'BDC_OKCODE' '/00'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 16:04:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386598#M188153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T16:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Recording coding ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386599#M188154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys, thanks for your immediate help. But that's not my question.&lt;/P&gt;&lt;P&gt;My question is how can I code like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM dynpro USING: 'X' 'SAPMF05A' '0100',&lt;/P&gt;&lt;P&gt;(I mean I just don't understand these Xs, program names and numbers here. I know it is done by recording but can you tell me how to write a code like above using recording or whatever)&lt;/P&gt;&lt;P&gt;I appreciate your kind help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 18:11:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386599#M188154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T18:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: Recording coding ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386600#M188155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'X' indicates that you are entering that screen 0100 of program SAPMF05A. After that what you are doing is filling the value for each field on that screen as needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how do you know which screen and which field and which program it is? Go to any transaction, press F1 on any field, and then click on the technical help button. This will tell which program, what the field name and the screen is for batch input. This is the tedious way to do it. So you normally do a recording using transaction code SHDB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 18:33:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recording-coding/m-p/1386600#M188155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T18:33:40Z</dc:date>
    </item>
  </channel>
</rss>

