<?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: Transfer, Problem with Network Address in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-problem-with-network-address/m-p/10321167#M1835486</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;Your OPEN DATASET...TRANSFER commands operate at the O/S level where your SAP application is running.&amp;nbsp; So, you can't assume that at this level it knows where \\bhz-fls-nfs is (particularly as you seem to be running on UNIX).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, this is more a Basis question than one of ABAP development, in terms of understanding what is needed to write from your SAP O/S to this network location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jun 2014 12:44:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-06-11T12:44:18Z</dc:date>
    <item>
      <title>Transfer, Problem with Network Address</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-problem-with-network-address/m-p/10321166#M1835485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;I am trying to transfer a file to the Network Address named : \\bhz-fls-nfs\MRVBH\SAP\Interfaces_DEV\HCM\KOFAX\HR_ADMISSAO\ , so i concatenate this address with the filename ( 100200023 ) and I use the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;OPEN DATASET p_arq FOR OUTPUT IN BINARY MODE.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; IF sy-subrc NE 0.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RAISE erro_diretorio.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RETURN.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;TRANSFER iv_data TO p_arq.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; IF sy-subrc NE 0.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLOSE DATASET p_arq.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RAISE erro_transferencia.&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;where p_arq is \\bhz-fls-nfs\MRVBH\SAP\Interfaces_DEV\HCM\KOFAX\HR_ADMISSAO\100200023&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;and iv_data is the content of file .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 11.818181991577148px; color: #333333; background: #ffffff;"&gt;But, this create a file in the path ./&amp;nbsp; , named&amp;nbsp; \\bhz-fls-nfs\MRVBH\SAP\Interfaces_DEV\HCM\KOFAX\HR_ADMISSAO\100200023, i need to create a file named 100200023 in the folder&amp;nbsp; \\bhz-fls-nfs\MRVBH\SAP\Interfaces_DEV\HCM\KOFAX\HR_ADMISSAO\ how can i do that ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:39:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-problem-with-network-address/m-p/10321166#M1835485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-11T12:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer, Problem with Network Address</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-problem-with-network-address/m-p/10321167#M1835486</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;Your OPEN DATASET...TRANSFER commands operate at the O/S level where your SAP application is running.&amp;nbsp; So, you can't assume that at this level it knows where \\bhz-fls-nfs is (particularly as you seem to be running on UNIX).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, this is more a Basis question than one of ABAP development, in terms of understanding what is needed to write from your SAP O/S to this network location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 12:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-problem-with-network-address/m-p/10321167#M1835486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-11T12:44:18Z</dc:date>
    </item>
  </channel>
</rss>

