<?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: export and import parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-and-import-parameters/m-p/2933964#M691361</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you call the function module in ur ABAP program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YOu will see Exporting and Importing .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg - &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_KONPD_OUTPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      INPUT  = OUTPUT-PSPHI&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      OUTPUT = OUTPUT-PSPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am passing a value to the input field - OUTPUT-PSPHI. With this data once the function module is executed it returns me the result in the importing ie, Output and i can have the result in OUTPUT-PSPID.&lt;/P&gt;&lt;P&gt;I hope its clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know for any questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shreekant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 16:55:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T16:55:30Z</dc:date>
    <item>
      <title>export and import parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-and-import-parameters/m-p/2933963#M691360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is export and import parameters.In function module how it is used.&lt;/P&gt;&lt;P&gt;what is the purpose .can anyone explain me with coding?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 16:51:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-and-import-parameters/m-p/2933963#M691360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T16:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: export and import parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-and-import-parameters/m-p/2933964#M691361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you call the function module in ur ABAP program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YOu will see Exporting and Importing .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg - &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_KONPD_OUTPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      INPUT  = OUTPUT-PSPHI&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      OUTPUT = OUTPUT-PSPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am passing a value to the input field - OUTPUT-PSPHI. With this data once the function module is executed it returns me the result in the importing ie, Output and i can have the result in OUTPUT-PSPID.&lt;/P&gt;&lt;P&gt;I hope its clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know for any questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shreekant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 16:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-and-import-parameters/m-p/2933964#M691361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T16:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: export and import parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-and-import-parameters/m-p/2933965#M691362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;when tou use a FM that have a import and export parameters, you need to declare than.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export parameters are values or variables that ou will send to the FM. Inside the FM, they will be processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import parameters are values or variables that the FM will send to you, are the return of the proccess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And sometimes you have the Changing parameters, that are variables that you send to a FM or perform and they can be changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD gr_alvgrid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        is_layout                     = gs_layout&lt;/P&gt;&lt;P&gt;      CHANGING&lt;/P&gt;&lt;P&gt;        it_outtab                     = ti_zcarro[]&lt;/P&gt;&lt;P&gt;        it_fieldcatalog               = gt_fieldcat&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        invalid_parameter_combination = 1&lt;/P&gt;&lt;P&gt;        program_error                 = 2&lt;/P&gt;&lt;P&gt;        too_many_lines                = 3&lt;/P&gt;&lt;P&gt;        OTHERS                        = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, you send values in EXPORTING parameters gs_layout and the method can  change the internal tab ti_zcarro and gt_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it help you.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Alvaro Tejada Galindo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 16:58:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-and-import-parameters/m-p/2933965#M691362</guid>
      <dc:creator>rodrigo_paisante3</dc:creator>
      <dc:date>2007-10-11T16:58:39Z</dc:date>
    </item>
  </channel>
</rss>

