<?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: Difference between exporting &amp; importing.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529109#M849033</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;Through exporting parameters we have to send data to the function module for processing.Through importing parameter we will get the result or output from the function module.In the code,your are passing current date to function module using system variable sy-datum.And you are getting begining date of the month into variable vbap-aedat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;shibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2008 11:18:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-10T11:18:15Z</dc:date>
    <item>
      <title>Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529105#M849029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help me in giving me the difference betweeen Exporting &amp;amp; importing??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also want to know what the following codes imply??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why do we use exporting &amp;amp; importing??&lt;/P&gt;&lt;P&gt;I could not understand from abap keywords help....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'HR_JP_MONTH_BEGIN_END_DATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      iv_date             = sy-datum&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ev_month_begin_date = vbap-aedat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:09:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529105#M849029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529106#M849030</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;exporting parameter tells what u are sending &lt;/P&gt;&lt;P&gt;to the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;importing parameter tells what u are getting in reply from function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the example we are sending sy-datum as exporting parameter and getting aedat as importing parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:13:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529106#M849030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529107#M849031</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 call function modules from ABAP programs using the CALL FUNCTION statement. The name of&lt;/P&gt;&lt;P&gt;the function module is displayed in single quotation marks. After EXPORTING, the system assigns the&lt;/P&gt;&lt;P&gt;parameters that are passed/ to be passed to the function module. After IMPORTING, the system assigns&lt;/P&gt;&lt;P&gt;the parameters that are passed from the function module to the program. Most function modules support&lt;/P&gt;&lt;P&gt;additional exceptions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, after EXCEPTIONS, the exceptions are assigned to values that will be set in&lt;/P&gt;&lt;P&gt;the system field sy-subrc, if a system error occurs. On the left side of the Parameter assignment screen,&lt;/P&gt;&lt;P&gt;the system displays the names of the interface parameters, while the right side of the screen displays&lt;/P&gt;&lt;P&gt;the program's data objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you exchange data with function modules, you can distinguish clearly between three kinds of parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing parameters, which are received by the function module&lt;/P&gt;&lt;P&gt;Exporting parameters, which are returned by the function module&lt;/P&gt;&lt;P&gt;Changing parameters, which are both received and returned.&lt;/P&gt;&lt;P&gt;By default, all parameters are passed by reference. To avoid unwanted side effects, you can only change exporting and changing parameters in the function module. If you want to pass parameters by value, you must select the relevant option when you define the interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also declare importing and changing parameters as optional. You do not have to pass values to&lt;/P&gt;&lt;P&gt;these parameters when you call the function module. Where possible, you should use this option when&lt;/P&gt;&lt;P&gt;you add new parameters to function modules that are already in use. You can assign a default value to an optional parameter. If you do not pass a value of your own when you call the function module, the system then uses the default value instead. Export parameters are always optional.&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;Hope this helps, Do reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Runal Singh on Mar 10, 2008 4:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:16:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529107#M849031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529108#M849032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Exporting parameters are used to send the data to function module to manipulate it.&lt;/P&gt;&lt;P&gt;Importing parameters are used to take tha value from function module to use further operations in program,if necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:17:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529108#M849032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529109#M849033</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;Through exporting parameters we have to send data to the function module for processing.Through importing parameter we will get the result or output from the function module.In the code,your are passing current date to function module using system variable sy-datum.And you are getting begining date of the month into variable vbap-aedat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;shibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:18:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529109#M849033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529110#M849034</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;exporting means what the function module uses to do any action.&lt;/P&gt;&lt;P&gt;Importing means what you get from function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your example,Your fm uses sy-datum and returns the vbap-aedat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529110#M849034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529111#M849035</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;See whenever you call a function module , you have to give some inputs to it , and eventually the function module will give you the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The inputs which you give, will be given in "Exporting", ie sending something, and the output which you get from the function module should be specified in "Importing", ie getting something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you see the coding of the function module in SE37, The parameters which you EXPORT in your code, will be IMPORTED here, and the parameters which you IMPORT in code, ie the output, will be EXPORTED from here, ie sent from here to your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529111#M849035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529112#M849036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;This is explained in program:&lt;/P&gt;&lt;P&gt;Exporting is nothing but the value u r passing inside the FM . &lt;/P&gt;&lt;P&gt;after that it will do all process and return the value in Importing parameter.&lt;/P&gt;&lt;P&gt;like that if u use tables u can pass values and u can get the values in same TABLES parmeter itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u see the same thing in FM:&lt;/P&gt;&lt;P&gt;The parameter which u Exported from program 'll be taken as IMPORTED one and the value that u get it in Importing in program 'll be considered asExported values... but the TABLES paraameters r same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reward if Useful.&lt;/P&gt;&lt;P&gt;Arunprasad.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529112#M849036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529113#M849037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi saswat,&lt;/P&gt;&lt;P&gt;   In this particular example, you are passing today's date to the FM and you get the first day of the current month in return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi Kanth Talagana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 11:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529113#M849037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T11:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between exporting &amp; importing....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529114#M849038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got a clear picture of the difference between exporting &amp;amp; importing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 12:48:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-exporting-importing/m-p/3529114#M849038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T12:48:39Z</dc:date>
    </item>
  </channel>
</rss>

