<?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: Create SAP Product Hierarchy (via SAP Connector latest version) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-SAP-Product-Hierarchy-via-SAP-Connector-latest-version/m-p/1239141#M1230760</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Atsushi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would be the Extractor connector an Option?&lt;/P&gt;&lt;P&gt;Maybe these extractors might be an Option:&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;0MATERIAL_LGEN_HIER&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;0MATERIAL_LKLS_HIER&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;0MATERIAL_LPRH_HIER&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;There are some script parts provided by using the Extractor Connector supports you building the hierarchies.&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;You might check the result of these in RSA3 if they are already available in the SAP System.&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;Otherwise it might be actiavated via SBIW.&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;Regards,&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;Tobias&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;========&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jan 2017 15:18:45 GMT</pubDate>
    <dc:creator>tobivogt</dc:creator>
    <dc:date>2017-01-26T15:18:45Z</dc:date>
    <item>
      <title>Create SAP Product Hierarchy (via SAP Connector latest version)</title>
      <link>https://community.qlik.com/t5/QlikView/Create-SAP-Product-Hierarchy-via-SAP-Connector-latest-version/m-p/1239140#M1230759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus, I would like to enquire if anyone has attempted to create Product Hierarchy table as dimention?&lt;/P&gt;&lt;P&gt;*I am using SAP Connector, latest version (as of now).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is known that SAP's MVKE | T179 tables can be used to create hierarchy. An ABAP programmer uses&amp;nbsp; bapi_material_get_producthier.&lt;/P&gt;&lt;P&gt;But would we able to create the pre-processing table using HIERARHY() using SAP's base tables only?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[In my SAP environment]&lt;/P&gt;&lt;P&gt;*Under current project, this statement appears works, but I would like to have your opinion. &lt;/P&gt;&lt;P&gt;**It seems it is not possible to obtain unsorted tuples of &lt;SPAN style="font-size: 13.3333px;"&gt;T179. It somehow is extracted sorted by T179~&lt;SPAN style="font-size: 13.3333px;"&gt;STUFE&lt;/SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate pBase_0:&amp;nbsp; SQL SELECT PRODH STUFE from T179;&lt;/P&gt;&lt;P&gt;NoConcatenate pBase_1: LOAD RowNo() as Index,* resident pBase_0 order by PRODH, STUFE; &lt;/P&gt;&lt;P&gt;drop table pBase_0;&lt;/P&gt;&lt;P&gt;Left Join(pBase_1)&amp;nbsp; SQL Select PRODH VTEXT from T179T; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate ProductHierarchy: &lt;/P&gt;&lt;P&gt;&amp;nbsp; Load *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Level=Peek(Level), Peek(Parent), previous(PartNo) ) as Parent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&amp;nbsp; Index, PRODH as PartNo, STUFE as Level, VTEXT as Description resident pBase_1&lt;/P&gt;&lt;P&gt;&amp;nbsp; order by Index&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;drop table pBase_1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*T179 appears like BOM (Bill of Material). Would MVKE merely a link between Product Hierarhy (PRODH) and Material Number (MATNR)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;EM&gt;&lt;STRONG&gt;pre-processing table&lt;/STRONG&gt;: HIC has posted QlikView Design Blog: '&lt;SPAN style="text-decoration: underline;"&gt;Authorization using a Hierarchy'.&lt;/SPAN&gt; This method can be used to port to fact table directly from this hiearchy dimention (i.e. it first load with hierarchy, then load HierarchyBelongsTo, then final creation of dimention table using hierarchy again). &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should highly appreciate for your feedback in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 21:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-SAP-Product-Hierarchy-via-SAP-Connector-latest-version/m-p/1239140#M1230759</guid>
      <dc:creator>atsushi_saijo</dc:creator>
      <dc:date>2026-01-26T21:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Create SAP Product Hierarchy (via SAP Connector latest version)</title>
      <link>https://community.qlik.com/t5/QlikView/Create-SAP-Product-Hierarchy-via-SAP-Connector-latest-version/m-p/1239141#M1230760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Atsushi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;would be the Extractor connector an Option?&lt;/P&gt;&lt;P&gt;Maybe these extractors might be an Option:&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;0MATERIAL_LGEN_HIER&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;0MATERIAL_LKLS_HIER&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;0MATERIAL_LPRH_HIER&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;There are some script parts provided by using the Extractor Connector supports you building the hierarchies.&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;You might check the result of these in RSA3 if they are already available in the SAP System.&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;Otherwise it might be actiavated via SBIW.&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;Regards,&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;Tobias&lt;/P&gt;&lt;P style="margin: 0px 0px 8px; color: #444444; text-indent: 0px; font-family: BentonSans, Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal;"&gt;========&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2017 15:18:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-SAP-Product-Hierarchy-via-SAP-Connector-latest-version/m-p/1239141#M1230760</guid>
      <dc:creator>tobivogt</dc:creator>
      <dc:date>2017-01-26T15:18:45Z</dc:date>
    </item>
  </channel>
</rss>

