<?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: AT SELECTION SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/2310139#M505929</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;You missed the definition of the parameter.&lt;/P&gt;&lt;P&gt;So insert the following line before all others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETER: p_hfile TYPE RLGRAP-FILENAME.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Timo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2007 08:32:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-22T08:32:06Z</dc:date>
    <item>
      <title>AT SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/2310138#M505928</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;am using the code below but am getting an "ERROR CALLED ON VALUE REQUEST FOR" should be followed by &amp;lt;parameter&amp;gt; or &amp;lt;select-option&amp;gt;-LOW / &amp;lt;select-option&amp;gt;-HIGH.please help and also please mention the changes if needed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_hfile.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;file name get (F4)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'KD_GET_FILENAME_ON_F4'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      static        = 'X'&lt;/P&gt;&lt;P&gt;    changing&lt;/P&gt;&lt;P&gt;      file_name     = p_hfile&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      mask_too_long = 1&lt;/P&gt;&lt;P&gt;      others        = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;  perform upload_data.&lt;/P&gt;&lt;P&gt;  sort it_file.&lt;/P&gt;&lt;P&gt;  perform open_group.&lt;/P&gt;&lt;P&gt;  loop at it_file.&lt;/P&gt;&lt;P&gt;    at new aznum.&lt;/P&gt;&lt;P&gt;      import febmka-vari_start&lt;/P&gt;&lt;P&gt;             febmka-kont_int&lt;/P&gt;&lt;P&gt;             febmka-debi_mid&lt;/P&gt;&lt;P&gt;             febmka-kred_mid&lt;/P&gt;&lt;P&gt;             febmka-wvar_art&lt;/P&gt;&lt;P&gt;             novaluta_flag                "XVALUT&lt;/P&gt;&lt;P&gt;             nofdis_flag&lt;/P&gt;&lt;P&gt;        from database rfdt(mk) id sy-uname.&lt;/P&gt;&lt;P&gt;      if febmka-kont_int = 'X'.&lt;/P&gt;&lt;P&gt;        v_srno = '0101'.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        v_srno = '0102'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      read table it_file index sy-tabix.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPMF40K' v_srno.      "'0102'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '/EVORG'.&lt;/P&gt;&lt;P&gt;      if v_srno = '0102'.&lt;/P&gt;&lt;P&gt;        perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'FEBMKA-BANKL'.&lt;/P&gt;&lt;P&gt;      elseif v_srno = '0101'.&lt;/P&gt;&lt;P&gt;        perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'FEBMKA-BUKRS'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPMF40K' '0110'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'FEBMKA-WVAR_ART'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '=ENTE'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-KONT_INT'&lt;/P&gt;&lt;P&gt;                                    'X'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-FDIS_SEL'&lt;/P&gt;&lt;P&gt;                                    'X'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-VARI_START'&lt;/P&gt;&lt;P&gt;                                    'ZSHV'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-DEBI_MID'&lt;/P&gt;&lt;P&gt;                                    'D'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-KRED_MID'&lt;/P&gt;&lt;P&gt;                                    'K'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-WVAR_ART'&lt;/P&gt;&lt;P&gt;                                    '2'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-BUCH_VAL'&lt;/P&gt;&lt;P&gt;                                    'X'.&lt;/P&gt;&lt;P&gt;***********************&lt;/P&gt;&lt;P&gt;      perform bdc_dynpro      using 'SAPMF40K' '0101'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                    'FEBMKA-AZNUM'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                    '/00'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-BUKRS'&lt;/P&gt;&lt;P&gt;                                    it_file-bukrs.          "'0571'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-HBKID'&lt;/P&gt;&lt;P&gt;                                    it_file-hbkid. "'HDFC'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-HKTID'&lt;/P&gt;&lt;P&gt;                                    it_file-hktid.          "'HD01'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-AZNUM'&lt;/P&gt;&lt;P&gt;                                    it_file-aznum.          "'11114'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-AZDAT'&lt;/P&gt;&lt;P&gt;                                    it_file-azdat. "'31.07.2006'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-SSALD'&lt;/P&gt;&lt;P&gt;                                    it_file-ssald. "'                 0'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-ESALD'&lt;/P&gt;&lt;P&gt;                                    it_file-esald. "'              -200'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-BUDTM'&lt;/P&gt;&lt;P&gt;                                    it_file-budtm. "'31.07.2006'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-MNAM1'&lt;/P&gt;&lt;P&gt;                                    it_file-mnam1.          "'2222'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-MNAM2'&lt;/P&gt;&lt;P&gt;                                    it_file-mnam2.          "'2111'.&lt;/P&gt;&lt;P&gt;      perform bdc_field       using 'FEBMKA-JNAME'&lt;/P&gt;&lt;P&gt;                                    sy-uname.  "'RAJUK'.&lt;/P&gt;&lt;P&gt;    endat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 06:25:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/2310138#M505928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T06:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/2310139#M505929</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;You missed the definition of the parameter.&lt;/P&gt;&lt;P&gt;So insert the following line before all others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETER: p_hfile TYPE RLGRAP-FILENAME.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Timo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/2310139#M505929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/2310140#M505930</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;     Declare the parameter p_hfile of type RLGRAP_FILENAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deepu.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2007 08:34:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen/m-p/2310140#M505930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-22T08:34:32Z</dc:date>
    </item>
  </channel>
</rss>

