<?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: Somebody clarify me about Conversion_exit Function module usage after data upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951357#M1966508</link>
    <description>&lt;P&gt;Thanks for your Reply. Could you please clarify me about these also&lt;/P&gt;&lt;P&gt;1. Can't i use CONVERSION_EXIT_ALPHA_INPUT Function module ..Instead of CONVERSION_EXIT_MATN1_INPUT..Could you please differentiate these two.&lt;/P&gt;&lt;P&gt;2. In the same program i am using method FILE_SAVE_DIALOG to download an empty template only with column headings for user reference sample upload format, If i want to download an&lt;STRONG&gt; Excel sheet&lt;/STRONG&gt; template to my desktop from SAP what  parameters am i need to pass to above method and GUI_DOWNLOAD method. I am bit confused about Excel download Logic parameters. There is an EXPORT parameter called &lt;STRONG&gt;default_extensio&lt;/STRONG&gt;n in FILE_SAVE_DIALOG.....what is the use of this parameter &lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;In GUI_DOWNLOAD method &lt;STRONG&gt;filetype&lt;/STRONG&gt; parameter is there. What values do i need to pass to get Excel template download from SAP to desktop.&lt;/P&gt;</description>
    <pubDate>Fri, 26 Apr 2019 07:26:38 GMT</pubDate>
    <dc:creator>kirankumark2</dc:creator>
    <dc:date>2019-04-26T07:26:38Z</dc:date>
    <item>
      <title>Somebody clarify me about Conversion_exit Function module usage after data upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951355#M1966506</link>
      <description>&lt;P&gt;I have developed an upload program with 2 columns (Material and Quantity) using ALSM_EXCEL_TO_INTERNAL_TABLE Function module. Once file path is selected this FM Returns an internal table with column wise data. Now, if i want to pass this column wise data to my internal table, In this case please clarify me about below&lt;/P&gt;
  &lt;P&gt;1.Is it necessary to use CONVERSION_EXIT_ALPHA_INPUT on Material number field as user is uploading this data from excel?&lt;/P&gt;
  &lt;P&gt;2. Once my internal table is filled i need to pass same data to MARA table to check availability of material as user uploading bulk data through Excel, Can i use my uploaded data internal table directly to MARA select query (using FOR ALL ENTRIES) or am i need to Loop it and use CONVERSION_EXIT. &lt;/P&gt;
  &lt;P&gt;+&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 18:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951355#M1966506</guid>
      <dc:creator>kirankumark2</dc:creator>
      <dc:date>2019-04-24T18:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Somebody clarify me about Conversion_exit Function module usage after data upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951356#M1966507</link>
      <description>&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;There are internal and external formats for different fields ,  for Material Number internal format includes zeroes in the beginning and external format doesn't. &lt;BR /&gt;For example "00000....11" is internal format and just  "11" is external format.&lt;/P&gt;&lt;P&gt;1- Yes you need to use conversion exits before updating any table in database,&lt;BR /&gt;by just looping and and calling conversion exit function modules.&lt;/P&gt;&lt;P&gt;But actually correct conversion exit for material number is CONVERSION_EXIT_MATN1_INPUT.&lt;/P&gt;&lt;P&gt;To find correct conversion exit : Go to SE11 &amp;gt; Display MARA table &amp;gt; Double click on MATNR field and then Go to domain and open "Definition" tab .. You'll see "MATN1" is the conversion exit there.&lt;BR /&gt;Double click on it and you'll see conversion exit functions on a popup &lt;/P&gt;&lt;P&gt;2 - For a better performance , I would first make a loop and make conversions on fields, &lt;BR /&gt;and then I would read MARA table by a SELECT with FOR ALL ENTRIES and check whether material number valid or not.&lt;BR /&gt;&lt;BR /&gt;I hope it was useful&lt;BR /&gt;Bulent Balci&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 01:56:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951356#M1966507</guid>
      <dc:creator>bbalci</dc:creator>
      <dc:date>2019-04-25T01:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Somebody clarify me about Conversion_exit Function module usage after data upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951357#M1966508</link>
      <description>&lt;P&gt;Thanks for your Reply. Could you please clarify me about these also&lt;/P&gt;&lt;P&gt;1. Can't i use CONVERSION_EXIT_ALPHA_INPUT Function module ..Instead of CONVERSION_EXIT_MATN1_INPUT..Could you please differentiate these two.&lt;/P&gt;&lt;P&gt;2. In the same program i am using method FILE_SAVE_DIALOG to download an empty template only with column headings for user reference sample upload format, If i want to download an&lt;STRONG&gt; Excel sheet&lt;/STRONG&gt; template to my desktop from SAP what  parameters am i need to pass to above method and GUI_DOWNLOAD method. I am bit confused about Excel download Logic parameters. There is an EXPORT parameter called &lt;STRONG&gt;default_extensio&lt;/STRONG&gt;n in FILE_SAVE_DIALOG.....what is the use of this parameter &lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;In GUI_DOWNLOAD method &lt;STRONG&gt;filetype&lt;/STRONG&gt; parameter is there. What values do i need to pass to get Excel template download from SAP to desktop.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 07:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951357#M1966508</guid>
      <dc:creator>kirankumark2</dc:creator>
      <dc:date>2019-04-26T07:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Somebody clarify me about Conversion_exit Function module usage after data upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951358#M1966509</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1- In this case you can use Alpha instead of Matn1 conversion .. there is no difference. But just for your future integration codes, for any database field , I wanted to explain how to pick a conversion exit.&lt;/P&gt;&lt;P&gt;2. Check class cl_gui_frontend_services and try to find examples. &lt;/P&gt;&lt;P&gt;I wish you success &lt;/P&gt;&lt;P&gt;Bulent Balci&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 12:59:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951358#M1966509</guid>
      <dc:creator>bbalci</dc:creator>
      <dc:date>2019-04-26T12:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Somebody clarify me about Conversion_exit Function module usage after data upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951359#M1966510</link>
      <description>&lt;P&gt;Thank you so much for your time on clarifying my Doubts..&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2019 04:38:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/somebody-clarify-me-about-conversion-exit-function-module-usage-after-data/m-p/11951359#M1966510</guid>
      <dc:creator>kirankumark2</dc:creator>
      <dc:date>2019-05-07T04:38:12Z</dc:date>
    </item>
  </channel>
</rss>

