<?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: HR Outbound interface in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface/m-p/2231983#M480314</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rippy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Follow this sample code. You can generate your text file names differently for different fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;selection-screen begin of block b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters  p_fname type rlgrap-FILENAME default 'test'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'COBPART' sy-datum '.TXT' into p_fname.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Jayaram...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2007 14:14:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-26T14:14:35Z</dc:date>
    <item>
      <title>HR Outbound interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface/m-p/2231982#M480313</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;Please help me this as im new to ABAP HR...&lt;/P&gt;&lt;P&gt;the requirement is as...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program should generate 4 separate files, giving the user the option to select which file they are generating on a selection screen. &lt;/P&gt;&lt;P&gt;The file are to be named defalult as:&lt;/P&gt;&lt;P&gt;COBPART&amp;lt;b&amp;gt;YYYYMMDD&amp;lt;/b&amp;gt;.TXT&lt;/P&gt;&lt;P&gt;COBDEPT&amp;lt;b&amp;gt;YYYYMMDD&amp;lt;/b&amp;gt;.TXT&lt;/P&gt;&lt;P&gt;COBCOV&amp;lt;b&amp;gt;YYYYMMDD&amp;lt;/b&amp;gt;.TXT&lt;/P&gt;&lt;P&gt;COBCON&amp;lt;b&amp;gt;YYYYMMDD&amp;lt;/b&amp;gt;.TXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me suggest how to generate this file name dynamically...i.e along with the current date (sy-datum).&lt;/P&gt;&lt;P&gt;I've tried concatenating it and putting into a string variable but the problem is that how do i assign this as default value of the input field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 09:38:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface/m-p/2231982#M480313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T09:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: HR Outbound interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface/m-p/2231983#M480314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rippy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Follow this sample code. You can generate your text file names differently for different fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;selection-screen begin of block b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters  p_fname type rlgrap-FILENAME default 'test'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen end of block b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'COBPART' sy-datum '.TXT' into p_fname.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Jayaram...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 14:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface/m-p/2231983#M480314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T14:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: HR Outbound interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface/m-p/2231984#M480315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Jayarama,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Your answer was exactly what was required .....&lt;/P&gt;&lt;P&gt;thanx a lot..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 06:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface/m-p/2231984#M480315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-27T06:37:32Z</dc:date>
    </item>
  </channel>
</rss>

