목차

Search

  1. 서문
  2. 비즈니스 항목 서비스 소개
  3. Enterprise Java Bean 비즈니스 항목 서비스 호출
  4. Representational State Transfer 비즈니스 항목 서비스 호출
  5. Simple Object Access Protocol 비즈니스 항목 서비스 호출
  6. 교차 참조 레코드 및 BVT 계산을 위한 서비스
  7. 기업 연결 서비스 지원
  8. 비즈니스 항목 데이터 정리, 분석 및 변환을 위한 외부 호출
  9. REST API를 사용하여 비즈니스 항목 레코드 추가

비즈니스 항목 서비스 가이드

비즈니스 항목 서비스 가이드

마스터 레코드에 올바른 값 기록

마스터 레코드에 올바른 값 기록

마스터 레코드에 올바른 값을 기록하는 비즈니스 항목 서비스 호출을 사용할 때는 값에 대한 트러스트 설정도 지정할 수 있습니다. 트러스트 설정을 지정하지 않을 경우 MDM Hub에서는 관리자 시스템 설정을 사용합니다.
관리자 트러스트 설정을 사용하여 올바른 값을 기록하는 URL 및 요청 본문의 형식은 다음과 같습니다.
http://<host>:<port>/<context>/<database ID>/<business entity>/<row ID>?systemName=<source system providing the correct value>{ "<field name>": "<correct value>", "$original": { "<field name>": "<current value>", }, "TRUST": { "<field name>": { "trustSetting" : { custom: false } } } }
정의된 트러스트 설정을 사용하여 올바른 값을 기록하는 URL 및 요청 본문의 형식은 다음과 같습니다.
http://<host>:<port>/<context>/<database ID>/<business entity>/<row ID>?systemName=<source system providing the correct value>{ "<field name>": "<correct value>", "$original": { "<field name>": "<current value>", }, "TRUST": { "firstName": { "trustSetting" : { custom: true, // if custom=true, all other trustSetting fields //are mandatory. If they are not set, //the service will return an error. minimumTrust: <minimum trust percent>, maximumTrust: <maximum trust percent>, timeUnit: "<units for measuring trust decay>", maximumTimeUnits: <number of units>, graphType: "<name of graph type>" } } } }