4

当尝试在汽车类别中添加偏差时,MWS 以库存中不存在的 SKU 进行响应,并要求我提供标准产品 ID。我的印象是,对于汽车相关产品,这个要求是没有必要的。以下是发布和返回的数据:

<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
    <Header>
        <DocumentVersion>1.01</DocumentVersion>
        <MerchantIdentifier>XXX</MerchantIdentifier>
    </Header>
    <MessageType>Product</MessageType>
    <PurgeAndReplace>false</PurgeAndReplace>
    <Message>
        <MessageID>1</MessageID>
        <OperationType>Update</OperationType>
        <Product>
            <SKU>0101-3451</SKU>
            <LaunchDate>2012-11-20T00:00:00+01:00</LaunchDate>
            <Condition>
                <ConditionType>New</ConditionType>
            </Condition>
            <NumberOfItems>1</NumberOfItems>
            <DescriptionData>
                <Title>HELMET GP-TECH 5-CONT XS</Title>
                <Description>2-piece dual-density carbon Kevlar construction Ventilated by the IVS (Integrated Ventilation System) which features channels hollowed directly into the shell of the helmet Features a fully removable and washable CoolMax liner Comes with an anti-fog and anti-scratch polycarbonate clear Racer-X visor with tear-off system Replace the shield within seconds without the use of tools Double D-ring chin strap DOT and ECE-2205 certified </Description>
                <MSRP currency="USD">624.95</MSRP>
                <Manufacturer>AVG</Manufacturer>
                <MfrPartNumber>XF0101-3451</MfrPartNumber>
                <ItemType>powersports-helmets</ItemType>
            </DescriptionData>
            <ProductData>
                <AutoAccessory>
                    <ProductType>
                        <Helmet>
                            <Department>unisex-adult</Department>
                            <StyleKeywords>all-weather</StyleKeywords>
                            <SafetyRating>DOT Certified</SafetyRating>
                            <ModelName>HELMET GP-TECH 5-CONT XS</ModelName>
                        </Helmet>
                    </ProductType>
                </AutoAccessory>
            </ProductData>
        </Product>
    </Message>
</AmazonEnvelope>

回复:

<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
    <Header>
        <DocumentVersion>1.02</DocumentVersion>
        <MerchantIdentifier>XXX</MerchantIdentifier>
    </Header>
    <MessageType>ProcessingReport</MessageType>
    <Message>
        <MessageID>1</MessageID>
        <ProcessingReport>
            <DocumentTransactionID>6079239000</DocumentTransactionID>
            <StatusCode>Complete</StatusCode>
            <ProcessingSummary>
                <MessagesProcessed>1</MessagesProcessed>
                <MessagesSuccessful>0</MessagesSuccessful>
                <MessagesWithError>1</MessagesWithError>
                <MessagesWithWarning>0</MessagesWithWarning>
            </ProcessingSummary>
            <Result>
                <MessageID>0</MessageID>
                <ResultCode>Warning</ResultCode>
                <ResultMessageCode>90000</ResultMessageCode>
                <ResultDescription>http://sellercentral.amazon.com/myi/search/ErrorListingsSummary?batchId=6079239000</ResultDescription>
            </Result>
            <Result>
                <MessageID>1</MessageID>
                <ResultCode>Error</ResultCode>
                <ResultMessageCode>8560</ResultMessageCode>
                <ResultDescription>SKU 0101-3451, Missing Attributes standard_product_id. SKU 0101-3451 does not match any ASIN. Creation of a new ASIN requires the following missing attributes: standard_product_id. Feed ID: 0. For details, see http://sellercentral.amazon.com/gp/errorcode/200692370</ResultDescription>
                <AdditionalInfo>
                    <SKU>0101-3451</SKU>
                </AdditionalInfo>
            </Result>
            <Result>
                <MessageID>1</MessageID>
                <ResultCode>Error</ResultCode>
                <ResultMessageCode>13013</ResultMessageCode>
                <ResultDescription>This SKU does not exist in your Amazon inventory so we could not process this record. To correct this error for future feeds, add the SKU to your Amazon account. For more information, see http://sellercentral.amazon.com/gp/errorcode/13013.</ResultDescription>
                <AdditionalInfo>
                    <SKU>0101-3451</SKU>
                </AdditionalInfo>
            </Result>
            <Result>
                <MessageID>1</MessageID>
                <ResultCode>Error</ResultCode>
                <ResultMessageCode>13013</ResultMessageCode>
                <ResultDescription>This SKU does not exist in your Amazon inventory so we could not process this record. To correct this error for future feeds, add the SKU to your Amazon account. For more information, see http://sellercentral.amazon.com/gp/errorcode/13013.</ResultDescription>
                <AdditionalInfo>
                    <SKU>0101-3451</SKU>
                </AdditionalInfo>
            </Result>
        </ProcessingReport>
    </Message>
</AmazonEnvelope>
4

2 回答 2

3

根据我的经验,在某些情况下您可以绕过不指定standard-product-id. 如果该产品已经存在于亚马逊产品目录中,并且您可以提供足够的信息:(TitleBrandManufacturerMfrPartNumberDepartment等),那么亚马逊将能够将您的产品与其目录中的现有产品相匹配,并为您提供ASIN. 但是,如果他们无法匹配您的产品,亚马逊会尝试在他们的目录中使用您提供的信息创建一个新条目。在这种情况下,亚马逊需要 astandard-product-id才能完全定义产品并为您提供新的ASIN.

另外,我相信Powersports, 的子类别对所有新条目都Automotive需要standard-product-id(它们不具有与 相同的 upc 豁免规则Automotive)。

于 2013-03-20T16:04:12.013 回答
1

似乎即使汽车类别显示为不需要标准产品 ID,您的帐户仍需要请求 UPC 豁免才能绕过此请求。

于 2012-11-27T16:53:50.090 回答