目次

Search

  1. はじめに
  2. ビジネスエンティティサービスについて
  3. Enterprise Java Beanビジネスエンティティサービス呼び出し
  4. Representational State Transferビジネスエンティティサービス呼び出し
  5. Simple Object Access Protocolビジネスエンティティサービス呼び出し
  6. 相互参照レコードおよびBVT計算用のサービス
  7. 企業リンケージサービスのサポート
  8. データをクレンジング、分析、変換するための外部呼び出し
  9. REST APIを使用したレコードの追加
  10. REST APIを使用したファイルのアップロード

ビジネスエンティティサービスガイド

ビジネスエンティティサービスガイド

サンプルAPI応答

サンプルAPI応答

次のサンプルは、Personビジネスエンティティ内のルートレコードの詳細を示しています。
{ "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "self" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102?depth=2", "rel": "children" } ], "rowidObject": "102 ", "label": "DARWENT,JIMMY", "partyType": "Person", "statusCd": "A ", "lastName": "DARWENT", "middleName": "N", "firstName": "JIMMY", "displayName": "JIMMY N DARWENT", "genderCd": { "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "parent" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd", "rel": "self" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd?depth=2", "rel": "children" } ], "genderCode": "M" }, "generationSuffixCd": { "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "parent" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/generationSuffixCd?depth=2", "rel": "children" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/generationSuffixCd", "rel": "self" } ], "generationSuffixCode": "I" } }
次のサンプルでは、genderCdベースオブジェクト内の子レコードの詳細が示されています。
{ "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "parent" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd/2?depth=2", "rel": "children" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd/2", "rel": "self" } ], "rowidObject": "2 ", "label": "LU Gender", "genderDisp": "MALE", "genderCode": "M" }