<?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: Alpha conversion on Internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368136#M1993495</link>
    <description>&lt;P&gt;Instead of hardcoding the columns, Is that can achievable with Move corresponding between the converted and unconverted tables ?&lt;/P&gt;&lt;P&gt;I added the below statement. It is moveing the records but the converted values are getting blank.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;converted_table = CORRESPONDING #( unconverted_table EXCEPT column_a)&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 09 Feb 2021 09:09:56 GMT</pubDate>
    <dc:creator>former_member710665</dc:creator>
    <dc:date>2021-02-09T09:09:56Z</dc:date>
    <item>
      <title>Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368130#M1993489</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;Is it possible to do alpha conversion on Internal table column using |{ variable alpha = in}| ?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 18:16:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368130#M1993489</guid>
      <dc:creator>former_member710665</dc:creator>
      <dc:date>2021-02-08T18:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368131#M1993490</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;converted_table = VALUE #( FOR unconverted
                           IN unconverted_table
                           ( column_a = |{ unconverted-column_a ALPHA = IN }| )
                         ).&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Feb 2021 18:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368131#M1993490</guid>
      <dc:creator>Patrick_vN</dc:creator>
      <dc:date>2021-02-08T18:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368132#M1993491</link>
      <description>&lt;P&gt;Thanks Patrick,&lt;/P&gt;&lt;P&gt;I have tried this logic and it worked. But, all other fileds are blank in converted table&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 08:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368132#M1993491</guid>
      <dc:creator>former_member710665</dc:creator>
      <dc:date>2021-02-09T08:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368133#M1993492</link>
      <description>&lt;P&gt;You have to add the other columns as well, for columns where the values don't have to be changed,  you just map them like "column_b = unconverted-column_b", etc..&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 08:45:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368133#M1993492</guid>
      <dc:creator>Patrick_vN</dc:creator>
      <dc:date>2021-02-09T08:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368134#M1993493</link>
      <description>&lt;P&gt;Hi Mateusz,&lt;/P&gt;&lt;P&gt;My requirement is to add leading 0's.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 08:46:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368134#M1993493</guid>
      <dc:creator>former_member710665</dc:creator>
      <dc:date>2021-02-09T08:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368135#M1993494</link>
      <description>&lt;P&gt;In this case you need to go field by field. How else could the logic know that it's a new field and not the ending part of the previous one?&lt;/P&gt;&lt;P&gt;I will remove my answer as it is not relevant.&lt;/P&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;Mateusz</description>
      <pubDate>Tue, 09 Feb 2021 08:51:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368135#M1993494</guid>
      <dc:creator>MateuszAdamus</dc:creator>
      <dc:date>2021-02-09T08:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368136#M1993495</link>
      <description>&lt;P&gt;Instead of hardcoding the columns, Is that can achievable with Move corresponding between the converted and unconverted tables ?&lt;/P&gt;&lt;P&gt;I added the below statement. It is moveing the records but the converted values are getting blank.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;converted_table = CORRESPONDING #( unconverted_table EXCEPT column_a)&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 09 Feb 2021 09:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368136#M1993495</guid>
      <dc:creator>former_member710665</dc:creator>
      <dc:date>2021-02-09T09:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha conversion on Internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368137#M1993496</link>
      <description>&lt;P&gt;Hello  &lt;SPAN class="mention-scrubbed"&gt;praveen_channa&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Actually, you could try something like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS:
  &amp;lt;lv_field&amp;gt; TYPE ANY.

LOOP AT lt_table REFERENCE INTO DATA(ld_row).
  DO.
    ASSIGN COMPONENT sy-index OF STRUCTURE ld_row-&amp;gt;* TO &amp;lt;lv_field&amp;gt;.
    IF sy-subrc &amp;lt;&amp;gt; 0.
      EXIT.
    ENDIF.

    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input = &amp;lt;lv_field&amp;gt;
      IMPORTING
        output = &amp;lt;lv_field&amp;gt;.
  ENDDO.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;Kind regards,&lt;BR /&gt;Mateusz</description>
      <pubDate>Tue, 09 Feb 2021 09:40:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alpha-conversion-on-internal-table/m-p/12368137#M1993496</guid>
      <dc:creator>MateuszAdamus</dc:creator>
      <dc:date>2021-02-09T09:40:26Z</dc:date>
    </item>
  </channel>
</rss>

