...
検索パスとして使用する場合、フルパスを指定する必要があります。<search path="user_data.fields.fieldName" value="fieldValue" operator="eq" datatype="string" conjunction="true" />.例えば特定のクライアント名「Blancco」を検索する場合、検索パスは次の通りです<search path="user_data.fields.Client" value="Blancco" operator="eq" datatype="string" conjunction="true" />。
...
検索パスの例 - カスタムフィールドを検索条件として使用する場合:
Code Block |
---|
<?xml version="1.0" encoding="UTF-8"?> <request> <export-report> <report mode="original"/> <search path="user_data.fields.Client" value="Blancco" operator="eq" datatype="string" conjunction="true" /> </export-report> </request> |
...