Update one source table
/fscmRestApi/resources/11.13.18.05/spendClassificationAttributeSourceTables/{DatasetSourceTableId}
Request
-
DatasetSourceTableId(required): integer(int64)
Unique identifier for source table.
-
Metadata-Context: string
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version: string
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
- application/json
object
-
AdditionalJoinTable: string
Maximum Length:
128
Additional source table name that's used to derive the spend classification attribute. -
AliasName: string
Maximum Length:
30
Alias of the source table. -
DatasetName: string
Maximum Length:
80
Name of the data set. -
JoinCondition: string
Maximum Length:
4000
Join clause for the source table. -
TableName: string
Maximum Length:
128
Name of the source table. -
TableType: string
Maximum Length:
80
Value that determines if the source table entry is predefined.
Response
- application/json
Default Response
-
Metadata-Context:
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version:
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
object
-
AdditionalJoinTable: string
Maximum Length:
128
Additional source table name that's used to derive the spend classification attribute. -
AliasName: string
Maximum Length:
30
Alias of the source table. -
DatasetDescription: string
Read Only:
true
Maximum Length:80
Description of the data set. -
DatasetName: string
Maximum Length:
80
Name of the data set. -
DatasetSourceTableId: integer
(int64)
Unique identifier for source table.
-
JoinCondition: string
Maximum Length:
4000
Join clause for the source table. -
links: array
Links
Title:
Links
The link relations associated with the resource instance. -
TableName: string
Maximum Length:
128
Name of the source table. -
TableType: string
Maximum Length:
80
Value that determines if the source table entry is predefined.
array
Links
object
-
href: string
Title:
hyperlink reference
The URI to the related resource. -
kind: string
Title:
kind
Allowed Values:[ "collection", "item", "describe", "other" ]
The kind of the related resource. -
name: string
Title:
name
The name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relation
Allowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]
The name of the relation to the resource instance. Example: self.
object
-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
This example describes how to update one source table.
Example cURL Command
Use the following cURL command to submit a request on the REST resource.
curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/spendClassificationAttributeSourceTables/DatasetSourceTableId"
Example Request Body
The following example includes the contents of the request body in JSON format to update a source table that can be used for mapping the columns to additional attributes. This example illustrates how a source table is updated by providing the alias name.
You replace the request payload in the cURL command with the contents of the Example Request Body. The request payload specifies attribute values that the command will use in the record that it updates.
{ "AliasName": "ProjectTask1" }
Example Response Body
{ "DatasetSourceTableId": 444, "DatasetName": "ORA_POI_ORDERS", "TableName": "PJF_PROJ_ELEMENTS_VL", "AliasName": "ProjectTask1", "JoinCondition": "POD.PJC_TASK_ID = ProjectTask.PROJ_ELEMENT_ID (+)", "TableType": "ORA_POI_STANDARD", "AdditionalJoinTable": null, "links": [ . . . ] }