SD FAQ's required.

Hi ALL
Can any one pleasse provide me SAP-SD FAQ's and SAP-WM material.
Thank you & Regards
Venky.

Hi,
SAP-WM
http://help.sap.com/saphelp_erp60_sp/helpdata/en/c6/f8386f4afa11d182b90000e829fbfe/content.htm
SD FAQ
Read before posting: SD FAQ
Thanks,
Vrajesh

Similar Messages

  • FAQ's required for XI. please help.

    Hi,
    Can any one help me in getting the FAQ's for exchange infrastructure because i am attending the interviews & new to this, and i hardly got any of them.
    Regards,
    Satish.

    Hi Satsh,
    In addition to above check the following
    interview questions
    /thread/358955 [original link is broken]
    Sachin

  • Software Developer position based in LAS VEGAS METRO

    Small company in the Las Vegas Metro area seeks a LabVIEW Software Developer.
    The LabVIEW Software Developer overview:
    The LabVIEW Software Developer position is responsible for developing and troubleshooting LabVIEW software developed for our proprietary hardware.
    The chosen candidate will:
    Develop a deep and broad understanding of our tools and products;
    Develop in-house tools to track customer requests;
    Take ownership of problems and see them through to successful resolution;
    Duties and responsibilities:
    Provide troubleshooting and solutions for existing software releases;
    Work with product engineers to identify and resolve technical software problems, and some hardware problems;
    Involved in developing new features and tools;
    Document frequent issues into scripted processes; create FAQ;
    Document required bug fixes, end-user feature improvements, and operations feature improvements;
    Troubleshoot problems and solve the incidents through a methodical and process based approach;
    Develop User feature notes for customers; create FAQ;
    Commit and contribute to a high level customer satisfaction by providing best in class Support and Service;
    Occasional week night or weekend work may be required depending on release deadlines;
    Qualifications:
    Bachelor degree or equivalent work experience in computer science, electrical engineering, mathematics or computer engineering;
    2-5 years experience solving deployment and support issues is an asset;
    Experience with RF a plus;
    Good general computer knowledge with a strong aptitude for problem solving;
    Experience in software engineering for test platforms or real-time software engineering;
    Able to read engineering design documentation (mechanical, electrical or software);
    1-2 years minimum practical experience with LabVIEW programming;
    Comportments/ Behavior:
    Ability to quickly learn systems;
    Pro-activity, autonomy, self motivated individual;
    A “can do” attitude;
    Diplomacy, open-mindedness, and patience, great listening skills;
    Ability to develop well written documentation;
    Excellent oral and written English communication skills.
    Candidates must have the legal right to live and work in the US.
    This is a full time, direct hire position.
    Position is based in Las Vegas Metro area. Relocation is not provided.
    Please send your resume, cover letter and salary requirements to: [email protected]

    Intaris wrote:
    If I was still living in Ireland, I'd jump at this.
    Shame.
    Shame indeed Shane?
    Beginner? Try LabVIEW Basics
    Sharing bits of code? Try Snippets or LAVA Code Capture Tool
    Have you tried Quick Drop?, Visit QD Community.

  • Sql query with multiple joins to same table

    I have to write a query for a client to display business officers' names and title along with the business name
    The table looks like this
    AcctNumber
    OfficerTitle
    OfficerName
    RecKey
    90% of the businesses have exactly 4 officer records, although some have less and some have more.
    There is a separate table that has the AcctNumber, BusinessName about 30 other fields that I don’t need
    An individual account can have 30 or 40 records on the other table.
    The client wants to display 1 record per account.
    Initially I wrote a query to join the table to itself:
    Select A.OfficerTtitle, A.OfficerName, B.OfficerTitle, B.OfficerName, C.OfficerTtitle, C.OfficerName, D.OfficerTitle, D.OfficerName where A.AcctNumber = B.AcctNumber and A.AcctNumber = C.AcctNumber and A.AcctNumber = D.AcctNumber
    This returned tons of duplicate rows for each account ( number of records * number of records, I think)
    So added
    And A.RecKey > B.RecKey and B.RecKey > C. RecKey and C.RecKey . D.RecKey
    This works when there are exactly 4 records per account. If there are less than 4 records on the account it skips the account and if there are more than 4 records, it returns multiple rows.
    But when I try to l join this to the other table to get the business name, I get a row for every record on the other table
    I tried select distinct on the other table and the query runs for ever and never returns anything
    I tried outer joins and subqueries, but no luck so far. I was thinking maybe a subquery - if exists - because I don't know how many records there are on an account, but don't know how to structure that
    Any suggestions would be appreciated

    Welcome to the forum!
    user13319842 wrote:
    I have to write a query for a client to display business officers' names and title along with the business name
    The table looks like this
    AcctNumber
    OfficerTitle
    OfficerName
    RecKey
    90% of the businesses have exactly 4 officer records, although some have less and some have more.
    There is a separate table that has the AcctNumber, BusinessName about 30 other fields that I don’t need
    An individual account can have 30 or 40 records on the other table.
    The client wants to display 1 record per account.As someone has already mentioned, you should post CREATE TABLE and INSERT statements for both tables (relevant columns only). You don't have to post a lot of sample data. For example, you need to pick 1 out of 30 or 40 rows (max) for the same account, but it's almost certainly enough if you post only 3 or 4 rows (max) for an account.
    Also, post the results you want from the sample data that you post, and explain how you get those resutls from that data.
    Always say which version of Oracle you're using. This sounds like a PIVOT problem, and a new SELECT .... PIVOT feature was introduced in Oracle 11.1. If you're using Oracle 11, you don't want to have to learn the old way to do pivots. On the other hand, if you have Oracle 10, a solution that uses a new feature that you don't have won't help you.
    Whenever you have a question, please post CREATE TABLE and INSERT statements for some sample data, the results you want from that data, an explanation, and your Oracle version.
    Initially I wrote a query to join the table to itself:
    Select A.OfficerTtitle, A.OfficerName, B.OfficerTitle, B.OfficerName, C.OfficerTtitle, C.OfficerName, D.OfficerTitle, D.OfficerName where A.AcctNumber = B.AcctNumber and A.AcctNumber = C.AcctNumber and A.AcctNumber = D.AcctNumber Be careful, and post the exact code that you're running. The statement above can't be what you ran, because it doesn't have a FROM clause.
    This returned tons of duplicate rows for each account ( number of records * number of records, I think)
    So added
    And A.RecKey > B.RecKey and B.RecKey > C. RecKey and C.RecKey . D.RecKey
    This works when there are exactly 4 records per account. If there are less than 4 records on the account it skips the account and if there are more than 4 records, it returns multiple rows.
    But when I try to l join this to the other table to get the business name, I get a row for every record on the other table
    I tried select distinct on the other table and the query runs for ever and never returns anything
    I tried outer joins and subqueries, but no luck so far. I was thinking maybe a subquery - if exists - because I don't know how many records there are on an account, but don't know how to structure that
    Any suggestions would be appreciatedDisplaying 1 column from n rows as n columns on 1 row is called Pivoting . See the following link fro several ways to do pivots:
    SQL and PL/SQL FAQ
    Pivoting requires that you know exactly how many columns will be in the result set. If that number depends on the data in the table, then you might prefer to use String Aggregation , where the output consists of a huge string column, that contains the concatenation of the data from n rows. This big string can be formatted so that it looks like multiple columns. For different string aggregation techniques, see:
    http://www.oracle-base.com/articles/10g/StringAggregationTechniques.php
    The following thread discusses some options for pivoting a variable number of columns:
    Re: Report count and sum from many rows into many columns

  • Allocation of production order to sales order

    Hi Gurus
    Problem: Currently if there is a order that has line item with say a qty of 8 but the production order is to only fill a qty of 7, the allocation is directly given to another order leaving the one it should go to behind. The process keeps happening until there is a production order for 8 or more.
    Kindly suggest me how can we allocate production order quantity to the respective sales order eventhough the production order quantity is lessthan the sales order quantity.
    Thanks,
    JM

    Hi JM
    Here are two URLs which could possibly guide you
    http://sap-helper.blogspot.com/2008/03/availability-check.html
    http://www.saptechies.com/faq-independent-requirements-reductionwithdrawal-quantity/
    Kalpesh

  • SUPPORT APPLICATION ENGINEERING POSITION based in Atlanta

    Averna at a glance:
    Averna delivers industry-leading test solutions and services for communications and electronics device makers worldwide, accelerating product development, quality and innovation.
    Be global@work: Serve international customers and collaborate with colleagues in Canada, the U.S., Mexico, Japan and Hungary.
    Drive innovation@work: Participate in the development of market-leading high-tech products in the telecom, transportation, electronics and multimedia sectors.
    Develop your talent@work: Contribute to thrilling projects that will stretch your skills and talent to the maximum.
    Enjoy success@work: Be part of a fast-growing company with award-winning products and team.
    Share your passion@work: Meet passionate people, enjoy our modern environment and dynamic atmosphere.
    The challenge of the Support Application Engineering position:
    The Support Application Engineering position is responsible for customer technical support and some development activities. The chosen candidate will:
    Develop a deep and broad understanding of Averna tools and products;
    Use the in-house tools to track customer requests;
    Take ownership of problems and see them through to successful resolution;
    Be called to travel about 30% to 50 % of the time.
    Duties and responsibilities:
    Provide primarily first and second tier remote customer support, troubleshooting and solutions for existing customers;
    Diagnose, De-Bug and fix less complicated bugs using but not limited to LabVIEW, TestStand, C, C++,  and/or VHDL;
    Work with senior developers to identify and resolve complicated technical software problems, and some hardware problems;
    Become an Expert User for the Jupiter and Mercury Platform;
    Involved in developing new features and tools;
    Document frequent issues into scripted processes; create FAQ;
    Document required bug fixes, end-user feature improvements, and operations feature improvements;
    Troubleshoot problems and solve the incidents through a methodical and process based approach;
    Reproduce errors reported by clients and escalate to R&D by providing a narrowed down list of possible causes;
    Analyze recurring problems and suggest improvements to Peers in the R&D and Services teams
    Provide thorough root cause analysis to Customers;
    Document troubleshooting flowcharts based on real life scenarios;
    Commit and contribute to a high level customer satisfaction by providing best in class Support and Service;
    Occasional week night or weekend work is required to support customer from different time zones and with urgent requests (approx. 15% of the time).
    Qualifications:
    Bachelor degree in computer science, electrical engineering or computer engineering;
    2-5 years experience solving deployment and support issues is an asset;
    Experience with RF is required; DOCSIS experience is a strong asset;
    Good general computer knowledge (e.g. Windows, TCP/IP networking, FTP) with a strong aptitude for problem solving;
    Experience in software engineering for test platforms or real-time software engineering;
    Able to read engineering design documentation (mechanical, electrical or software);
    Knowledge of broadband and telecommunication industries is an asset;
    Practical experience with LabVIEW, TestStand, TCL programming is an asset;
    Practical experience with MS SQL and MySQL is an asset.
    Comportments/ Behavior
    Ability to quickly learn systems and trouble shoot with the customer live and remotely;
    Pro-activity, autonomy, self motivated individual;
    Likes to interact directly with customers to achieve customer satisfaction with a "can do" attitude, ability to easily establish good relationships with customers;
    Diplomacy, open-mindedness, and patience, great listening;
    Good verbal skills for telephonic work and ability to develop well written documentation;
    Excellent oral and written English communication skills. Chinese Mandarin skills are an asset.
    Please send your resume to [email protected] and mention the title of the position: Support Application Engineering position
    We thank you for your interest towards Averna. Please note that only those candidates being considered for the position will be contacted.

    update : this position is based only in Atlanta

  • Flash Player: IE 6.0 vs. Mozilla Firefox

    When I use IE 6.0, the Flash Player just won’t work. I
    currently use IE 6.0.2800.1106CO SP1. Service Pack 1 is recommend
    for Windows 2000 which I am using. I tried anything from the Adobe
    FAQs:
    -system requirements: ok
    -removed Flash Player using the uninstall file from Adobe
    (all browser windows closed)
    -repaired IE
    -removed and reinstalled IE
    -installed latest version of Flash Player
    -IE: the security level is set at medium: “Download
    signed ActiveX Controls” and “Run ActiveX controls and
    plug-ins” are enabled
    -permissions: ok
    -edited the registry removing the folder “Safe
    Verions”
    -manually removed the kill bit entry from the registry
    The Flash Player did not work one single time when I tried it
    on the test page of Adobe. Just the quotation mark appeared. When I
    browse a site which requires Flash Player, i can just see the
    broken icon symbol. However, IE does not request to download Flash
    Player (The IE setting: “Install on demand” is
    enabled).
    All the control panel displays is: “Adobe Flash Player
    9 ActiveX”. But no file size is shown.
    In Mozilla Firefox, the Flash Player works fine.
    Any ideas how to get Flash Player work with IE? I appreaciate
    any help.

    I think there is information on this very topic in the Flash
    Player
    newsrgoup/forum here.
    Jeckyl

  • Importing XML into CS3

    Hiya!<br /><br />I'm using ID CS3.<br /><br />I'm trying to wrap my head around importing XML, and in particular XML that can change.<br /><br />My test project is an FAQ list.<br /><br />The XML looks like this:<br /><br />><?xml version="1.0" encoding="ISO-8859-1"?><br />><?xml-stylesheet type="text/xsl" href="format_web.xsl" ?><br />><br />><TroubleshootingSection><br />>  <Question><br />>    <Q_Number>1</Q_Number><br />>    <Q_Question>The laptop takes longer and longer to find a network >during bootup.</Q_Question><br />>    <Q_Answer>Check the number of Wireless Profiles and delete any >profiles that aren't in use.  When the laptop searches for a network, it >searches through all the wireless profiles before it chooses one.  Each >profile can take up to a minute to check, so this can add significant >time to the search.  The number of profiles should be kept as low as >conveniently possible - only networks that are accessed on a daily or >near-daily basis.</Q_Answer><br />>  </Question><br />><br />>(more questions)...<br />><br />></TroubleshootingSection><br /><br />The setup is that as the document grows, more questions will be added.<br /><br />In my ID document, I have three textboxes.  I tried tagging the text boxes, but the only otion was "root", so I imported the XML document and THEN tried tagging the text boxes.  They each changed color, so I know SOMETHING'S happened.<br /><br />The textboxes are now tagged (respectively) Q_Number, Q_Question, and Q_Answer.<br /><br />Then I created styles with the exact same names and assigned those styles to the matching text boxes.<br /><br />Then I went into the structure menu and mapped the tags to the styles of the same name.<br /><br />What I would LIKE is to be able to import the XML and either:<br /><br />1. Have it all flow into some sort of text frame such that it would take up as many pages as the evergrowing FAQ might require, or<br /><br />2. Have it flow into ID and make a new page for every question<br /><br />At the moment, though, I'm not sure what I do next.  I've followed a couple of tutorials online and usually at this point, they say either "and in a few clicks, you've got your import!" or "so then I imported the file and it filled all the data fields up."<br /><br />I spent yesterday afternoon trying to figure out HOW to flow the XML data into those text frames, but couldn't get it to work.  I searched the forums for Import XML and only found one person seeming to do the same thing I'm trying to do, and also no answer for her.<br /><br />Advice would be appreciated, and even more appreciated would be any sort of step-by-step.<br /><br />Thanks!<br /><br />Edward

    Oh, that XML just did not format well...<br /><br />Here's another try<br /><br />-=-=-=-=-=-=-<br /><?xml version="1.0" encoding="ISO-8859-1"?><br /><?xml-stylesheet type="text/xsl" href="format_web.xsl" ?><br /><br /><TroubleshootingSection><br />  <Question><br />    <Q_Number>1</Q_Number><br />    <Q_Question>The laptop takes longer and longer to find a network during bootup.</Q_Question><br />    <Q_Answer>Check the number of Wireless Profiles and delete any profiles that aren't in use.  When the laptop searches for a network, it searches through all the wireless profiles before it chooses one.  Each profile can take up to a minute to check, so this can add significant time to the search.  The number of profiles should be kept as low as conveniently possible - only networks that are accessed on a daily or near-daily basis.</Q_Answer><br />  </Question><br />  <Question><br />    ... (more questions)<br />  </Question><br /></TroubleshootingSection>

  • Installation very slow

    Hello everybody,
    I downloaded the auto install of the last Windows 10 TP from the website (not the iso) on Windows 7. Everything was fine at first (Windows update downloaded everything perfectly) but when the PC restarted, the first install process ("Setting Up")
    took me about an half day (1% of Setting Up section by 15 minutes), then the process completed and the pc restarted. Now it seems stuck on "Applying PC settings : 0%"' and at 30% overall process... Is there a solution ? Should I relaunch the whole
    process ? Should I just wait and be really really patient ? :)
    I apologize for my poor english, Armidril.

    Hi Armidni,
    That might be caused by the system hardware.
    You may check the Windows system requirements and make sure the hardware would work:
    http://windows.microsoft.com/en-us/windows/preview-faq-system-requirements-pc
    Another thisng is the installation process might be effected by the old drivers. We may temporary uninstall some plug and play devices (if any), and install them after Windows setup process.
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • In Store Pick Up for foreign visitors

    I am waiting for a particular device which is rumoured to be released at the beginning of September.  I live in Europe and will be visiting NYC around the time of the release.  Is there anything stopping me from buying this item at a Best Buy Store when I am in NYC?  I realise that BB only ships to certain countries and am wondering if BB only sells to customers in their stores from those countries.  Is this the case?  Also if I were to pick up a purchase from a BB store, would my passport be accepted as an ID document.  Obviously I don't have a US Government Issued ID which, as stated in the FAQ, is required for In Store Pickups.

    Hi Mister-B,
    It looks like MMaier has all the basics covered, but there's one thing I'd like to add: remember that international customers must provide a specific billing address at the time of checkout when placing an order on BestBuy.com. This address and other FAQs are available through the link above, so I'd encourage you to check it out if you haven't already done so.
    Don't hesitate to let us know if you have any other questions!
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Forecast Consumption Reduces Planned Quantity

    All, I would appreciate the Community's feedback with regards to why we are seeing the forecast (Planned Qty in RRP3) reduced.
    A number of examples have been identified where the forecast quantity has been reduced by the withdrawn quantity and the Remaining Quantity reflects the Planned Quantity.
    We are more used to seeing the forecast remain as per the DP forecast but Remaining Quantity reducing by the sum of allocated quantity and withdrawal quantity.
    Columns represent From and To dates, Plan Qty (Forecast from DP), Withdrawals, Allocated, Remaining Plan Qty.
    Row 1 is the reduced forecast which when released to SNP = 516 for the w/c 04.08.2014
    04.08.2014
    10.08.2014
    342
    174
    0
    342
    11.08.2014
    17.08.2014
    26
    0
    0
    26
    18.08.2014
    24.08.2014
    1,209
    0
    0
    1,209
    25.08.2014
    31.08.2014
    184
    0
    0
    184
    01.09.2014
    07.09.2014
    561
    0
    0
    561
    08.09.2014
    14.09.2014
    1,499
    0
    0
    1,499
    15.09.2014
    21.09.2014
    956
    0
    0
    956
    We have a number of examples like this but the more conventional reduction of Remaining Planned Quanity is the norm'.
    Thanks for any feedback.

    Hi Chris,
    Take a look of this old SAP note (it for R/3, but maybe you can find the reason):
    772857
    - FAQ: Independent requirements reduction/withdrawal quantity
    Question 9: What are common reasons for the reduction not  occurring?
    Response:
    For planning strategies with planned independent requirements consumption: Have the prerequisites for the consumption been fulfilled (see Note 772856)? Were there independent requirements quantities to be reduced at the time of the goods movement in the forward/backward consumption periods (planning quantity > 0)?
    For goods movements from inventory management (MM): Is the 'Independent requirements reduction' (PABKZ) indicator set for the movement type (transaction OMJJ)?
    For goods movements from SD (for example, transaction VL02) for reducing the make-to-stock production (requirements type LSF): Is the 'Requirement reduction' (PABKZ) indicator set in the requirements class of the customer requirement (transaction OVZG)?
    For stock transfers/transfer postings: A reduction does not occur for stock transfers in a planning segment. Only stock transfers between different plants, MRP areas and planning segments can reduce planned independent requirements.
    Is an MRP type that provides 'Reorder point planning', 'Forecast-based planning' or 'No material requirements planning' set for the material? See the modification of Note 68641 if you want to allow the reduction for these materials.
    Hope this helps,
    Kind Regards,
    Mariano

  • Getting duplicates sent to my Centro from Gmail using "recent:" mode

    Hello all,
    I have the Centro on Sprint and am using VersaMail v4.0.1.  I have 3 POP email accounts set up on this phone.  One of them is an account through GoDaddy, the other two are through Google (Gmail).  I also retrieve emails on my laptop for all three accounts so it is important that when my phone retrieves emails that it keeps them on the server until I retrieve them on my laptop, at which time they are removed from the server and stored locally on my laptop.
    Here's my dilemma, even with the "Leave mail on server..." box checked in my [email->preferences->Server] options on the Centro the Gmail accounts do not leave them on the server.  Gmail FAQ's require I add the word "recent:" in front of my gmail account username (see: http://mail.google.com/support/bin/answer.py?hl=en​&answer=47948) to leave emails on the server.  The "recent:" mode fetches the last 30 days of mail, regardless of whether it's been sent to another POP client already.  The problem is that it not only leaves emails on the server but it downloads all sent emails to my Centro inbox so my centro inbox gets buried in my own sent emails.  My laptop does not get these 'sent' emails delivered to the inbox.
    I realize this is possible a Gmail issue and I've searched their FAQ's and forums with no luck so thought I'd post here to see if anyone else is experiencing this.
    Thanks in advance,
    -Mike
    Post relates to: Centro (Sprint)

    Thanks, thetreoguy.  Even though Gmail doesn't list any PALM devices as IMAP supported I just used the generic instructions for setup and was able to send/receive a test message and a duplicate of the sent message did NOT show up in my inbox (YESSS!!!).  (see: http://mail.google.com/support/bin/answer.py?ctx=%​67mail&hl=en&answer=75726 for the list I'm referring to and link to the generic instructions).  Thanks for the advice...all those duplicates were driving me crazy!
    -mike
    Post relates to: Centro (Sprint)

  • Connection Speeds

    I have Wild Blue satellite high speed technology. I'm wondering if this type of technology is capable of being able to use the isight, even if not to full extent, but I'd love to get it to work.
    I download at about 150kbps and can upload at 100kbps. Are these speeds good enough? Is there something wack about satellite?
    Also, I have the old model version of the 23" HD monitor. Not the new ones they released that match the G5. Can I mount on those?

    Hello Larry,
    Welcome to Apple Discussions.
    I'm wondering if this type of technology is capable of being able to use the isight, ...
    I assume that means that you want to use iSight with the iChat AV application. There are others -- Some Applications you can use with iSight FAQ. Requirements for each are available at their respective links.
    If you are interested in iChat AV,
    b what Bill says
    for iChat AV 3 (if you use Tiger.)
    Just FYI -- You can add YOUR system/OS info to your Discussions "Preference" (immediately below the "Logout" link) to save you from needing to type it every time.
    For iChat 2.1, if you use Panther, see Apple's System Requirements for iChat AV 2.1.
    If the speeds you are from a reliable speed test site, you should do fine for Mac to Mac video with iChat AV 2.1. As you can see, iChat AV 3 needs significantly more speed for best performance.
    What kind of broadband service you use is not important. How much broadband speed you have is what matters. For more info on broadband speed requirements, see the Have You Enough Broadband Speed For iChat ? FAQ.
    If you are a new user you might find other information of interest in the iChat AV Frequently Asked Questions (FAQ) and the iSight Tips and FAQ.
    EZ Jim

  • Will my pc support windows 10 update?

    I HAVE HP WINDOWS 7 HOME PREMIUM RATING 3.4 PENTIUM (R) DUAL-CORE,  2.60 GHZ, RAM 4.00 GB, SYSTEM 64-BIT O.SO.

    Here are a couple of links to help you out. The first link tells you what the system requirements are while the second link will take you to an upgrade advisor that was actually written for Windows 8, but Windows 10 has the same requirements.
    http://windows.microsoft.com/en-us/windows/preview-faq-system-requirements-pc
    http://windows.microsoft.com/en-us/windows-8/upgrade-assistant-download-online-faq

  • Upgrading from windows 8.1 with media center to 10

    running in to an issue where windows 8.1 with media center can't upgrade to windows 10. when running the update troubleshooter, getting error 'PC is running an enterprise or volume licensed version of Windows 8 and cannot be updated using Windows Store" 
    though when running the license verifier it lists the license as a windows WMC retail version. is the issue just because it has a windows media center license? someone help please. thanks

    running in to an issue where windows 8.1 with media center can't upgrade to windows 10. when running the update troubleshooter, getting error 'PC is running an enterprise or volume licensed version of Windows 8 and cannot be updated using Windows
    Store"  though when running the license verifier it lists the license as a windows WMC retail version. is the issue just because it has a windows media center license? someone help please. thanks
    Important notes      
    http://windows.microsoft.com/en-ca/windows/preview-faq-system-requirements-pc
    excerpt:
    If you have Windows 8 Pro with Media Center and you install the preview, Windows Media Center will be removed.
    Windows 10: If you're using the Technical Preview, don't install Media Center
    http://www.neowin.net/news/windows-10-if-youre-using-the-technical-preview-dont-install-media-center
    excerpt :
    One such feature that is absent from the Technical Preview is Windows Media Center, but some users have restored this feature by using the product key that they purchased for use in Windows 8.1. Unfortunately, this has created some issues for these users,
    which has led Microsoft to caution against doing this. 

Maybe you are looking for