<?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 how to create a folder in server using abap at client? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540491#M1072669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, everyone,&lt;/P&gt;&lt;P&gt;I would like to know how to create a folder in server using abap, and the folder can save date by writting? &lt;/P&gt;&lt;P&gt;I have not find the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Sep 2008 08:23:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-30T08:23:39Z</dc:date>
    <item>
      <title>how to create a folder in server using abap at client?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540491#M1072669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, everyone,&lt;/P&gt;&lt;P&gt;I would like to know how to create a folder in server using abap, and the folder can save date by writting? &lt;/P&gt;&lt;P&gt;I have not find the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:23:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540491#M1072669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to create a folder in server using abap at client?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540492#M1072670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;USE SM69 with OS command MKDIR&lt;/P&gt;&lt;P&gt;USE FM 'SXPG_COMMAND_EXECUTE' to run this command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and store that data using DATASET.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540492#M1072670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to create a folder in server using abap at client?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540493#M1072671</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 must create a command ZMD in the transaction  sm69 then use it by calling the system command related by the other user answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rhea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540493#M1072671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to create a folder in server using abap at client?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540494#M1072672</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;Create one external unix command in SM69.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that transaction, input "MKDIR" in the "Operation system command" field.&lt;/P&gt;&lt;P&gt;in the "Parameters for operating system command" input "&amp;amp;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets say the external command you created is "'ZMKDIR'".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now we need to call this in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: w_output TYPE SXPGCOLIST-PARAMETERS VALUE '/tmp/NEWDIR' ,
 
w_command TYPE SXPGCOLIST-name VALUE 'ZMKDIR'.
 
 CALL FUNCTION 'SXPG_COMMAND_EXECUTE'
  EXPORTING
    commandname                         = w_command
    ADDITIONAL_PARAMETERS           = w_output
 IMPORTING
   STATUS                               = w_status
 TABLES
   EXEC_PROTOCOL                        =  LOG

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540494#M1072672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to create a folder in server using abap at client?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540495#M1072673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple solution using &lt;STRONG&gt;OPEN DATASET&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 08:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540495#M1072673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T08:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to create a folder in server using abap at client?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540496#M1072674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, everyone, thanks for your help, &lt;/P&gt;&lt;P&gt;but I want only  use abap to relized it. anyone know ? &lt;/P&gt;&lt;P&gt;Just like GUI_CREATE_DIRECTORY function to realize. when I running it , the system apper on 'core dump' error. &lt;/P&gt;&lt;P&gt;why?'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 09:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-folder-in-server-using-abap-at-client/m-p/4540496#M1072674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T09:03:40Z</dc:date>
    </item>
  </channel>
</rss>

