4

自動車カテゴリにスキューを追加しようとすると、MWSは在庫にSKUが存在しないと応答し、standard_product_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。商品がAmazon商品カタログにすでに存在しTitle、十分な情報(、、、、、など)を提供できる場合、BrandAmazonはお客様の商品をカタログ内の既存の商品と照合し、を提供することができます。ただし、商品と一致しない場合、Amazonは、提供された情報を使用してカタログに新しいエントリを作成しようとします。その場合、Amazonは商品を完全に定義し、新しい商品を提供するためにを必要とします。ManufacturerMfrPartNumberDepartmentASINstandard-product-idASIN

また、PowersportsのサブカテゴリであるAutomotive、は、すべての新しいエントリにを必要とするstandard-product-idと思います(これらは、と同じupc免除ルールを持っていませんAutomotive)。

于 2013-03-20T16:04:12.013 に答える
1

自動車のカテゴリでさえ、標準の製品IDを必要としないように示されているようです。アカウントは、この要求をバイパスするためにUPC免除を要求する必要があります。

于 2012-11-27T16:53:50.090 に答える