Extracting Article hierarchy

Hi team,
An Article hierarchy is creted in the R/3 side.Can we extract the hieharchy structure into the BW side,so that there is no need of creating the hierarchy structure in the BW again.
If possible,please let me know the process in detail.
Thanks & Regards,
Lalitha
09884412098

Refer to Note 1057019

Similar Messages

  • Article hierarchy data

    Hi Guru's,
    I need to extract data from Article hierarchy data source. Could you please let me know the settings what i have to do in ECC for extracting article hierarchy data.
    Thanks in advance....
    Thanks,
    Vijay.

    Hi Vijay,
    Have a look at below doc.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/a4/b25641988e8247e10000000a1550b0/content.htm
    Regards,
    Venkatesh

  • BW Extraction Error_Article Hierarchy

    Hi SAP friends,
    While performing the article hierarchy copy function activity, we got an error.
    BW extraction: Incorrect update of node Y-XXXX
    We used the tcode WMATGRP06N to perform the copy function activity.. This error is getting only for specific nodes.
    Can any one help us in solving this issue.
    Thanks
    Kevin Easaw.

    Hi Kevin,
    Please refer the below notes for reference,
    1771842 - WMATGRP06N - Not all Child Nodes are copied
    1933533 - WMATGRP06N : Reassigning of Nodes in a Time Independent hierarchy
    Thanks and Regards,
    Ramesh D

  • Issues in using LSMW IDOC method for Article Hierarchy

    Hi Experts,
    I am working on a scenario for uploading article hierarchy using LSMW idoc method.
    Details:
              Message type WMATGRP
              IDoc type WMATGRP01
    But as per my understanig, for processing, there should be a inbound Function module/Process code. But I am unable to find out any process code for this in tcode WE42/We60.
    Could you please help in this problem.
    Regards
    Krishan Kumar

    Hi Saeed,
    For example if you want t create bom through lsmw then we will *** two files one header and other item one.In the same way .In lsmw start by keeping the idoc method i will only propose at second step how many files it need. Just map the idoc and see. Post if need more help.
    Regards,
    Madhu.

  • Mass upload of articles to article hierarchy

    Hi,
    We want to use LSMW using IDOC methodology to assign articles to article hierarchy. Can anybody help us to get this done?
    We are wokring on SAP IS-R 620 verson.
    We are trying message type WMATGRP but not able to use the same.
    Thanks and Rgds
    Umesh Rathi
    Edited by: SAP RETAIL on Sep 14, 2010 10:27 AM

    Hi Vikrant,
    There are two ways of Uploading the mass files in a single way
    First one: "Portal Drive" and another one is WebDev so you can follow both the process of uploading bunch number of files in portal content server.
    WebDav process
    Click on Repository ->details> Setting> Access Link-> Copy the WebDav path and paste it into address bar of the Explorer
    Than click on Webdav and enter the username and password than you can easily entered the directory and paste the file easily.
    Portal Drive
    Mention the Exact path in the Server URl -> Go to Work Online--> than they require Username and password after that they
    can directly enter into the server where you can store ur file.
    This will helpful to you.Or If you need my help in portal drive so i can write the step by step.
    Regards
    RS

  • Extract the hierarchy in Parent child format from HP

    Hello,
    I have a hierarchy within Accounts dimension which I need to move to the other application in the different environment. I donot want to move the whole dimension. I just need to move a hierarchy. Is there a way I can extract a hierarchy in Parent child format with properties and move the same in to the next one.
    Thanks in advance for your help.
    Cheers,
    XXX

    Hi,
    Below code assumes that you have 2 alias tables and assymetric hierarchy (having 4 to 6 levels) in accounts and all level 0 accounts are 6 digits. If you wish to remove the second alias table from the code simply remove references to it (i.e. aliastbl_id=50030). You can customize the extract top level member by modifying this section: (select object_id from hsp_object where object_name='Total Expenditure')
    This outputs the structure in a fixed columnar format having all levels in different columns.
    Code:
    select o1.object_name as LVL1, o1.object_name as LVL1_DESC_EN, al1.object_name as LVL1_DESC_AR,
    o2.object_name as LVL2, o2.object_name as LVL2_DESC_EN, al2.object_name as LVL2_DESC_AR,
    o3.object_name as LVL3, al3.object_name as LVL3_DESC_EN, alar3.object_name as LVL3_DESC_AR,
    o4.object_name as LVL4, al4.object_name as LVL4_DESC_EN, alar4.object_name as LVL4_DESC_AR,
    o5.object_name as LVL5, al5.object_name as LVL5_DESC_EN, alar5.object_name as LVL5_DESC_AR,
    o6.object_name as LVL6, al6.object_name as LVL6_DESC_EN, alar6.object_name as LVL6_DESC_AR
    from hsp_object o1
    left outer join (select * from hsp_alias where aliastbl_id=50030) a1 on o1.object_id=a1.MEMBER_ID left outer join hsp_object al1 on a1.alias_id=al1.object_id
    inner join hsp_object o2 on o1.object_id=o2.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=50030) a2 on o2.object_id=a2.MEMBER_ID left outer join hsp_object al2 on a2.alias_id=al2.object_id
    inner join hsp_object o3 on o2.object_id=o3.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a3 on o3.object_id=a3.MEMBER_ID left outer join hsp_object al3 on a3.alias_id=al3.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar3 on o3.object_id=ar3.MEMBER_ID left outer join hsp_object alar3 on ar3.alias_id=alar3.object_id
    inner join hsp_object o4 on o3.object_id=o4.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a4 on o4.object_id=a4.MEMBER_ID left outer join hsp_object al4 on a4.alias_id=al4.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar4 on o4.object_id=ar4.MEMBER_ID left outer join hsp_object alar4 on ar4.alias_id=alar4.object_id
    inner join hsp_object o5 on o4.object_id=o5.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a5 on o5.object_id=a5.MEMBER_ID left outer join hsp_object al5 on a5.alias_id=al5.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar5 on o5.object_id=ar5.MEMBER_ID left outer join hsp_object alar5 on ar5.alias_id=alar5.object_id
    inner join hsp_object o6 on o5.object_id=o6.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a6 on o6.object_id=a6.MEMBER_ID left outer join hsp_object al6 on a6.alias_id=al6.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar6 on o6.object_id=ar6.MEMBER_ID left outer join hsp_object alar6 on ar6.alias_id=alar6.object_id
    where o1.object_id =(select object_id from hsp_object where object_name='Total Expenditure') and
    LENGTH(o6.object_name)=6
    union all
    select o1.object_name as LVL1, o1.object_name as LVL1_DESC_EN, al1.object_name as LVL1_DESC_AR,
    o2.object_name as LVL2, o2.object_name as LVL2_DESC_EN, al2.object_name as LVL2_DESC_AR,
    o3.object_name as LVL3, al3.object_name as LVL3_DESC_EN, alar3.object_name as LVL3_DESC_AR,
    o4.object_name as LVL4, al4.object_name as LVL4_DESC_EN, alar4.object_name as LVL4_DESC_AR,
    o5.object_name as LVL5, al5.object_name as LVL5_DESC_EN, alar5.object_name as LVL5_DESC_AR,
    o5.object_name as LVL6, al5.object_name as LVL6_DESC_EN, alar5.object_name as LVL6_DESC_AR
    from hsp_object o1
    left outer join (select * from hsp_alias where aliastbl_id=50030) a1 on o1.object_id=a1.MEMBER_ID left outer join hsp_object al1 on a1.alias_id=al1.object_id
    inner join hsp_object o2 on o1.object_id=o2.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=50030) a2 on o2.object_id=a2.MEMBER_ID left outer join hsp_object al2 on a2.alias_id=al2.object_id
    inner join hsp_object o3 on o2.object_id=o3.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a3 on o3.object_id=a3.MEMBER_ID left outer join hsp_object al3 on a3.alias_id=al3.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar3 on o3.object_id=ar3.MEMBER_ID left outer join hsp_object alar3 on ar3.alias_id=alar3.object_id
    inner join hsp_object o4 on o3.object_id=o4.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a4 on o4.object_id=a4.MEMBER_ID left outer join hsp_object al4 on a4.alias_id=al4.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar4 on o4.object_id=ar4.MEMBER_ID left outer join hsp_object alar4 on ar4.alias_id=alar4.object_id
    inner join hsp_object o5 on o4.object_id=o5.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a5 on o5.object_id=a5.MEMBER_ID left outer join hsp_object al5 on a5.alias_id=al5.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar5 on o5.object_id=ar5.MEMBER_ID left outer join hsp_object alar5 on ar5.alias_id=alar5.object_id
    where o1.object_id =(select object_id from hsp_object where object_name='Total Expenditure') and
    LENGTH(o5.object_name)=6
    union all
    select o1.object_name as LVL1, o1.object_name as LVL1_DESC_EN, al1.object_name as LVL1_DESC_AR,
    o2.object_name as LVL2, o2.object_name as LVL2_DESC_EN, al2.object_name as LVL2_DESC_AR,
    o3.object_name as LVL3, al3.object_name as LVL3_DESC_EN, alar3.object_name as LVL3_DESC_AR,
    o4.object_name as LVL4, al4.object_name as LVL4_DESC_EN, alar4.object_name as LVL4_DESC_AR,
    o4.object_name as LVL5, al4.object_name as LVL5_DESC_EN, alar4.object_name as LVL5_DESC_AR,
    o4.object_name as LVL6, al4.object_name as LVL6_DESC_EN, alar4.object_name as LVL6_DESC_AR
    from hsp_object o1
    left outer join (select * from hsp_alias where aliastbl_id=50030) a1 on o1.object_id=a1.MEMBER_ID left outer join hsp_object al1 on a1.alias_id=al1.object_id
    inner join hsp_object o2 on o1.object_id=o2.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=50030) a2 on o2.object_id=a2.MEMBER_ID left outer join hsp_object al2 on a2.alias_id=al2.object_id
    inner join hsp_object o3 on o2.object_id=o3.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a3 on o3.object_id=a3.MEMBER_ID left outer join hsp_object al3 on a3.alias_id=al3.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar3 on o3.object_id=ar3.MEMBER_ID left outer join hsp_object alar3 on ar3.alias_id=alar3.object_id
    inner join hsp_object o4 on o3.object_id=o4.Parent_ID
    left outer join (select * from hsp_alias where aliastbl_id=14) a4 on o4.object_id=a4.MEMBER_ID left outer join hsp_object al4 on a4.alias_id=al4.object_id
    left outer join (select * from hsp_alias where aliastbl_id=50030) ar4 on o4.object_id=ar4.MEMBER_ID left outer join hsp_object alar4 on ar4.alias_id=alar4.object_id
    where o1.object_id =(select object_id from hsp_object where object_name='Total Expenditure') and
    LENGTH(o4.object_name)=6
    Cheers,
    Alp

  • Article Hierarchy in IS retail

    Hi,
    I am inserting articles in the article hierarchy through a BAPI (BAPI_WRF_MATGRP_CHANGE) from an excel file which is assigning the articles correctly to the required node.
    My problem is :  I need to insert 2 nodes ( for MC and GBB) in this hierarchy. This data is also maintained in that excel.
    Need help .
    Thanks
    Amit
    Edited by: Matt on Feb 5, 2009 10:32 AM - "urgently" isn't allowed.
    Edited by: Amit Sinha on Feb 5, 2009 3:05 PM

    Hi Amit,
    How did you pass the data into this BAPI . Could you provide one sample. I am having a tough time using this BAPI.
    Appreciate your help.

  • BW Problem Extracting Custom Hierarchy

    Hello Experts,
    I have built a completely new hierarchy of new custom master data in R3. I then have used BW07 to create a datasource to extract the hierarchy data with no problems.
    I have then created a new infoobject in BW and I have successfully loaded the master data. However when I assign the new Hierarchy datasource it shows the transfer structure with my infobject but with length 0 rather than the correct 8. 
    When I then perform a data load I get error the error "Syntax error in generated program, row 33". Looking at the code it has indeed got a data element defined with length 0.
    What am I doing wrong? Everything seems to be generated, replicated and active. Any help will be greatly appreciated. I cant find anything similar on OSS and I would have thought this was basic functionality.

    I have found the answer to this problem.
    If the data element the hierarchy datasource is based on does not have a domain BW07 will not pick up the length of the field.
    I here by award myself 2 Gold stars

  • Creation of Article Hierarchy

    Hi Experts,
    Would like to take your sugestion in creation of Article Hierarchy.
    I am creating Article Hierarchy  B1, by using transation WMATGRP01 and entering in the screen of creation of Article Hierarchy and when i am giving to create a Hierarchy Node the system is automatically generating the Hierarchy Node number, which i want to enter manually as per client"s requirement. Please advice how to create the hierarchy node manually.
    Best Regards
    Javeed Ahamed.M
    SAP-MM Consultant

    Hi Javeed,
    It could be due to External Number Assignment not checked
    Goto:
    IMG>Logistics - General>Article Hierarchy-->Edit Hierarchy Levels
    and check the external no. assignment.
    See if the problem resolves.
    Hope it helps.
    Regards,
    Anirban Roy

  • Changing Activated Article Hierarchy Structure

    Hi Experts,
    Is it possible to change Activated Article Hierarchy in IS Retail ECC 6.0.
    When i try to do in Tcode: WMATGRP02, system is throwing following Error Message.
    "" Only limited changes are possible to active article hierarchies     Message no. RTCMMD058
    Diagnosis
        Every change to an active material hierarchy has a direct impact on the
        applications that use the data of an active hierarchy (for example,
        merchandise planning, assortment planning, reporting, etc.)
        Only limited changes to active material hierarchies are possible.
        Changes are only allowed to the material assignment.
        Node assignments can be displayed. ""
    Any Input is highly appreciated.
    Thanks and Regards,
    Selvakumar. M

    hi Selva, I'm curious on how the above has been resolved. I'm new to Retail and would like to get your inputs on whether an active hierarchy can still be changed and if so, what are the steps (trying to add another level to an existing node, e.g. new sub-department under an existing department). Appreciate your inputs. Thanks!

  • Error in extracting 0PROFIT_CTR hierarchy data

    Hi,
    I was trying to extract 0PROFIT_CTR Hierarchy. But it is giving following error msg. So guide me how to solve it.
    Error in the hierarchy structure: see error log
    The node name for ID 00001634 contains invalid characters

    Hello,
    The value for Master data has invalid chars, So please correct it and then try again.
    Thanks
    Chandran

  • Article hierarchy in article master

    Hi
    While creating article master, in basic data view system populates a article hierarchy by default and its not editable. let me knowthe configuration setting bejind this
    regards
    Satyaprasad

    Hello,
    Perhaps the following Article Hierarchy Data transactions can help...
    WMATGRP01 - Create
    WMATGRP02 - Change
    WMATGRP03 - Display
    WMATGRP04 - Delete
    WMATGRP05 - Activate
    WMATGRP06 - Copy
    WMATGRP07 - Deactivate
    WMATGRP08 - Simulate
    WMATGRP10 - Reorganize
    WMATGRP11 - Export
    Regards
    Olivia

  • Extracting Territory Hierarchy into BW

    All - I am hoping someone may be able to help out with this issue.
    Within the 0CRM_TR info object, the hierarchies are set up to be time-dependent.  This means that they are valid for a specific time.
    When we created our infopackage to load data, all hierarchies are set up to be valid for only 1 month. 
    First question:
    1.  Is there a way to load a hierarchy and have the validitiy period valid until 12/31/9999.
    Also, I attempted to create a generic hierarchy that has validity dates from now until 12/31/9999, the only problem with that is that I cannot figure out how to load it.  The hierarchy does not show up in the infopackage for 0CRM_TR.
    Second Question:
    2.  If we cannot load into a hierarchy that has a valid to date of 12/31/9999, how can we get queries to identify which hierarchy is the valid one.  Currently we created a restricted variable for Territory and its pointing to this month's valid hierarchy.  We do not want to have to update queries on a monthly basis.
    Any help would be appreciated.
    Luis

    Hello,
    I know this is a very late reply, but here is the solution
    a. Implement note 887201 on the CRM side. This would make the infopackage extract the hierarchy valid on a certain date ( infopack execution date) and set its validity to only one day.. Dont Panic!
    b. Make the Hierachy structure in BW time-dependent.( currently the hierachy is time dependent)
    This should solve your problem
    Venkata

  • ARTMAS and article hierarchy

    Dear All.
    Who know how to assign article to the article hierarchy when used ARTMAS for migration article from external system to
    SAP IS-R ECC6?
    If artmas not support such a possibility, then what an opportunity there?

    Hello,
    I don't know about ARTMAS,
    but I have used simple report importing data from excell  (stored as assignment (segmentID , articleID) ) 
    and using a FM BAPI_WRF_MATGRP_CHANGE.
    Kind regrads,
    Jolanta

  • Differences between Article Hierarchy and Merchandise Category

    Hai Gurus,
    Can somebody distinguish the differences between the Article Hierarchy and Merchandise Categotry? Which one is better to use? Both seems to have a similiar functionality but why SAP had proposed Article hierarchy and Merchandise category seperately?

    Hi Voyeurhuman,
    if you have not typed correctly, then you might be interested to know the difference between Articel hierarchy & Merchandise hierarchy.
    pls go thru following: 
    Article Hierarchy
    .grouping of articles with sales oriented approach
    .customer oriented structure
    .Consumer decision Tree
    .maximum eight levels
    .planning hierarchy used for sales plannng in MAP
    .multiple no. of  Article hierarchies at a time with schedule article hierarchy i.e. with time dependent functionality
    .can be define for distrubution chain dependent
    .can be transported to BI
    .data can be imported as wellas exported using interfaces
    .sub structure of one can be copied from one to another
    .Major characteristics-->responsibility, reference assignment, price point group assignmnet, merchandise distributio(fashion/basic), role,strategy/
    .multiple assignment of articles is not possible within same category
    .it can be assigned to department store and shops with pre-requisite of multiple assignment checked
    Merchandise Hierarchy
    .its a purchase oriented approach
    .it classify and structure all aspects of the merchandise
    .purchaser decision tree
    .An unlimited number of hierarchy levels is possible
    .terms are used in merchandise category hierarchies
         -Merchandise category hierarchy levels
         -Merchandise category hierarchies
         -Characteristics profiles
    .All the elements in the merchandise category hierarchy are defined as classes(class 026)
    Both Article & Merchandise Hierarchies are very much different. Both are meant for differnt purposes.
    thanks,
    Naresh Kumar
    Edited by: Naresh_ISR on Feb 17, 2010 10:47 AM
    Edited by: Naresh_ISR on Feb 17, 2010 10:48 AM

Maybe you are looking for

  • How can I transfer my iOS update to another iPad?

    How can I transfer my iPad  iOS update download to my wife's computer so that she can update without having to download the update all over again?

  • Error while creating Academic calendar

    Hi experts, While creating the academic year getting the below error please suggest how to resolve this. Reagards, Prashanti Swain

  • I dropped my ipod in water now it won't work help

    I dropped my ipod in water and now it says its needs to be plugged in to itunes but when it is it says its still not and it won't respond what do i do

  • Photo Gallery - Load Detail Image

    How can I load a different image other than the first one listed in the XML file? Example, let's say I have 20 photos in my XML file. The first detail image (large) to load is the first one in the list, how can I show the 15th one in the list when th

  • [solved] Make content fit the TitleWindow's size proportionally

    Hi everyone, I have a component which has the super class TitleWindow. It's basically used as a popUp for my application. So it receives a file name and adds it to the popUp using the MXML tag Image. This content received is a SWF file, and I had no