<?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: BW Start Routine - error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543791#M1936108</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In BW Info Object maintenance change length &lt;STRONG style="font-size: 13.3333px; color: #333333; background: #ffffff;"&gt;ZSSFPK1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use ALPHA conversion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Transformation rule details in source fields give info object name.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Mar 2016 08:46:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-03-23T08:46:47Z</dc:date>
    <item>
      <title>BW Start Routine - error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543789#M1936106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate if anyone can suggest a way on solving this issue.&lt;/P&gt;&lt;P&gt;Currently I am trying to load data into my Internal table for further uses later.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;however, the codes below have error occurs.&lt;/P&gt;&lt;P&gt;It displayed error:-&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When you use the addition "FOR ALL ENTRIES IN itab", the fields "/BIC/ZSSFPK1" and "LT_DATA-STSMA" must have the same type and the same length.&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lt_data &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;_ty_t_sc_1&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lt_data[] &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;source_package[]&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;lt_data[] &lt;SPAN class="L0S52"&gt;IS &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;NOT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;INITIAL&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SELECT &lt;/SPAN&gt;/bic/zssfpv2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;INTO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;it_rs[]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;/bic/azssfomp200&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ALL &lt;/SPAN&gt;ENTRIES &lt;SPAN class="L0S52"&gt;IN &lt;/SPAN&gt;lt_data[]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;WHERE &lt;/SPAN&gt;/bic/zssfpk1 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lt_data&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;stsma&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;/bic/zssfpk2 &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;lt_data&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;estat&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I well aware of the error is due to &lt;STRONG style="font-size: 13.3333px;"&gt;/BIC/ZSSFPK1&lt;/STRONG&gt; is length&lt;STRONG style="font-size: 13.3333px;"&gt; &lt;/STRONG&gt;15 and &lt;STRONG style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;LT_DATA-STSMA&lt;/STRONG&gt;&lt;/STRONG&gt; is length 8.&lt;/P&gt;&lt;P&gt;but is there a way to make this work without creating a new BW infoObject for staging to make them the same length (8)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 07:31:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543789#M1936106</guid>
      <dc:creator>tnecnivo</dc:creator>
      <dc:date>2016-03-23T07:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: BW Start Routine - error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543790#M1936107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No need of a new InfoObject,, just define a local internal table of type /bic/zssfpk1 in the routine, fill it in a loop from source_package, and use it in the FOR ALL ENTRIES clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 08:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543790#M1936107</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-03-23T08:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: BW Start Routine - error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543791#M1936108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In BW Info Object maintenance change length &lt;STRONG style="font-size: 13.3333px; color: #333333; background: #ffffff;"&gt;ZSSFPK1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use ALPHA conversion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Transformation rule details in source fields give info object name.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 08:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543791#M1936108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-03-23T08:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: BW Start Routine - error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543792#M1936109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No , you don't need to create an infoobjet.&lt;/P&gt;&lt;P&gt;The solution is hereunder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE:&lt;/P&gt;&lt;P&gt;Define a type for lt_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'courier new', courier; font-size: 12px;"&gt;zssfpk1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'courier new', courier; font-size: 12px;"&gt;estat&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'courier new', courier; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;ls_package like line of source_package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT Source_package into ls_package.&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background-position: initial;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; background-position: initial;"&gt;&lt;SPAN class="L0S55" style="font-weight: inherit; font-style: inherit; font-family: inherit; background-position: initial;"&gt; &lt;/SPAN&gt;ls_data&lt;SPAN class="L0S70" style="font-weight: inherit; font-style: inherit; font-family: inherit; background-position: initial;"&gt;-&lt;SPAN style="color: #333333; font-family: 'courier new', courier; font-size: 12px;"&gt;zssfpk1&lt;/SPAN&gt;&lt;/SPAN&gt; = ls_package-stsma.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background-position: initial;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; background-position: initial;"&gt; ls_data&lt;SPAN class="L0S70" style="font-weight: inherit; font-style: inherit; font-family: inherit; background-position: initial;"&gt;-&lt;/SPAN&gt;estat&amp;nbsp;&amp;nbsp; = ls_package-estat.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background-position: initial;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; background-position: initial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; background-position: initial;"&gt; APPEND ls_data to lt_data.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background-position: initial;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; background-position: initial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use lt_table in your selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that will be useful,&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Mustapha,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 14:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bw-start-routine-error/m-p/11543792#M1936109</guid>
      <dc:creator>chabbi_mustapha</dc:creator>
      <dc:date>2016-03-23T14:36:13Z</dc:date>
    </item>
  </channel>
</rss>

