2013-05-15 2 views
0

구매자가 내 펀치 아웃 카탈로그에서 견적/주문을 검색 할 때 견적을 유지 보수하는 방법을 알아 내려고하고 있습니다.견적 문의 punchout의 참조

나는 이것이 의미하는 바는 공급 업체 카탈로그가 "PunchoutOrderMessage"에서 구매자의 요 청 시스템으로 제품을 되돌려 보낼 때 공급 업체가 견적 ID를 입력 할 수있는 곳이 없음을 의미합니다. 나는 cxml 스펙을 살펴 봤지만 아무 것도 안 볼거야. 내가 놓친 게 있니?

샘플 "punchoutordermessage"를 포함 시켰습니다. 누가 구매자에게 견적 ID를 보내는 지 알아낼 수 있습니까?

<?xml version="1.0" encoding="utf-8"?> 
<!DOCTYPE cXML SYSTEM "http://xml.cxml.org/schemas/cXML/1.2.014/cXML.dtd"> 
<cXML payloadID="2008-12-24T10:46:32-06:[email protected]" xml:lang="en-US" timestamp="2008-12-24T10:46:32-06:00"> 
    <Header> 
    <From> 
     <Credential domain="NetworkId"> 
     <Identity>testcompany</Identity> 
     </Credential> 
    </From> 
    <To> 
     <Credential domain="NetworkId"> 
     <Identity>testsite</Identity> 
     </Credential> 
    </To> 
    <Sender> 
     <Credential domain="www.testsite.com"> 
     <Identity>PunchoutResponse</Identity> 
     </Credential> 
     <UserAgent>PunchoutSite</UserAgent> 
    </Sender> 
    </Header> 
    <Message> 
    <PunchOutOrderMessage> 
     <BuyerCookie>PSFT_2008-12-24T10:44:00-06:00</BuyerCookie> 
     <PunchOutOrderMessageHeader operationAllowed="edit"> 
     <Total> 
      <Money currency="USD">205.34</Money> 
     </Total> 
     </PunchOutOrderMessageHeader> 
     <ItemIn quantity="2"> 
     <ItemID> 
      <SupplierPartID>123</SupplierPartID> 
      <SupplierPartAuxiliaryID /> 
     </ItemID> 
     <ItemDetail> 
      <UnitPrice> 
      <Money currency="USD">102.67</Money> 
      </UnitPrice> 
      <Description xml:lang="en-US">PRESSURE GAUGE</Description> 
      <UnitOfMeasure>EA</UnitOfMeasure> 
      <Classification domain="UNSPSC">123</Classification> 
      <ManufacturerPartID>123</ManufacturerPartID> 
      <ManufacturerName>testManufacturer</ManufacturerName> 
     </ItemDetail> 
     </ItemIn> 
    </PunchOutOrderMessage> 
    </Message> 
</cXML> 

답변

0

우리는 외부 요소를 사용할 것입니다.

<ItemIn quantity="1"> 
     <ItemDetail> 
      <UnitPrice> 
       <Money currency="USD">1.23</Money> 
      </UnitPrice> 
      <Description xml:lang="en-US">product 123</Description> 
      <UnitOfMeasure>FT</UnitOfMeasure> 
      <Classification domain="UNSPSC">31151601</Classification> 
      <ManufacturerPartID>1234</ManufacturerPartID> 
      <ManufacturerName>Test Company</ManufacturerName> 
      <Extrinsic name="QuoteId">12345</Extrinsic> 
      <Extrinsic name="QuoteLine">1</Extrinsic> 
     </ItemDetail> 
    </ItemIn> 
1

는 "SupplierPartAuxiliaryID"노드는, 당신은 PO에 전송 요청의 MGMT를 통해 주문 저장 될 따옴표 (punchoutordermessage)로 통과하고 싶은 어떤 데이터 공급 업체가 사용할 수 있도록 설계 주문 메시지와 함께 당신에게 돌아 왔습니다. 여기서 견적 ID (또는 견적 ID/회선 번호)를 보낼 수 있습니다.

+0

감사합니다. 나는 이것을 다음 몇 주 안에 테스트 할 것이고 작동한다. 나는 되돌아와 대답으로 표시 할 것이다. – SDeezy

+0

나는 이것에 대해 좀 더 연구를 해본 결과 이것이 올바른 방법이라고 생각하지 않는다. 이 작업을 완료하면 다른 업데이트로 돌아올 것입니다. – SDeezy