2

MWS を使用して新しい製品を追加しようとしています。使用している XML は次のとおりです。

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<AmazonEnvelope>
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>my merchant id</MerchantIdentifier>
</Header>
<MessageType>Product</MessageType>
<Message>
<MessageID>1</MessageID>
<Product>
<SKU>SKU-TEST-123</SKU>
<StandardProductID>
<Type>ISBN</Type>
<Value>9781235467899</Value>
</StandardProductID>
<LaunchDate>2010-02-17T20:15:58.309+02:00</LaunchDate>
<ReleaseDate>2010-02-17T20:15:58.309+02:00</ReleaseDate>
<DescriptionData>
<Title>My Product</Title>
<Description>Product Description ...</Description>
</DescriptionData>
</Product>
</Message>
</AmazonEnvelope>

処理レポートでエラーが発生しました:

<Result>
<MessageID>1</MessageID>
<ResultCode>Error</ResultCode>
<ResultMessageCode>8060</ResultMessageCode>
<ResultDescription>The Product with SKU [SKU-TEST-123] cannot be matched to an existing product for the following reason: (NEW is not allowed; ). For more details, see http://sellercentral.amazon.com/gp/errorcode/8060</ResultDescription>
<AdditionalInfo>
<SKU>SKU-TEST-123</SKU>
</AdditionalInfo>
</Result>

新製品をアップロードできるはずですよね?SKU に制限はありますか?

4

2 に答える 2

1

MessageID の直後に OperationType を指定する必要があります。例えば:

<MessageID>1</MessageID>
    <OperationType>PartialUpdate</OperationType>
    <Product>
      <SKU>SKU-TEST-123</SKU>
      <StandardProductID>
        <Type>ISBN</Type>
        <Value>9781235467899</Value>
      </StandardProductID>
      <ProductTaxCode>A_GEN_TAX</ProductTaxCode>
      <DescriptionData>
        <Title>My product</Title>
        <Brand>My brand</Brand>
        <Description>My description</Description>
        <MSRP currency="USD">24.03</MSRP>
        <Manufacturer>blah</Manufacturer>
        <SearchTerms>foo</SearchTerms>
        <SearchTerms>bar</SearchTerms>
        <SearchTerms>xyzzy</SearchTerms>
      </DescriptionData>
    </Product>
  </Message>
于 2011-04-26T18:31:40.497 に答える
0

テキストタブ区切りファイルのアップロードで同じエラーが発生します...そのエラーで戻ってくるものはすべて、販売された本、またはデータベースから削除しようとしている本のようです..しかし、それらはまだ外れているようです.いずれかの方法。こちらで SKUを検索してみてくださいhttps://sellercentral.amazon.com/myi/search/ItemSummary.amzn?ref_=sc_site_map_smless_ezdpc_gui_inv&refsrc=sm ファイルがアップロードされたのに、Amazon が奇妙なエラー メッセージを吐き出しているのではないでしょうか?

于 2010-07-07T20:33:57.777 に答える