Get all trade operations
/fscmRestApi/resources/11.13.18.05/tradeOperations
Request
-
expand: string
When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "". More than one child can be specified using comma as a separator. Example: ?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers).
-
fields: string
This parameter filters the resource fields. Only the specified fields are returned, which means that if no fields are specified, no fields are returned (useful to get only the links). If an indirect child resource is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?fields=Employees.Managers:Empname" is the same as "?fields=;Employees:;Employees.Managers:Empname" (which will only return the "Empname" field for Managers). the value of this query parameter is a list of resource fields. The attribute can be a direct (Example: Employees) or indirect (Example: Employees.Managers) child. It cannot be combined with expand query parameter. If both are provided, only fields will be considered.
Format: ?fields=Attribute1,Attribute2
Format for fields in child resource: ?fields=Accessor1:Attribute1,Attribute2 -
finder: string
Used as a predefined finder to search the collection.
Format: ?finder=<finderName>;<variableName>=<variableValue>,<variableName2>=<variableValue2>
The following are the available finder names and corresponding finder variables:- PrimaryKey: Finds trade operations according to the trade operation identifier as the primary key.
Finder Variables:- TradeOperationId; integer; Value that uniquely identifies the trade operation.
- findTradeOperations: Finds trade operations according to the specified attributes.
Finder Variables:- bindActualAmount; number; Actual amount of the trade operation.
- bindBusinessUnitName; string; Name of the procurement business unit for the trade operation.
- bindChargeBU; string; Business unit of trade operation charge.
- bindChargeLineStatus; string; Status of the trade operation charge line.
- bindChargeName; string; Name of the trade operation charge.
- bindChargeReferenceAvailable; string; Search parameter to include trade operations with charge references on the charges.
- bindChargeSupplier; string; Supplier of the trade operation charge.
- bindChargesInTentativeState; string; Search parameter to include trade operation with charges in tentative status.
- bindDescription; string; Description of the trade operation.
- bindFromDate; string; Date for selecting the trade operations created or modified on or after this date.
- bindItemNumber; string; Item on the purchase orders associated to the charges.
- bindMissingInvoicesFlag; string; Search parameter to include trade operation with charges missing invoices.
- bindOrderedQty; number; Quantity ordered in the purchase orders associated to the charges.
- bindPONumber; string; Number that identifies the purchase orders associated to the charges.
- bindRouteName; string; Name of the route under which the trade operation is classified.
- bindShiptoLocation; string; Ship to Location of the purchase orders associated to the charges.
- bindStatusCode; string; Abbreviation that identifies the status of the trade operation.
- bindTaxApplicableFlag; string; Value that identifies trade operations having charge lines with tax.
- bindTemplateName; string; Name of the template using which the trade operation is created.
- bindToDate; string; Date for selecting the trade operations created or modified on or before this date.
- bindTradeOperationCreationDate; string; Date when the trade operation was created.
- bindTradeOperationCurrency; string; Currency used in the trade operation.
- bindTradeOperationName; string; Name of the trade operation.
- bindTradeOperationNumber; string; Number that identifies the trade operation within a procurement business unit.
- PrimaryKey: Finds trade operations according to the trade operation identifier as the primary key.
-
limit: integer
This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
-
links: string
This parameter can be used to show only certain links while accessing a singular resource or a resource collection. The parameter value format is a comma-separated list of : <link_relation>
Example:
self,canonical -
offset: integer
Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
-
onlyData: boolean
The resource item payload will be filtered in order to contain only data (no links section, for example).
-
orderBy: string
This parameter orders a resource collection based on the specified fields. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and "asc" or "desc". Specify "asc" for ascending and "desc" for descending. The default value is "asc". For example, ?orderBy=field1:asc,field2:desc
-
q: string
This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY
Format: ?q=expression1;expression2
You can use these queryable attributes to filter this collection resource using the q query parameter:- AllocationQuantityType; string; Value that identifies the quantity based on which the allocation is processed in the trade operation. The options are Purchase Order Schedule Quantity and Shipment Quantity.
- AllocationQuantityTypeCode; string; Abbreviation for the quantity based on which the allocation in a trade operation is processed. The options are PO_Qty and Ship_Qty.
- CreatedBy; string; User who created the trade operation.
- CreationDate; string; Date and time when the trade operation was created.
- CurrencyConversionRateType; string; Type of default currency conversion rate to be used for currency conversion in a trade operation.
- CurrencyConversionRateTypeCode; string; Value that identifies the type of default currency conversion rate to be used for currency conversion in a trade operation.
- LastUpdateDate; string; Date when the trade operation was most recently updated.
- LastUpdatedTime; string; Date and time when the trade operation was last updated.
- Precision; integer; Value that identifies the document currency precision.
- ProcurementBU; string; Destination business unit for which the trade operation was created.
- ProcurementBUId; integer; Value that uniquely identifies the destination business unit for which the trade operation was created.
- Route; string; Route under which the trade operation is classified.
- RouteId; integer; Value that uniquely identifies the route.
- Status; string; Indicates the meaning of the trade operation's status.
- StatusUpdateReason; string; Indicates the reason for the trade operation status update.
- TradeOperationCurrency; string; Currency used in the trade operation.
- TradeOperationDescription; string; Description of the trade operation.
- TradeOperationId; integer; Value that uniquely identifies the trade operation.
- TradeOperationName; string; Name of the trade operation.
- TradeOperationNumber; number; Number that identifies a trade operation within a procurement business unit.
- TradeOperationStatus; string; Status of the trade operation.
- TradeOperationTemplate; string; Name of the trade operation template. It is unique within a procurement business unit.
- TransactionType; string; Indicates the transaction type of the trade operation.
- TransactionTypeCode; string; The transaction type of the trade operation.
-
totalResults: boolean
The resource collection representation will include the "estimated row count" when "?totalResults=true", otherwise the count is not included. The default value is "false".
-
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.
There's no request body for this operation.
Back to TopResponse
- 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-
count(required): integer
The number of resource instances returned in the current range.
-
hasMore(required): boolean
Indicates whether more resources are available on the server than the subset returned in the response. If the value is true, then there are more resources to retrieve from the server. The default value is false.
-
items: array
Items
Title:
ItemsThe items in the collection. -
limit(required): integer
The actual paging size used by the server.
-
links(required): array
Links
Title:
LinksThe link relations associated with the resource instance. -
offset(required): integer
The offset value used in the current page.
-
totalResults: integer
The estimated row count when "?totalResults=true", otherwise the count is not included.
arrayLinksobject-
ActualTradeOperationAmount: number
Read Only:
trueIndicates the actual amount incurred for the trade operation. -
AllocationQuantityType: string
Title:
Allocation Quantity TypeRead Only:trueMaximum Length:80Value that identifies the quantity based on which the allocation is processed in the trade operation. The options are Purchase Order Schedule Quantity and Shipment Quantity. -
AllocationQuantityTypeCode: string
Maximum Length:
20Abbreviation for the quantity based on which the allocation in a trade operation is processed. The options are PO_Qty and Ship_Qty. -
Attachments: array
Attachments
Title:
AttachmentsThe attachments resource is used to view, create, and update attachments. -
charges: array
Charges
Title:
ChargesThe Charges resource gets information about the trade operation charge line, status and the allocated amounts for each charge line. -
CreatedBy: string
Read Only:
trueMaximum Length:64User who created the trade operation. -
CreationDate: string
(date-time)
Title:
Creation DateRead Only:trueDate and time when the trade operation was created. -
CurrencyConversionRateType: string
Title:
Conversion Rate TypeMaximum Length:30Type of default currency conversion rate to be used for currency conversion in a trade operation. -
CurrencyConversionRateTypeCode: string
Title:
Currency Conversion Rate TypeMaximum Length:30Value that identifies the type of default currency conversion rate to be used for currency conversion in a trade operation. -
defaultPOSchedules: array
Default Purchase Order Schedules
Title:
Default Purchase Order SchedulesThe Default Purchase Order Schedules resource gets information about the default purchase order schedules associated with a trade operation. -
defaultTOShipLines: array
Default Transfer Order Shipment Lines
Title:
Default Transfer Order Shipment LinesDetails about the default transfer order shipment lines associated with a trade operation are retrieved. -
DFF: array
Trade Operations Descriptive Felxfield
Title:
Trade Operations Descriptive FelxfieldDescriptive flexfield for trade operations. -
EstimatedTradeOperationAmount: number
Title:
Estimated AmountRead Only:trueEstimated amount incurred on the trade operation. -
LastUpdateDate: string
(date)
Title:
Last Update DateDate when the trade operation was most recently updated. -
LastUpdatedTime: string
(date-time)
Read Only:
trueDate and time when the trade operation was last updated. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
Precision: integer
(int32)
Title:
PrecisionRead Only:trueDefault Value:2Value that identifies the document currency precision. -
ProcurementBU: string
Title:
Procurement BUMaximum Length:240Destination business unit for which the trade operation was created. -
ProcurementBUId: integer
(int64)
Title:
Procurement Business Unit IDValue that uniquely identifies the destination business unit for which the trade operation was created. -
Route: string
Title:
RouteMaximum Length:80Route under which the trade operation is classified. -
RouteId: integer
(int64)
Title:
Route IDValue that uniquely identifies the route. -
Status: string
Title:
MeaningMaximum Length:80Indicates the meaning of the trade operation's status. -
StatusUpdateReason: string
Title:
ReasonMaximum Length:240Indicates the reason for the trade operation status update. -
TradeOperationCurrency: string
Title:
CurrencyMaximum Length:15Currency used in the trade operation. -
TradeOperationDescription: string
Title:
DescriptionMaximum Length:240Description of the trade operation. -
TradeOperationId: integer
(int64)
Title:
Trade Operation IDValue that uniquely identifies the trade operation. -
TradeOperationName: string
Title:
NameMaximum Length:80Name of the trade operation. -
TradeOperationNumber: number
Title:
NumberNumber that identifies a trade operation within a procurement business unit. -
tradeOperationShipments: array
Trade Operation Shipments
Title:
Trade Operation ShipmentsThe Trade Operation Shipments resource manages information about advanced shipment notices (ASNs) associated with a trade operation. -
TradeOperationStatus: string
Title:
StatusMaximum Length:30Default Value:DRAFTStatus of the trade operation. -
TradeOperationTemplate: string
Title:
TemplateRead Only:trueMaximum Length:80Name of the trade operation template. It is unique within a procurement business unit. -
TradeOperationTemplateId: integer
(int64)
Title:
Trade Operation Template IDValue that uniquely identifies the trade operation template used to create the trade operation. -
TransactionType: string
Title:
Transaction TypeMaximum Length:80Indicates the transaction type of the trade operation. -
TransactionTypeCode: string
Title:
Transaction TypeMaximum Length:30Default Value:PO_RECEIPTThe transaction type of the trade operation.
arrayAttachmentsarrayChargesarrayDefault Purchase Order SchedulesarrayDefault Transfer Order Shipment LinesarrayTrade Operations Descriptive FelxfieldarrayLinksarrayTrade Operation Shipmentsobject-
AsyncTrackerId: string
Title:
Asynchronous Upload Tracker IdAttribute provided for the exclusive use by the Attachment UI components to assist in uploading files. -
AttachedDocumentId: integer
(int64)
Title:
Attached Document IdThe unique identifier of the attached document. -
CategoryName: string
Title:
CategoryMaximum Length:30The category of the attachment. - ContentRepositoryFileShared: boolean
-
CreatedBy: string
Title:
Created ByRead Only:trueMaximum Length:255The user who created the record. -
CreatedByUserName: string
Title:
Created By User NameRead Only:trueThe user name who created the record. -
CreationDate: string
(date-time)
Title:
Creation DateRead Only:trueThe date when the record was created. -
DatatypeCode: string
Title:
TypeMaximum Length:30Default Value:FILEA value that indicates the data type. -
Description: string
Title:
DescriptionMaximum Length:255The description of the attachment. -
DmDocumentId: string
Maximum Length:
255The document ID from which the attachment is created. -
DmFolderPath: string
Title:
Dm Folder PathMaximum Length:1000The folder path from which the attachment is created. -
DmVersionNumber: string
Maximum Length:
255The document version number from which the attachment is created. -
DownloadInfo: string
Title:
DownloadInfoJSON object represented as a string containing information used to programmatically retrieve a file attachment. -
ErrorStatusCode: string
Title:
Error Status CodeThe error code, if any, for the attachment. -
ErrorStatusMessage: string
Title:
Error Status MessageThe error message, if any, for the attachment. -
ExpirationDate: string
(date-time)
Title:
Expiration DateThe expiration date of the contents in the attachment. -
FileContents: string
(byte)
Title:
File ContentsThe contents of the attachment. -
FileName: string
Title:
File NameMaximum Length:2048The file name of the attachment. -
FileUrl: string
Title:
File UrlThe URI of the file. -
FileWebImage: string
(byte)
Title:
File Web ImageRead Only:trueThe base64 encoded image of the file displayed in .png format if the source is a convertible image. -
LastUpdateDate: string
(date-time)
Title:
Last Update DateRead Only:trueThe date when the record was last updated. -
LastUpdatedBy: string
Title:
Last Updated ByRead Only:trueMaximum Length:255The user who last updated the record. -
LastUpdatedByUserName: string
Title:
Last Updated By UserRead Only:trueThe user name who last updated the record. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
PostProcessingAction: string
Title:
PostProcessingActionThe name of the action that can be performed after an attachment is uploaded. -
Title: string
Title:
TitleThe title of the attachment. -
UploadedFileContentType: string
Title:
Uploaded File Content TypeThe content type of the attachment. -
UploadedFileLength: integer
Title:
File SizeThe size of the attachment file. -
UploadedFileName: string
Title:
Uploaded File NameThe name to assign to a new attachment file. -
UploadedText: string
Title:
Uploaded TextThe text content for a new text attachment. -
Uri: string
Title:
UriMaximum Length:4000The URI of a Topology Manager type attachment. -
Url: string
Title:
UrlMaximum Length:4000The URL of a web page type attachment. -
UserName: string
Title:
User NameRead Only:trueMaximum Length:255The login credentials of the user who created the attachment.
arrayLinksobject-
href: string
Title:
hyperlink referenceThe URI to the related resource. -
kind: string
Title:
kindAllowed Values:[ "collection", "item", "describe", "other" ]The kind of the related resource. -
name: string
Title:
nameThe name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relationAllowed 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.
object-
ActualAmountInTradeOperationCurrency: number
Title:
Actual Amount in Trade Operation CurrencyRead Only:trueActual amount on the charge line in the trade operation currency. -
ActualNonrecoverableTaxInTradeOperationCurrency: number
Title:
Actual Nonrecoverable Tax in Trade Operation CurrencyRead Only:trueActual non-recoverable tax amount on the charge line in the trade operation currency. -
ActualTotalinDocumentCurrency: number
Read Only:
trueIndicates the actual total amount in document currency. -
AllocationBasisMeaning: string
Title:
MeaningRead Only:trueMaximum Length:80Indicates the allocation basis for the trade operation charge. -
AllowOverrideFlag: boolean
Read Only:
trueMaximum Length:1Default Value:trueIndicates whether the charge line attributes defaulted to the trade operation can be overridden. -
AssociatedTo: string
Read Only:
trueMaximum Length:255Indicates whether any purchase order schedule or transfer order shipment line is associated with the trade operation charge. -
AutoTaxCalculationFlag: boolean
Title:
Enable automatic tax calculationMaximum Length:1Contains one of the following values: true or false. If true, then enable automatic tax calculation on the charge line. If false, then do not enable automatic tax calculation on the charge line. The default is false. -
ChargeAllocationBasis: string
Title:
Allocation BasisMaximum Length:30Basis for allocation of charges to purchase order schedules. Values include Equally, Quantity, Volume, Weight, Item Value, and Manual allocation factor. A list of accepted values is defined in the lookup type FND_LOOKUPS. -
ChargeAllocationBasisBaseUOM: string
Title:
Allocation Basis Base UOMMaximum Length:25Base unit of measure to be used where allocation basis is quantity, weight, or volume. -
ChargeBasis: string
Title:
Charge BasisMaximum Length:30Basis for estimating charges. Values include Aggregate, Fixed per unit, Percentage of item price, Percentage of other charges, Variable per unit, and Variable percentage of Item Price. A list of accepted values is defined in the lookup type FND_LOOKUPS. -
ChargeBasisMeaning: string
Title:
MeaningRead Only:trueMaximum Length:80Indicates the charge basis for the trade operation charge -
ChargeBasisUOM: string
Title:
Charge Basis UOMMaximum Length:25Unit of measure that is used when the charge basis is per unit. -
ChargeBU: string
Title:
Charge BUMaximum Length:240Value that uniquely identifies the business unit associated with the trade operation charge. -
ChargeBUId: integer
(int64)
Title:
Charge Business Unit IDRead Only:trueRequisitioning business unit that incurs the charge. -
ChargeCreationSource: string
Read Only:
trueMaximum Length:11Value that identifies the creation source of the trade operation charge. -
ChargeCurrency: string
Title:
Charge CurrencyMaximum Length:15Transaction currency in which the charge is entered. -
ChargeCurrencyConversionDate: string
(date)
Title:
Currency Conversion DateDate when the charge amounts are converted from charge currency to other currency amounts. The default value is creation date of the trade operation charge line. -
ChargeCurrencyConversionRateType: string
Title:
Currency Conversion Rate TypeMaximum Length:30Type of charge currency conversion rate defaulted from the trade operation header. You have an option to override the conversion type for each charge line in a trade operation. -
ChargeCurrencyConversionType: string
Title:
Conversion Rate TypeMaximum Length:30Type of charge currency conversion rate defaulted from the trade operation header. You have an option to override the conversion type for each charge line in a trade operation. -
ChargeCurrencyExtendedPrecision: integer
(int32)
Title:
Extended PrecisionRead Only:trueDefault Value:5Value that identifies the level of charge currency extended precision. -
ChargeCurrencyPrecision: integer
(int32)
Title:
PrecisionRead Only:trueDefault Value:2Value that identifies the level of charge currency precision. -
ChargeDescription: string
Read Only:
trueMaximum Length:240Description of the trade operation charge. -
ChargeId: integer
(int64)
Title:
Charge IDValue that uniquely identifies the trade operation charge. -
chargeInvoiceAssociations: array
Charge Invoice Associations
Title:
Charge Invoice AssociationsThe Charge Invoice Associations resource gets information about the invoice associated with a charge line. -
ChargeLineNumber: integer
(int32)
Title:
Line NumberNumber that identifies the charge line entered in a trade operation. -
ChargeLineStatusCode: string
Title:
Charge Line StatusMaximum Length:30Default Value:INCOMPLETEAbbreviation that uniquely identifies the status of the charge line. Values include Allocated, Allocated with Warning, Allocation in Error, Cancelled, Draft Allocation, Incomplete, New, Pending Association, Ready for Allocation, and Requires Reallocation. -
ChargeLineStatusMeaning: string
Title:
Charge Line Status MeaningRead Only:trueMaximum Length:80Indicates the meaning of the charge line status. -
ChargeName: string
Title:
Charge NameMaximum Length:80Name of the charge for which the estimates and actuals are entered. -
ChargeNameNew: string
Title:
Charge NameName of the charge for which the estimates and actuals are entered. -
chargePurchaseOrderSchedules: array
Charge Purchase Order Schedules
Title:
Charge Purchase Order SchedulesThe Charge Purchase Order Schedules resource gets information about the purchase order schedules associated with a charge line. -
ChargeReferenceAvailable: string
Read Only:
trueMaximum Length:255Value that indicates that the charge reference is available. -
chargeReferences: array
Charge References
Title:
Charge ReferencesThe Charge References resource gets information about the charge references associated with a charge line. -
chargeRelatedLines: array
Charge Related Lines
Title:
Charge Related LinesThe Charge Related Lines resource gets information about the related charge lines for a charge line. -
ChargeServicePOLine: string
Number that identifies the service purchase order for the charge line.
-
ChargeServicePONumber: string
Number that identifies the service purchase order line for the charge line.
-
ChargeServicePOSchedule: string
Number that identifies the service purchase order schedule for the charge line.
-
ChargeSupplier: string
Supplier on the charge line.
-
chargeTransferOrderShipLines: array
Charge Transfer Order Shipment Lines
Title:
Charge Transfer Order Shipment LinesTransfer order shipment lines which are associated with the charge line for the allocation of landed cost charges. -
ConversionType: string
Read Only:
trueMaximum Length:30Type of charge currency conversion rate defaulted from the trade operation header. You have an option to override the conversion type for each charge line in a trade operation. -
CreationDate: string
(date-time)
Read Only:
trueDate and time when the trade operation charge was created. -
EnteredAmount: number
Read Only:
trueEstimated amount for the charge line in the charge currency. -
EstimatedAmountinChargeCurrency: number
Title:
Estimated Amount in Charge CurrencyUser-entered amount on the charge line in the charge currency. -
EstimatedAmountinFunctionalCurrency: number
Title:
Estimated Amount in Functional CurrencyRead Only:trueEstimated amount on the charge line in the functional currency. -
EstimatedAmountinTradeOperationCurrency: number
Title:
Estimated Amount in Trade Operation CurrencyRead Only:trueEstimated amount on the charge line in the trade operation currency. -
EstimatedNonrecoverableinTradeOperationCurrency: number
Title:
Estimated Nonrecoverable Tax in Trade Operation CurrencyRead Only:trueEstimated non-recoverable tax amount on the charge line in the trade operation currency. -
EstimatedNonrecoverableTaxinChargeCurrency: number
Title:
Estimated Nonrecoverable Tax in Trade Operation CurrencyUser-entered non-recoverable tax amount on the charge line in the charge currency. -
EstimatedNonrecoverableTaxinFunctionalCurrency: number
Title:
Estimated Nonrecoverable Tax in Functional CurrencyRead Only:trueEstimated non-recoverable tax amount on the charge line in the functional currency. -
EstimatedTotalAmountinChargeCurrency: number
Title:
Estimated Total Amount in Charge CurrencyRead Only:trueTotal user-entered amount on the charge line in the charge currency. -
EstimatedTotalAmountinFunctionalCurrency: number
Title:
Estimated Total Amount in Functional CurrencyRead Only:trueEstimated total amount on the charge line in the functional currency. -
EstimatedTotalAmountinTradeOperationCurrency: number
Title:
Estimated Total Amount in Trade Operation CurrencyRead Only:trueEstimated total amount on the charge line in the trade operation currency. -
EstimatedTotalinChargeCurrency: number
Read Only:
trueEstimated total amount on the charge line in the charge currency. -
FirstPartyTaxRegistrationNumber: integer
(int64)
Title:
First Party Tax Registration NumberNumber that identifies the first party tax registration on the transaction. -
FunctionalCurrencyCode: string
Read Only:
trueMaximum Length:255Value that indicates the code for the functional currency. -
FunctionalCurrencyExtendedPrecision: integer
(int32)
Title:
Extended PrecisionRead Only:trueDefault Value:5Value that identifies the level of functional currency extended precision. -
FunctionalCurrencyPrecision: integer
(int32)
Title:
PrecisionRead Only:trueDefault Value:2Value that identifies the level of functional currency precision. -
Invoice: string
Read Only:
trueMaximum Length:255Indicates whether an invoice is associated with the trade operation charge. -
IsAppliedToReceipts: string
Indicates whether receipts are applied to the trade operation charge.
-
IsInvoicePartiallyAssociated: string
Read Only:
trueMaximum Length:255Indicates whether an invoice is associated with the trade operation charge and is in Needs Review, Potential Match, or Good Match status. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
LocationOfFinalDischarge: string
Title:
Location of Final DischargeMaximum Length:255Value that identifies the tax final discharge location that determines the tax. -
NonrecoverableTax: number
Title:
Estimated Nonrecoverable Tax in Charge CurrencyRead Only:trueIndicates the non-recoverable tax in the charge currency. -
ObjectVersionNumber: integer
(int32)
Number of times the charge line was changed.
-
PartyId: integer
Read Only:
trueValues that uniquely Identifies party. -
ProductFiscalClassification: string
Title:
Fiscal Product Classification NameMaximum Length:240Value that indicates the name of the fiscal product classification that determines the tax. -
Rate: number
Title:
RateRate to be applied to the purchase order schedules to calculate the charge estimates. -
RequestId: integer
(int64)
Read Only:
trueIndicates the request ID from where the trade operation charge is picked for allocation. -
RequisitionBULegalEntityId: string
Read Only:
trueMaximum Length:255Value that uniquely identifies the requisition business unit legal entity. -
RunControl: string
Read Only:
trueMaximum Length:30Value that indicates the run control used for allocating the trade operation charge. -
ServicePOFlag: boolean
Title:
Service POMaximum Length:1Contains one of the following values. Yes: charge line gets the amount from a service purchase order. No: charge line does not get the amount from a service purchase order. The default value is No. -
ServicePOLineNumberofCharge: string
Title:
Service PO Line NumberRead Only:trueMaximum Length:40Number that identifies the service purchase order for the charge line. -
ServicePONumberofCharge: string
Title:
PO NumberRead Only:trueMaximum Length:40Number that identifies the service purchase order line for the charge line. -
ServicePOScheduleofCharge: string
Title:
Service PO ScheduleRead Only:trueMaximum Length:40Number that identifies the service purchase order schedule for the charge line. -
SupplierforCharge: string
Title:
Supplier SiteMaximum Length:360Supplier on the charge line. -
SupplierId: integer
(int64)
Title:
Supplier IDValue that uniquely identifies the supplier rendering the service. -
SupplierSiteforCharge: string
Title:
Supplier SiteMaximum Length:240Value that uniquely identifies the supplier site rendering the service. -
SupplierSiteId: integer
(int64)
Title:
Supplier SiteSupplier site on the charge line. -
TaxApplicableFlag: boolean
Title:
Tax applicableMaximum Length:1Contains one of the following values: true or false. If true, then indicate tax applicability on the charge line. If false, then do not indicate tax applicability on the charge line. The default value is true. -
TaxationCountryCode: string
Title:
Taxation CountryMaximum Length:2Value that identifies the country that determines the tax. This attribute is used for restricting the list of values for trx_business_category and other values. -
TaxClassificationCode: string
Title:
Tax Classification CodeMaximum Length:30Abbreviation that identifies the tax classification that determines the tax. -
TaxDocumentFiscalClassification: string
Title:
Document Fiscal ClassificationMaximum Length:30Value that indicates the classification of the fiscal document that determines the tax. -
TaxDocumentType: string
Title:
Document TypeMaximum Length:30Default Value:CHARGE_ESTIMATEType of classification of the document for the charge line that determines the tax. -
TaxFinalDischargeLocationId: integer
(int64)
Title:
Final Discharge Location IDValue that indicates the classification of the fiscal tax document that determines the tax. -
TaxLineIntendedUse: string
Title:
Tax Intended UseMaximum Length:240Purpose for which a product may be used for tax calculation. -
TaxLineType: string
Title:
Line TypeMaximum Length:30Default Value:SERVICESType of tax line classification for the charge line. -
TaxProductCategory: string
Title:
Product CategoryMaximum Length:240Product-related fiscal classification defined in Oracle Fusion Tax. -
TaxProductType: string
Title:
Product TypeMaximum Length:40Default Value:SERVICESType of the product. This is a read-only attribute with value SERVICES. -
TaxSetId: integer
Values that uniquely Identifies tax set.
-
TaxStatus: string
Title:
Tax Status MeaningRead Only:trueMaximum Length:80Text that indicates the meaning of tax status. -
TaxStatusCode: string
Title:
StatusMaximum Length:30Status of tax processing on the charge line. -
TaxTransactionBusinessCategory: string
Title:
Transaction Business CategoryMaximum Length:240Category to derive the transaction classification for tax authority, which is used to categorize a transaction for tax. -
TaxType: string
Title:
Charge Tax TypeMaximum Length:30Type of tax on the charge line. -
TentativeFlag: boolean
Title:
TentativeMaximum Length:1Default Value:falseContains one of the following values: true or false. If true, then tax is in draft and not included in inventory valuation. If false, then tax is not in draft. The default value is false. -
ThirdPartyTaxRegistrationNumber: integer
(int64)
Title:
Third Party Tax Registration NumberNumber that identifies the third party tax registration on the transaction that determines the tax. -
ToptChargeHistoryId: integer
(int64)
Read Only:
trueValue that uniquely identifies the charge history. -
TrackMissingInvoicesFlag: boolean
Title:
Track missing invoicesMaximum Length:1Contains one of the following values. Yes: trade operation charge line has missing invoices. No: charge line include invoices. The default value is No. -
TradeOperationChargeId: integer
(int64)
Title:
Trade Operation Charge IDValue that uniquely identifies the trade operation charge. -
UserDefinedFiscalClassification: string
Title:
User-Defined Fiscal ClassificationMaximum Length:30Name of the user-defined fiscal classification that determines the tax.
arrayCharge Invoice AssociationsarrayCharge Purchase Order SchedulesarrayCharge ReferencesarrayCharge Related LinesarrayCharge Transfer Order Shipment LinesarrayLinksobject-
AssociationMode: string
Title:
Association ModeMaximum Length:255Value that indicates whether the invoice line is automatic or manual associated. -
ChargeInvoiceAssociationId: integer
(int64)
Title:
Charge Invoice Association IDValue that uniquely identifies the invoice line to the landed cost charge. -
FunctionalCurrencyAmount: number
Title:
Allocated Actual Amount in Functional CurrencyActual amount on the charge line in functional currency. -
FunctionalCurrencyCode: string
Title:
Functional Currency CodeMaximum Length:15Value that indicates the functional currency. -
FunctionalCurrencyExtendedPrecision: integer
(int32)
Title:
Extended PrecisionRead Only:trueValue that identifies the level of functional currency extended precision. -
FunctionalCurrencyPrecision: integer
(int32)
Title:
PrecisionRead Only:trueValue that identifies the level of functional currency precision. -
FunctionalCurrencyTax: number
Title:
Allocated Actual NonRecoverable Tax in Functional CurrencyActual non-recoverable tax on the invoice in functional currency. -
FunctionalCurrencyTotal: number
Title:
Allocated Actual Total in Functional CurrencyRead Only:trueAllocated total amount on the invoice charge line in functional currency. -
InvoiceAmount: number
Title:
Allocated Actual Amount in Invoice CurrencyActual amount on the charge line in invoice currency. -
InvoiceCurrencyCode: string
Title:
Invoice Currency CodeMaximum Length:15Value that identifies the invoice currency. -
InvoiceCurrencyExtendedPrecision: integer
(int32)
Title:
Extended PrecisionRead Only:trueValue that identifies the level of invoice currency extended precision. -
InvoiceCurrencyPrecision: integer
(int32)
Title:
PrecisionRead Only:trueValue that identifies the level of invoice currency precision. -
InvoiceDate: string
(date-time)
Read Only:
trueCreation date of the invoice. -
InvoiceId: integer
(int64)
Title:
Invoice IDValue that uniquely identifies the invoice associated with the trade operation charge line. -
InvoiceLineNumber: integer
(int64)
Title:
Invoice Line NumberNumber that identifies the invoice line associated with the trade operation charge line. -
InvoiceNumber: string
Title:
Invoice NumberRead Only:trueMaximum Length:50Number that indicates the invoice associated with the trade operation charge line. -
InvoiceTax: number
Title:
Allocated Actual Nonrecoverable Tax in Invoice CurrencyActual non-recoverable tax on the invoice in invoice currency. -
InvoiceTotal: number
Title:
Allocated Actual Total in Invoice CurrencyRead Only:trueAllocated total amount on the invoice charge line in invoice currency. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
Supplier: string
Title:
SupplierRead Only:trueMaximum Length:360Name of the supplier on the charge line. -
SupplierId: integer
(int64)
Title:
Supplier IDRead Only:trueValue that identifies the supplier on the charge line. -
SupplierSite: string
Title:
Supplier SiteRead Only:trueMaximum Length:240Value that identifies the supplier site on the charge line. -
SupplierSiteId: integer
(int64)
Title:
Supplier Site IDRead Only:trueValue that identifies the supplier site on the charge line. -
TradeOperationCurrencyAmount: number
Title:
Allocated Actual Amount in Trade Operation CurrencyRead Only:trueActual amount on the charge line in trade operation currency. -
TradeOperationCurrencyCode: string
Title:
Document CurrencyRead Only:trueMaximum Length:15Value that identifies the trade operation currency. -
TradeOperationCurrencyTax: number
Title:
Allocated Actual NonRecoverable Tax in Trade Operation CurrencyRead Only:trueActual non-recoverable tax on the invoice in trade operation currency. -
TradeOperationCurrencyTotal: number
Title:
Allocated Actual Total in Trade Operation CurrencyRead Only:trueAllocated total amount on the invoice charge line in the trade operation currency.
arrayLinksobject-
ActAmountInDocumentCurrency: number
Title:
Allocated Actual Amount in Trade Operation CurrencyRead Only:trueActual amount on the charge line in the trade operation currency. -
ActAmountInFuncCurrency: number
Title:
Allocated Actual Amount in Functional CurrencyRead Only:trueActual amount on the charge line in the functional currency. -
ActAmountInMatRequisitionBUCurrency: number
Title:
Allocated Actual Amount in Material Requisition BU CurrencyRead Only:trueActual amount on the charge line in the functional currency of the business unit that is requisitioning the material. -
ActAmountPERUnitInDocumentCurrency: number
Title:
Allocated Actual per Unit Amount in Trade Operation CurrencyRead Only:trueActual per unit amount on the charge line in the trade operation currency. -
ActAmountPERUnitInFuncCurrency: number
Title:
Allocated Actual per Unit Amount in Functional CurrencyRead Only:trueActual per unit amount on the charge line in the functional currency. -
ActAmountPERUnitInMatRequisitionBUCurrency: number
Title:
Allocated Actual per Unit Amount in Material Requisition BU CurrencyRead Only:trueActual per unit amount on the charge line in the functional currency of the business unit that is requisitioning the material. -
ActTaxInDocumentCurrency: number
Title:
Allocated Actual NonRecoverable Tax in Trade Operation CurrencyRead Only:trueActual non-recoverable tax on the charge line in the trade operation currency. -
ActTaxInFuncCurrency: number
Title:
Allocated Actual NonRecoverable Tax in Functional CurrencyRead Only:trueActual non-recoverable tax on the charge line in the functional currency. -
ActTaxInMatRequisitionBUCurrency: number
Title:
Allocated Actual NonRecoverable Tax in Material Requisition BU CurrencyRead Only:trueActual non-recoverable tax on the charge line in the functional currency of the business unit that is requisitioning the material. -
ActTaxPERUnitInDocumentCurrency: number
Title:
Allocated Actual per Unit NonRecoverable Tax in Trade Operation CurrencyRead Only:trueActual per unit non-recoverable tax on the charge line in the trade operation currency. -
ActTaxPERUnitInFuncCurrency: number
Title:
Allocated Actual per Unit NonRecoverable Tax in Functional CurrencyRead Only:trueActual per unit non-recoverable tax on the charge line in the functional currency. -
ActTaxPERUnitInMatRequisitionBUCurrency: number
Title:
Allocated Actual per Unit NonRecoverable Tax in Material Requisition BU CurrencyRead Only:trueActual per unit non-recoverable tax on the charge line in the functional currency of the business unit that is requisitioning the material. -
AllocationBaseFactor: number
Title:
Allocation Base FactorBase factor value used for charge allocation. -
AllocationCurrencyCode: string
Title:
Allocation CurrencyMaximum Length:15Currency used for charge allocation. -
AllocationPercentage: number
Title:
Allocation PercentagePercentage used for charge allocation. -
AllocationRate: number
Title:
Allocation RateRate to be applied to purchase order schedules for deriving the charge estimates. -
DeliverToInvOrg: string
Title:
Delivered-to Inventory Organization NameRead Only:trueMaximum Length:240Name of the inventory organization to which the item is delivered. -
DeliverToInvOrgId: integer
(int64)
Title:
Delivered-To Inventory Organization IDRead Only:trueValue that uniquely identifies the inventory organization to which the item is delivered. -
DestinationType: string
Title:
Destination TypeRead Only:trueMaximum Length:80Destination type on the purchase order. -
EstAmountInChargeCurrency: number
Title:
Allocated Estimate Amount in Charge CurrencyRead Only:trueEstimated amount on the charge line in the charge currency. -
EstAmountInDocumentCurrency: number
Title:
Allocated Estimate Amount in Trade Operation CurrencyRead Only:trueEstimated amount on the charge line in the trade operation currency. -
EstAmountInFunCurrency: number
Title:
Allocated Estimate Amount in Functional CurrencyRead Only:trueEstimated amount on the charge line in the functional currency. -
EstAmountInMatRequisitionBUCurrency: number
Title:
Allocated Estimate Amount in Material Requisition BU CurrencyRead Only:trueEstimated amount on the charge line in the functional currency of the business unit that is requisitioning the material. -
EstAmountPERUnitInChargeCurrency: number
Title:
Allocated Estimate per Unit Amount in Charge CurrencyRead Only:trueEstimated per unit amount on the charge line in the charge currency. -
EstAmountPERUnitInDocumentCurrency: number
Title:
Allocated Estimate per Unit Amount in Trade Operation CurrencyRead Only:trueEstimated per unit amount on the charge line in the trade operation currency. -
EstAmountPERUnitInFuncCurrency: number
Title:
Allocated Estimate per Unit Amount in Functional CurrencyRead Only:trueEstimated per unit amount on the charge line in the functional currency. -
EstAmountPERUnitInMatRequisitionBUCurrency: number
Title:
Allocated Estimate per Unit Amount in Material Requisition BU CurrencyRead Only:trueEstimated per unit amount on the charge line in the functional currency of the business unit that is requisitioning the material. -
EstTaxInDocumentCurrency: number
Title:
Allocated Estimate NonRecoverable Tax in Trade Operation CurrencyRead Only:trueEstimated non-recoverable tax on the charge line in the trade operation currency. -
EstTaxInFuncCurrency: number
Title:
Allocated Estimate NonRecoverable Tax in Functional CurrencyRead Only:trueEstimated non-recoverable tax on the charge line in the functional currency. -
EstTaxInMatRequisitionBUCurrency: number
Title:
Allocated Estimate NonRecoverable Tax in Material Requisitioning BU CurrencyRead Only:trueEstimated non-recoverable tax on the charge line in the functional currency of the business unit that is requisitioning the material. -
EstTaxPERUnitInChargeCurrency: number
Title:
Allocated Estimate per Unit NonRecoverable Tax in Charge CurrencyRead Only:trueEstimated per unit non-recoverable tax on the charge line in the charge currency. -
EstTaxPERUnitInDocumentCurrency: number
Title:
Allocated Estimate per Unit NonRecoverable Tax in Trade Operation CurrencyRead Only:trueEstimated per unit non-recoverable tax on the charge line in the trade operation currency. -
EstTaxPERUnitInFuncCurrency: number
Title:
Allocated Estimate per Unit NonRecoverable Tax in Functional CurrencyRead Only:trueEstimated per unit non-recoverable tax on the charge line in the functional currency. -
EstTaxPERUnitInMatRequisitionBUCurrency: number
Title:
Allocated Estimate per Unit NonRecoverable Tax in Material Requisition BU CurrencyRead Only:trueEstimated per unit non-recoverable tax on the charge line in the functional currency of the business unit that is requisitioning the material. -
EstTaxtInChargeCurrency: number
Title:
Allocated Estimate NonRecoverable Tax in Charge CurrencyRead Only:trueEstimated non-recoverable tax on the charge line in the charge currency. -
ExtendedPrecision: integer
(int32)
Title:
Extended PrecisionRead Only:trueValue that identifies the level of extended precision. -
ItemId: integer
(int64)
Title:
Item IDRead Only:trueValue that uniquely identifies the item. -
ItemNumber: string
Read Only:
trueMaximum Length:300Item on the purchase order schedule. -
LandedCostPOScheduleId: integer
(int64)
Title:
Landed Cost PO Schedule IDValue that uniquely identifies the purchase order schedule for landed cost. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
OrderedQuantity: number
Title:
Ordered QuantityQuantity on the purchase order schedule. -
POHeaderId: integer
(int64)
Title:
Purchase Order Header IDRead Only:trueValue that uniquely identifies the purchase order header. -
POItemPrice: number
Title:
Item PriceItem price on the purchase order. -
POLineId: integer
(int64)
Title:
Purchase Order Line IDRead Only:trueValue that uniquely identifies the purchase order line. -
POLineLocationId: integer
(int64)
Title:
Purchase Order Line Location IDRead Only:trueValue that uniquely identifies the purchase order shipment schedule. -
POLineNumber: string
Title:
Purchase Order LineRead Only:trueMaximum Length:40Number that identifies the line in the purchase order. -
PONumber: string
Title:
Purchase OrderRead Only:trueMaximum Length:40Number that identifies the material purchase order for the landed cost estimate. -
POPrimaryUOMCode: string
Maximum Length:
3Value that identifies the primary unit of measure for the purchase order schedule quantity. -
POQuantityInPrimaryUOM: number
Title:
Ordered Quantity (Secondary UOM)Ordered quantity on the purchase order in the primary unit of measure. -
POQuantityInSecondaryUOM: number
Title:
Ordered Quantity (Secondary UOM)Ordered quantity on the purchase order in the secondary unit of measure. -
POScheduleAmount: number
Title:
PO Schedule AmountRead Only:trueAmount on the purchase order schedule line. -
POScheduleFuncCurrencyAmount: number
Title:
PO Schedule Functional Currency AmountRead Only:trueFunctional currency amount on the purchase order schedule line. -
POScheduleNumber: string
Title:
Purchase Order ScheduleRead Only:trueMaximum Length:40Number that identifies the schedule of the material purchase order line used for the landed cost estimate. -
POSecondaryUOMCode: string
Maximum Length:
3Value that identifies the secondary unit of measure for the purchase order schedule quantity. -
Precision: integer
(int32)
Title:
PrecisionRead Only:trueValue that identifies the level of precision. -
ProcurementBU: string
Title:
Procurement BURead Only:trueMaximum Length:240Business Unit for Trade Operation can be based on Purchase Order schedules or Transfer Order -
ProcurementBUId: integer
(int64)
Title:
Procurement Business Unit IDRead Only:trueValue that uniquely identifies the procurement business unit for the material purchase order schedule. -
ProfitCenterBU: string
Title:
Profit Center BURead Only:trueMaximum Length:240Profit center business unit on the purchase order schedule. -
ProfitCenterBUId: integer
(int64)
Title:
Profit Center BU IDRead Only:trueValue that uniquely identifies the profit center business unit for the material purchase order schedule. -
ReceiptQuantity: number
Title:
Receipt QuantityRead Only:trueReceived quantity corresponding to the purchase order schedule. -
RequisitioningBU: string
Title:
Requisitioning BURead Only:trueMaximum Length:240Requisitioning business unit on the purchase order schedule. -
RequisitioningBUId: integer
(int64)
Title:
Requisitioning BU IDRead Only:trueValue that uniquely identifies the requisitioning business unit for the material purchase order schedule. -
ShiptoLocation: string
Title:
Ship-to LocationRead Only:trueMaximum Length:240Location to which the item is delivered. -
ShipToLocationId: integer
(int64)
Title:
Ship-To Location IDRead Only:trueValue that uniquely identifies the location to which the item is delivered. -
Supplier: string
Title:
SupplierRead Only:trueMaximum Length:360Supplier on the purchase order. -
SupplierSite: string
Title:
Supplier SiteRead Only:trueMaximum Length:240Supplier site on the purchase order. -
SupplierSiteId: integer
(int64)
Title:
Supplier Site IDRead Only:trueValue that uniquely identifies the supplier site on the purchase order. -
TropChargePoScheduleId: integer
(int64)
Value that uniquely identifies the purchase order schedule associated with a charge line.
-
UnitOfMeasure: string
Title:
Unit of MeasureRead Only:trueMaximum Length:25Unit of measure for the purchase order schedule quantity. -
UOMTypeCode: string
Title:
UOM TypeMaximum Length:30Value that identifies the unit of measure used for charge allocation.
arrayLinksobject-
Attachments: array
Attachments
Title:
AttachmentsThe attachments resource is used to view, create, and update attachments. -
AutoAssociateFlag: boolean
Title:
Automatically Associate on MatchMaximum Length:1Default Value:falseContains one of the following values: yes or no. If yes, then automatically associate invoice to trade operation charge on match. If no, then manual action is needed for invoice association to trade operation charge. The default value is no. -
ChargeReferenceName: string
Title:
Charge Reference NameName of the charge reference for a charge line. -
ChargeReferenceTypeDescription: string
Title:
Reference Type DescriptionRead Only:trueMaximum Length:240Description of the charge reference for a charge line. -
ChargeReferenceTypeId: integer
(int64)
Title:
Trade Operation Charge Reference Type IDValue that uniquely identifies the type of charge reference. -
ChargeReferenceValueDataType: string
Title:
Reference Data TypeRead Only:trueMaximum Length:80Value that identifies the input data type for charge references. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
PreDefinedFlag: boolean
Title:
PredefinedRead Only:trueMaximum Length:1Default Value:falseContains one of the following values: true or false. If true, then reference type was predefined in default charge references setup. If false, then reference type is not predefined. The default value is false. -
ReferenceValueDate: string
(date-time)
Title:
Date ReferenceDate value of the charge reference attribute. -
ReferenceValueNumber: number
Title:
Numeric ReferenceNumeric value of the charge reference attribute. -
ReferenceValueText: string
Title:
Alphanumeric ReferenceMaximum Length:64Alphanumeric value of the charge reference attribute. -
TradeOperationChargeId: integer
(int64)
Title:
Trade Operation Charge IDValue that uniquely identifies the trade operation charge. -
TradeOperationChargeReferenceValueId: integer
(int64)
Title:
Trade Operation Charge Reference Value IDValue that uniquely identifies the charge reference to a charge line.
arrayAttachmentsarrayLinksobject-
AsyncTrackerId: string
Title:
Asynchronous Upload Tracker IdAttribute provided for the exclusive use by the Attachment UI components to assist in uploading files. -
AttachedDocumentId: integer
(int64)
Title:
Attached Document IdThe unique identifier of the attached document. -
CategoryName: string
Title:
CategoryMaximum Length:30The category of the attachment. - ContentRepositoryFileShared: boolean
-
CreatedBy: string
Title:
Created ByRead Only:trueMaximum Length:255The user who created the record. -
CreatedByUserName: string
Title:
Created By User NameRead Only:trueThe user name who created the record. -
CreationDate: string
(date-time)
Title:
Creation DateRead Only:trueThe date when the record was created. -
DatatypeCode: string
Title:
TypeMaximum Length:30Default Value:FILEA value that indicates the data type. -
Description: string
Title:
DescriptionMaximum Length:255The description of the attachment. -
DmDocumentId: string
Maximum Length:
255The document ID from which the attachment is created. -
DmFolderPath: string
Title:
Dm Folder PathMaximum Length:1000The folder path from which the attachment is created. -
DmVersionNumber: string
Maximum Length:
255The document version number from which the attachment is created. -
DownloadInfo: string
Title:
DownloadInfoJSON object represented as a string containing information used to programmatically retrieve a file attachment. -
ErrorStatusCode: string
Title:
Error Status CodeThe error code, if any, for the attachment. -
ErrorStatusMessage: string
Title:
Error Status MessageThe error message, if any, for the attachment. -
ExpirationDate: string
(date-time)
Title:
Expiration DateThe expiration date of the contents in the attachment. -
FileContents: string
(byte)
Title:
File ContentsThe contents of the attachment. -
FileName: string
Title:
File NameMaximum Length:2048The file name of the attachment. -
FileUrl: string
Title:
File UrlThe URI of the file. -
FileWebImage: string
(byte)
Title:
File Web ImageRead Only:trueThe base64 encoded image of the file displayed in .png format if the source is a convertible image. -
LastUpdateDate: string
(date-time)
Title:
Last Update DateRead Only:trueThe date when the record was last updated. -
LastUpdatedBy: string
Title:
Last Updated ByRead Only:trueMaximum Length:255The user who last updated the record. -
LastUpdatedByUserName: string
Title:
Last Updated By UserRead Only:trueThe user name who last updated the record. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
PostProcessingAction: string
Title:
PostProcessingActionThe name of the action that can be performed after an attachment is uploaded. -
Title: string
Title:
TitleThe title of the attachment. -
UploadedFileContentType: string
Title:
Uploaded File Content TypeThe content type of the attachment. -
UploadedFileLength: integer
Title:
File SizeThe size of the attachment file. -
UploadedFileName: string
Title:
Uploaded File NameThe name to assign to a new attachment file. -
UploadedText: string
Title:
Uploaded TextThe text content for a new text attachment. -
Uri: string
Title:
UriMaximum Length:4000The URI of a Topology Manager type attachment. -
Url: string
Title:
UrlMaximum Length:4000The URL of a web page type attachment. -
UserName: string
Title:
User NameRead Only:trueMaximum Length:255The login credentials of the user who created the attachment.
arrayLinksobject-
ChargeBU: string
Title:
Charge BURead Only:trueMaximum Length:240Value that indicates the requisitioning business unit that incurs the charge. -
ChargeLineNumber: integer
Title:
Related Charge Line NumberValue that uniquely identifies the charge line number for the charge entered as related in a charge line. -
ChargeLineStatus: string
Title:
Charge Line Status MeaningRead Only:trueMaximum Length:80Value that indicates the meaning of the charge line status. -
ChargeLineStatusCode: string
Title:
Charge Line StatusRead Only:trueMaximum Length:30Abbreviation that uniquely identifies the status of the charge line. Values include Allocated, Allocated with Warning, Allocation in Error, Cancelled, Draft Allocation, Incomplete, New, Pending Association, Ready for Allocation, and Requires Reallocation. -
ChargeName: string
Title:
Related Charge NameRead Only:trueMaximum Length:80Name of the charge for the related charge line entered in a charge line. -
EnteredCurrencyCode: string
Title:
Charge CurrencyRead Only:trueMaximum Length:15Transaction currency in which the charge is entered. -
IncludePurchaseValueFlag: boolean
Title:
Include item valueContains one of the following values: true or false. If true, then the purchase value needs to be included for the purpose of deriving the charge amount. If false, then the purchase value is not included for the purpose of deriving the charge amount. The default value is false. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
PercentageOfItemValue: number
Title:
Percentage of Item ValuePercent of the purchase value. It is required only when Include Item Value Flag is set to yes. -
RelatedChargeLineId: integer
(int64)
Title:
Related Charge Line IDValue that uniquely identifies the related charge line for a trade operation charge. -
RelatedChargeLinePercentage: number
Title:
Related Charge Line PercentagePercent for each of the related charge line based on which the charge line amount will be derived. -
TotalAmount: number
Title:
Total AmountRead Only:trueEstimated total amount on the charge line. -
TradeOperationChargeId: integer
(int64)
Title:
Trade Operation Charge IDValue that uniquely identifies the trade operation charge. -
TradeOperationChargeRelatedLineId: integer
(int64)
Title:
Trade Operation Charge Related Line IDValue that uniquely identifies the trade operation charge related line.
arrayLinksobject-
ActAmountInDocumentCurrency: number
Amount on the charge line in the trade operation currency.
-
ActAmountInFunctionalCurrrency: number
Amount on the charge line in the functional currency of the invoice.
-
ActAmountInMatRequisitionBUCurrency: number
Amount on the charge line in the material requisitioning BU functional currency.
-
ActAmountPERUnitInDocumentCurrency: number
Per unit amount on the charge line in the trade operation currency.
-
ActAmountPERUnitInFunctionalCurrency: number
Read Only:
truePer unit amount on the charge line in the invoice functional currency. -
ActAmountPERUnitInMatRequisitionBUCurrency: number
Per unit amount on the charge line in the material requisitioning BU functional currency.
-
ActTaxInDocumentCurrency: number
Nonrecoverable tax on the charge line in the trade operation currency.
-
ActTaxInFunctionalCurrency: number
Read Only:
trueNonrecoverable tax on the charge line in the invoice functional currency. -
ActTaxInMatRequisitionBUCurrency: number
Read Only:
trueNonrecoverable tax on the charge line in the material requisitioning BU functional currency. -
ActTaxPERUnitInDocumentCurrency: number
Read Only:
truePer unit nonrecoverable tax on the charge line in the trade operation currency. -
ActTaxPERUnitInFunctionalCurrency: number
Read Only:
truePer unit nonrecoverable tax on the charge line in the invoice functional currency. -
ActTaxPERUnitInMatRequisitionBUCurrency: number
Read Only:
truePer unit nonrecoverable tax on the charge line in the material requisitioning BU functional currency. -
AllocationFactor: number
Base factor value used for allocation.
-
AllocationPercentage: number
Read Only:
truePercentage used for charge allocation. -
Currency: string
Title:
Currency NameRead Only:trueMaximum Length:80Currency on the transfer order. -
CurrencyCode: string
Title:
Currency CodeRead Only:trueMaximum Length:15Transfer order currency code. -
DestinationOrganizationCode: string
Read Only:
trueMaximum Length:18Code for the organization receiving goods from the source organization. -
DestinationOrganizationId: integer
(int64)
Read Only:
trueUnique identifier for the destination organization. -
EstAmountInChargeCurrency: number
Read Only:
trueAllocated estimated amount in the charge BU. -
EstAmountInDocumentCurrency: number
Read Only:
trueAllocated estimated amount in the trade operation. -
EstAmountInFunctionalCurrency: number
Read Only:
trueAllocated estimated amount in the invoice functional currency. -
EstAmountInMatRequisitionBUCurrency: number
Read Only:
trueAllocated estimated amount in the material BU currency. -
EstAmountPERUnitInChargeCurrency: number
Read Only:
trueAllocated estimated per unit amount in the charge BU currency. -
EstAmountPERUnitInFunctionalCurrency: number
Read Only:
trueAllocated estimated per unit amount in the invoice functional currency. -
EstAmountPERUnitInMatRequisitionBUCurrency: number
Read Only:
trueAllocated estimated per unit amount in the material BU. -
EstAmountUnitInDocumentCurrency: number
Read Only:
trueAllocated estimated per unit amount in the trade operation. -
EstimatedTransferPrice: number
Estimated unit price from the source organization to the destination organization in the functional currency.
-
EstTaxInChargeCurrency: number
Read Only:
trueEstimated nonrecoverable tax on the charge line. -
EstTaxInDocumentCurrency: number
Read Only:
trueEstimated nonrecoverable tax on the charge line in the trade operation. -
EstTaxInFunctionalCurrency: number
Read Only:
trueEstimated nonrecoverable tax on the charge line in the invoice functional currency. -
EstTaxInMatRequisitionBUCurrency: number
Read Only:
trueEstimated nonrecoverable tax on the charge line in the material BU. -
EstTaxPERUnitInChargeCurrency: number
Read Only:
trueEstimated per unit nonrecoverable tax on the charge line. -
EstTaxPERUnitInFunctionalCurrency: number
Read Only:
trueEstimated per unit nonrecoverable tax on the charge line in the invoice functional currency. -
EstTaxPERUnitInMatRequisitionBUCurrency: number
Read Only:
trueEstimated per unit nonrecoverable tax on the charge line in the material BU. -
EstTaxUnitInDocumentCurrency: number
Read Only:
trueEstimated per unit nonrecoverable tax on the charge line in the trade operation. -
ExtendedPrecision: integer
(int32)
Title:
Extended PrecisionRead Only:trueValue that identifies the extended precision. -
InventoryItemId: integer
(int64)
Read Only:
trueIdentifier for an inventory item. -
InventoryOrganizationId: integer
(int64)
Read Only:
trueIdentifier for the inventory organization. -
ItemNumber: string
Read Only:
trueMaximum Length:300Value that identifies the item number. -
LatestToShipLineChargeActualId: integer
Unique identifier of the latest charge invoice amounts allocated to the transfer order ship line in a trade operation.
-
LatestToShipLineChargeEstimateId: integer
Unique identifier of the latest charge estimate amounts allocated to the transfer order ship line in a trade operation.
-
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
LocationId: integer
(int64)
Read Only:
trueUnique identifier of the location at which the item is delivered. -
LocationName: string
Title:
Display NameRead Only:trueMaximum Length:240Location to which the item is delivered. -
MaterialRequisitionBUCurrencyCode: string
Maximum Length:
15Material requisition BU currency code. -
Precision: integer
(int32)
Title:
PrecisionRead Only:trueValue that identifies the currency precision. -
PrimaryUOMCode: string
Maximum Length:
3Value that identifies the primary UOM. -
QuantityReceived: number
Read Only:
trueQuantity on the transfer order receipt. -
QuantityShipped: number
Read Only:
trueQuantity shipped against the transfer order line. -
Rate: number
Value that indicates the allocation rate.
-
RequestedQuantity: number
Title:
Requested QuantityRead Only:trueRequested quantity on the transfer order line. -
SecondaryQuantityReceived: number
Read Only:
trueQuantity on the transfer order receipt in the secondary UOM. -
SecondaryQuantityShipped: number
Read Only:
trueOrdered quantity on the transfer order in the secondary UOM. -
SecondaryRequestedQuantity: number
Title:
Secondary Requested QuantityRead Only:trueRequested quantity on the transfer order line in the secondary UOM. -
ShipmentHeaderId: integer
(int64)
Read Only:
trueUnique identifier of the shipment header. -
ShipmentLineId: integer
(int64)
Unique identifier of the shipment line.
-
ShipmentLineNumber: integer
(int64)
Read Only:
trueLine number for the shipment for which landed cost charges are applied. -
ShipmentNumber: string
Read Only:
trueMaximum Length:30Value that identifies the shipment number. -
SourceOrganizationCode: string
Read Only:
trueMaximum Length:18Code for the organization transferring goods to the destination organization. -
SourceOrganizationId: integer
(int64)
Read Only:
trueUnique identifier for the organization transferring goods to the destination organization. -
ToshiplineChargeActualId: integer
(int64)
Read Only:
trueUnique identifier of the charge invoice amounts allocated to the transfer order ship line in a trade operation. -
ToshiplineChargeEstimateId: integer
(int64)
Read Only:
trueUnique identifier of the charge amounts allocated to the transfer order ship line in a trade operation. -
TrackedQuantity: number
Tracked quantity on the associated transfer order.
-
TradeOperationChargeId: integer
(int64)
Unique identifier of the trade operation charge.
-
TransferOrderId: integer
(int64)
Read Only:
trueValue that uniquely identifies the transfer order. -
TransferOrderLineId: integer
(int64)
Read Only:
trueValue that uniquely identifies the transfer order line. -
TransferOrderLineNumber: integer
(int32)
Title:
Transfer Order LineRead Only:trueTransfer order line number for the shipment. -
TransferOrderNumber: string
Title:
Transfer OrderRead Only:trueMaximum Length:50Transfer order number for the shipment. -
TropChargeToShipLineId: integer
(int64)
Unique identifier for the charge line transfer order shipment line association.
-
UnitOfMeasure: string
Title:
UOM NameRead Only:trueMaximum Length:25Unit of measure for the transfer order ship line quantity. -
UOMCode: string
Maximum Length:
3Unit of measure for the transfer order ship line quantity.
arrayLinksobject-
ChargeBU: string
Title:
Charge BURead Only:trueMaximum Length:240Value that indicates the requisitioning business unit that incurs the charge. -
ItemNumber: string
Title:
ItemRead Only:trueMaximum Length:300Number that identifies the item on the purchase order schedule. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
POCurrencyCode: string
Title:
PO CurrencyMaximum Length:15Value that identifies the currency on the purchase order. -
POLineLocationId: integer
(int64)
Title:
Purchase Order Line Location IDValue that uniquely identifies the purchase order shipment schedule. -
POLineNumber: string
Title:
Purchase Order LineRead Only:trueMaximum Length:40Number that identifies the line in the purchase order. -
PONumber: string
Title:
PO NumberRead Only:trueMaximum Length:40Number that identifies the purchase order. -
POPrimaryUOMCode: string
Title:
PO Primary UOMMaximum Length:3Value that identifies the primary unit of measure for the purchase order schedule quantity. -
POQuantityInPrimaryUOM: number
Title:
Ordered Quantity (Primary UOM)Ordered quantity on the purchase order in the primary unit of measure. -
POQuantityInSecondaryUOM: number
Title:
Ordered Quantity (Secondary UOM)Ordered quantity on the purchase order in the secondary unit of measure. -
POScheduleAmount: number
Title:
PO Schedule AmountRead Only:trueAmount on the purchase order schedule line. -
POScheduleFuncCurrencyAmount: number
Title:
PO Schedule Functional Currency AmountRead Only:trueAmount on the purchase order schedule line in the functional currency. -
POScheduleNumber: string
Title:
Purchase Order ScheduleRead Only:trueMaximum Length:40Number that identifies the schedule of the material purchase order line used for the landed cost estimate. -
POSecondaryUOMCode: string
Title:
PO Secondary UOMMaximum Length:3Value that identifies the secondary unit of measure for the purchase order schedule quantity. -
ProfitCenterBusinessUnit: string
Title:
Business UnitRead Only:trueMaximum Length:240Profit center business unit on the purchase order schedule. -
RequisitioningBusinessUnit: string
Title:
Business UnitRead Only:trueMaximum Length:240Requisitioning business unit on the purchase order schedule. -
TradeOperationDefaultPOScheduleId: integer
(int64)
Title:
Trade Operation Default PO Schedule IDValue that uniquely identifies the trade operation currency. -
TradeOperationId: integer
(int64)
Title:
Trade Operation IDValue that uniquely identifies the trade operation. -
UnitOfMeasure: string
Title:
Unit of MeasureRead Only:trueMaximum Length:25Unit of measure for the purchase order schedule quantity.
arrayLinksobject-
DestinationOrganization: string
Title:
Destination OrganizationRead Only:trueMaximum Length:18Destination organization receiving the item. -
DestinationOrganizationId: integer
(int64)
Title:
Destination OrganizationRead Only:trueValue that uniquely identifies the destination organization receiving the item. -
HeaderId: integer
(int64)
Title:
Shipment Header IDRead Only:trueValue that uniquely identifies a transfer order header. -
InventoryItemId: integer
(int64)
Title:
Item IDRead Only:trueValue that uniquely identifies the item. -
ItemNumber: string
Title:
ItemRead Only:trueMaximum Length:300Number that identifies the item. -
LineId: integer
(int64)
Title:
LineRead Only:trueValue that uniquely identifies a transfer order line. -
LineNumber: integer
(int32)
Title:
Line NumberRead Only:trueNumber that identifies the transfer order line associated with a trade operation. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
QuantityShipped: number
Title:
Shipped QuantityRead Only:trueQuantity shipped in the shipment. -
RequestedQuantity: number
Title:
Requested QuantityRead Only:trueRequested quantity of the shipment. -
ShipmentHeaderId: integer
(int64)
Title:
Shipment Header IDRead Only:trueValue that uniquely identifies a shipment header. -
ShipmentLineId: integer
(int64)
Title:
Shipment Line IDValue that Identifies the shipment line. -
ShipmentLineNumber: integer
(int64)
Title:
Shipment Line NumberRead Only:trueNumber that identifies the shipment line of a transfer order. -
ShipmentNumber: string
Title:
Shipment NumberRead Only:trueMaximum Length:30Number that Identifies the shipment number of a transfer order. -
ShippedDate: string
(date-time)
Title:
Shipped DateRead Only:trueValue that indicates the shipment date. -
SourceOrganization: string
Title:
Source OrganizationRead Only:trueMaximum Length:18Source organization from which the item is shipped. -
SourceOrganizationId: integer
(int64)
Title:
Source OrganizationRead Only:trueValue that uniquely identifies the source organization shipping the item. -
TradeOperationId: integer
(int64)
Title:
Trade Operation IDValue that uniquely identifies a trade operation. -
TransferOrder: string
Title:
Transfer OrderRead Only:trueMaximum Length:50Number that identifies the transfer order associated with a trade operation. -
TropDefaultToShipLineId: integer
(int64)
Value that uniquely identifies the default transfer order shipment lines associated with a trade operation.
-
UnitOfMeasure: string
Title:
Unit of MeasureRead Only:trueMaximum Length:25Unit of measure used for the transfer order shipment quantity. -
UOMCode: string
Title:
UOMRead Only:trueMaximum Length:3Unit of measure for the shipment quantity in the transfer order.
arrayLinksobject-
__FLEX_Context: string
Title:
Context SegmentMaximum Length:30Value that identifies the context for the Trade Operation descriptive flexfield. -
__FLEX_Context_DisplayValue: string
Title:
Context SegmentContext Segment -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
TradeOperationId: integer
(int64)
Value that uniquely identifies the trade operation.
arrayLinksobject-
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
LocationName: string
Title:
Display NameRead Only:trueMaximum Length:240Location where the item is delivered. -
ShipmentHeaderId: integer
(int64)
System generated value that uniquely identifies a shipment or an advanced shipment notice.
-
ShipmentNumber: string
Title:
Shipment NumberMaximum Length:30Value provided by the user that identifies a shipment or an advanced shipment notice. -
ShippedDate: string
(date-time)
Read Only:
trueValue that indicates the shipment date. -
ShipToLocation: string
Title:
NameRead Only:trueMaximum Length:60Location to which the item is delivered. -
Supplier: string
Title:
NameRead Only:trueMaximum Length:360Value that indicates the supplier for the shipment. -
SupplierSite: string
Title:
SiteRead Only:trueMaximum Length:240Value indicates the supplier site for the shipment. -
TradeOperationId: integer
(int64)
Title:
Trade Operation IDValue that uniquely identifies a trade operation. -
TradeOperationShipmentId: integer
(int64)
Value that uniquely identifies a shipment in the context of a trade operation.
arrayLinks- associateFilteredPOSchedulesAndAllocate
-
Operation: /fscmRestApi/resources/11.13.18.05/tradeOperations/action/associateFilteredPOSchedulesAndAllocateAssociate the filtered purchase order schedules with a trade operation.
- associateFilteredTOShipmentLinesAndAllocate
-
Associate filtered transfer order shipments with a trade operation.
- createTradeOperationAndCharges
-
Creates trade operations and charges.
- createTradeOperationFromFilteredSet
-
Operation: /fscmRestApi/resources/11.13.18.05/tradeOperations/action/createTradeOperationFromFilteredSetCreate trade operation for filtered set.
- createTradeOperationFromInvoices
-
Operation: /fscmRestApi/resources/11.13.18.05/tradeOperations/action/createTradeOperationFromInvoicesCreates trade operations, adds charges, and links them with invoice lines.
- createTradeOperationFromTemplate
-
Operation: /fscmRestApi/resources/11.13.18.05/tradeOperations/action/createTradeOperationFromTemplateCreates trade operations, adds charges from the template, and includes default purchase order schedules, default purchase order shipments, or default transfer order shipments.
- createTradeOperationFromTemplateForFilterSet
-
Creates trade operation from template for filtered set.
Examples
This example describes how to get all trade operations.
Example cURL Command
Use the following cURL command to submit a request on the REST resource:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations"
Example 1 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2015-12-11T16:06:52+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Receipt Acct Landed Cost Charges",
"TradeOperationId": 300100085591704,
"TradeOperationName": "CMLRRF-RcptAcct",
"TradeOperationNumber": 2,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
...
},
...
]
...
}
Example 2 cURL Command
Use the following cURL command to submit a request on the REST resource to get trade operation details with the name CMLRRF-RctAcct:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindTradeOperationName=CMLRRF-RcptAcct"
Example 2 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2015-12-11T16:06:52+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Receipt Acct Landed Cost Charges",
"TradeOperationId": 300100085591704,
"TradeOperationName": "CMLRRF-RcptAcct",
"TradeOperationNumber": 2,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [
... ]
} ],
"count" : 1,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [
...
]
}
Example 3cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details with trade operation number 19:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindTradeOperationNumber=19"
Example 3 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
CreationDate": "2018-04-04T06:30:01+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2018-04-04",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "QADesc_040318112903",
"TradeOperationId": 300100124647746,
"TradeOperationName": "QAName_040318112903",
"TradeOperationNumber": 19,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 8,
"links" : [
...
]
} ],
"count" : 1,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [
...
} ]
}
Example 4 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details with business unit as Vision Corporation:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindBusinessUnitName=Vision+Operations"
Example 4 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
""CreationDate": "2015-12-11T16:06:52+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Receipt Acct Landed Cost Charges",
"TradeOperationId": 300100085591704,
"TradeOperationName": "CMLRRF-RcptAcct",
"TradeOperationNumber": 2,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [
...
]
},
...
],
"count" : 25,
"hasMore" : true,
"limit" : 25,
"offset" : 0,
"links" : [
...
]
}
Example 5 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which are Open:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindStatusCode=OPEN"
Example 5 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2015-12-11T16:06:52+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Receipt Acct Landed Cost Charges",
"TradeOperationId": 300100085591704,
"TradeOperationName": "CMLRRF-RcptAcct",
"TradeOperationNumber": 2,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [
...
]
},
...
"count" : 25,
"hasMore" : true,
"limit" : 25,
"offset" : 0,
"links" : [
...
]
]
}
Example 6 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which are meant for the Route East-West:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindRouteName=East-South"
Example 6 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
""CreationDate": "2015-12-11T16:06:52+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Receipt Acct Landed Cost Charges",
"TradeOperationId": 300100085591704,
"TradeOperationName": "CMLRRF-RcptAcct",
"TradeOperationNumber": 2,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [ ... ]
},
...
],
"count" : 2,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [
...
]
}
Example 7 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which are updated between 2015-12-10 and 2015-12-11:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindFromDate=2015-12-10,bindToDate=2015-12-11"
Example 7 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2015-12-11T16:06:52+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Receipt Acct Landed Cost Charges",
"TradeOperationId": 300100085591704,
"TradeOperationName": "CMLRRF-RcptAcct",
"TradeOperationNumber": 2,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [ ...]
}, ...
],
"count" : 1,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ...]
}
Example 8 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details whose curerncy is USD:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindTradeOperationCurrency=USD"
Example 8 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2018-05-21T09:47:25+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2018-05-21",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "QADesc_05211824551",
"TradeOperationId": 300100149994620,
"TradeOperationName": "QAName_05211824551",
"TradeOperationNumber": 164,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [ ...]
},
...
],
"count" : 25,
"hasMore" : true,
"limit" : 25,
"offset" : 0,
"links" : [... ]
}
Example 9 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which were created from a template named Junit Test Template:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindTemplateName=Junit+Test+Template"
Example 9 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate" : "2011-12-13T14:21:06.263-08:00",
"CurrencyConversionRateType" : "Corporate",
"EstimatedTradeOperationAmount" : null,
"LastUpdateDate" : null,
"ProcurementBUId" : 204,
"ProcurementBU" : "Vision Corporation",
"RouteId" : null,
"Route" : null,
"TradeOperationCurrency" : "USD",
"TradeOperationDescription" : null,
"TradeOperationId" : 999888777000027,
"TradeOperationName" : "TestTradeOperName021",
"TradeOperationNumber" : 99080897,
"TradeOperationStatus" : "OPEN",
"TradeOperationTemplateId" : 999888777666111,
"TradeOperationTemplate" : "Junit Test Template",
"links" : [ ...]
} ],
"count" : 1,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ...]
}
Example 10 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindChargeBU=Vision+Services"
Example 10 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2017-07-21T15:16:08+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2017-07-21",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "QADesc_07211781502",
"TradeOperationId": 300100112121260,
"TradeOperationName": "QAName_07211781502",
"TradeOperationNumber": 13,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 8,
"links" : [ ... ]
},
...
],
"count" : 22,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ...]
}
Example 11 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which has charges of type SS_Freight:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindChargeName=SS_Freight"
Example 11 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
""CreationDate": "2018-05-08T11:57:28+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2018-05-08",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": null,
"TradeOperationId": 300100130015909,
"TradeOperationName": "ABtownTO45021",
"TradeOperationNumber": 109,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": 300100071793570,
"TradeOperationTemplate": "CMLRRFTemp1",
"EstimatedTradeOperationAmount": 3172.625,
"links" : [...]
},
...
],
"count" : 2,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ... ]
}
Example 12 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which have charges successfully alocated:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindChargeLineStatus=Successfully+allocated"
Example 12 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
""CreationDate": "2018-04-09T10:23:00.726+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2018-04-27",
"ProcurementBUId": 911,
"ProcurementBU": "Vision Corporation",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "EUR",
"TradeOperationDescription": "Multiple BU2",
"TradeOperationId": 300100125693616,
"TradeOperationName": "Multiple BU2",
"TradeOperationNumber": 1,
"TradeOperationStatus": "INACTIVE",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 140,
"links" : [ ...],
"count" : 1,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ...]
}
Example 13 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which have charges with Missing Invoice Flag selected:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindMissingInvoicesFlag=Y"
Example 13 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2018-04-09T10:23:00.726+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2018-04-27",
"ProcurementBUId": 911,
"ProcurementBU": "Vision Corporation",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "EUR",
"TradeOperationDescription": "Multiple BU2",
"TradeOperationId": 300100125693616,
"TradeOperationName": "Multiple BU2",
"TradeOperationNumber": 1,
"TradeOperationStatus": "INACTIVE",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 140,
"links" : [...
]
},
...
],
"count" : 8,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ... ]
}
Example 14 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which have charges in Tentative State:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindChargesInTentativeState=Y"
Example 14 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2018-04-26T15:02:37+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2018-04-26",
"ProcurementBUId": 458,
"ProcurementBU": "Vision Services",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "LM-VS-TO2",
"TradeOperationId": 300100128626344,
"TradeOperationName": "LM-VS-TO2",
"TradeOperationNumber": 3,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [ ...]
},
...
],
"count" : 2,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ... ]
}
Example 15 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which have charges which are not applicable for tax:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindTaxApplicableFlag=N"
Example 15 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2018-05-08T15:14:48+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2018-05-08",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Cost Account disparate Charge Lines TO",
"TradeOperationId": 300100130023969,
"TradeOperationName": "Cost Account disparate Charge Lines TO",
"TradeOperationNumber": 114,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 105,
"links" : [ ... ]
},
...
],
"count" : 21,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [...]
}
Example 16 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which have charges with supplier as CV_SuppA01:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindChargeSupplier=CV_SuppA01"
Example 16 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate": "2017-02-23T11:46:48+00:00",
"CurrencyConversionRateType": "Corporate",
"LastUpdateDate": "2017-02-23",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Corporation",
"RouteId": 300100089911039,
"Route": "zR13OTBI_NS",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "zR13OTBI_TR002",
"TradeOperationId": 300100089911166,
"TradeOperationName": "zR13OTBI_TR002",
"TradeOperationNumber": 4,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"links" : [ ...],
"count" : 1,
"hasMore" : false,
"limit" : 25,
"offset" : 0,
"links" : [ ... ]
}
Example 17 cURL Command
Use the following cURL command to submit a request on the REST resource to get all trade operation details which have charges that are applicable for tax:
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations?finder=findTradeOperations;bindTaxApplicableFlag=Y"
Example 17 Response Body
The following shows an example of the response body in JSON format.
{
"items" : [ {
"CreationDate" : "2018-02-26T08:54:15+00:00",
"CurrencyConversionRateType" : "EXP_Corporate",
"CurrencyConversionRateTypeCode" : "100000011204016",
"LastUpdateDate" : "2018-03-19",
"ProcurementBUId" : 204,
"ProcurementBU" : "Vision Corporation",
"RouteId" : null,
"Route" : null,
"TradeOperationCurrency" : "USD",
"TradeOperationDescription" : "YHY03",
"TradeOperationId" : 300100124650255,
"TradeOperationName" : "YHY03",
"TradeOperationNumber" : 31,
"TradeOperationStatus" : "OPEN",
"TradeOperationTemplateId" : null,
"TradeOperationTemplate" : null,
"EstimatedTradeOperationAmount" : 0,
"links" : [ {
"rel" : "self",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255",
"name" : "tradeOperations",
"kind" : "item",
"properties" : {
"changeIndicator" : "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000778"
}
}, {
"rel" : "canonical",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255",
"name" : "tradeOperations",
"kind" : "item"
}, {
"rel" : "lov",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255/lov/StatusLOV",
"name" : "StatusLOV",
"kind" : "collection"
}, {
"rel" : "lov",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255/lov/BusinessUnitLOV",
"name" : "BusinessUnitLOV",
"kind" : "collection"
}, {
"rel" : "lov",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255/lov/CurrencyCodeLOV",
"name" : "CurrencyCodeLOV",
"kind" : "collection"
}, {
"rel" : "lov",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255/lov/ConversionTypeLOV",
"name" : "ConversionTypeLOV",
"kind" : "collection"
}, {
"rel" : "lov",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255/lov/RouteLOV",
"name" : "RouteLOV",
"kind" : "collection"
}, {
"rel" : "child",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255/child/charges",
"name" : "charges",
"kind" : "collection"
}, {
"rel" : "child",
"href" : "https://servername/fscmRestApi/resources/version/tradeOperations/300100124650255/child/defaultPoSchedules",
"name" : "defaultPoSchedules",
"kind" : "collection"
} ]
}, {
"CreationDate" : "2018-03-19T13:57:46+00:00",
"CurrencyConversionRateType" : "Corporate",
"CurrencyConversionRateTypeCode" : "Corporate",
"LastUpdateDate" : "2018-03-19",
"ProcurementBUId" : 204,
"ProcurementBU" : "Vision Corporation",
"RouteId" : null,
"Route" : null,
"TradeOperationCurrency" : "USD",
"TradeOperationDescription" : null,
"TradeOperationId" : 300100124966730,
"TradeOperationName" : "kdjf",
"TradeOperationNumber" : 38,
"TradeOperationStatus" : "OPEN",
"TradeOperationTemplateId" : null,
"TradeOperationTemplate" : null,
"EstimatedTradeOp
Example 18 cURL Command
This example describes how to get all trade operations when Allocate Landed Cost Charges using the ASN Quantity feature is opted-in.
curl -u username:password "https://servername/fscmRestApi/resources/version/tradeOperations"
Example 18 Response Body
The following shows an example of the response body in JSON format.
{
"items": [
{
"CurrencyConversionRateType": "Corporate",
"CreationDate": "2018-05-25T15:49:59+00:00",
"CurrencyConversionRateTypeCode": "Corporate",
"LastUpdateDate": "2018-05-25",
"ProcurementBUId": 888,
"ProcurementBU": "Vision France - Organization",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "EUR",
"TradeOperationDescription": "CMLREST-France1 Description",
"TradeOperationId": 300100152661965,
"TradeOperationName": "CMLREST-France1",
"TradeOperationNumber": 1,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"AllocationQuantityTypeCode": "PO_QTY",
"AllocationQuantityType": "Purchase Order Schedule Quantity",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965",
"name": "tradeOperations",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965",
"name": "tradeOperations",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/lov/BusinessUnitLOV",
"name": "BusinessUnitLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/lov/RouteLOV",
"name": "RouteLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/lov/StatusLOV",
"name": "StatusLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/lov/CurrencyCodeLOV",
"name": "CurrencyCodeLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/lov/ConversionTypeLOV",
"name": "ConversionTypeLOV",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/child/charges",
"name": "charges",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/child/defaultPOSchedules",
"name": "defaultPOSchedules",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100152661965/child/tradeOperationShipments",
"name": "tradeOperationShipments",
"kind": "collection"
}
]
},
{
"CurrencyConversionRateType": "Corporate",
"CreationDate": "2015-12-11T16:06:52+00:00",
"CurrencyConversionRateTypeCode": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Operations",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Receipt Acct Landed Cost Charges",
"TradeOperationId": 300100085591704,
"TradeOperationName": "CMLRRF-RcptAcct",
"TradeOperationNumber": 2,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"AllocationQuantityTypeCode": "PO_QTY",
"AllocationQuantityType": "Purchase Order Schedule Quantity",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704",
"name": "tradeOperations",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000F78"
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704",
"name": "tradeOperations",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/lov/BusinessUnitLOV",
"name": "BusinessUnitLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/lov/RouteLOV",
"name": "RouteLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/lov/StatusLOV",
"name": "StatusLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/lov/CurrencyCodeLOV",
"name": "CurrencyCodeLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/lov/ConversionTypeLOV",
"name": "ConversionTypeLOV",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/child/charges",
"name": "charges",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/child/defaultPOSchedules",
"name": "defaultPOSchedules",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591704/child/tradeOperationShipments",
"name": "tradeOperationShipments",
"kind": "collection"
}
]
},
{
"CurrencyConversionRateType": "Corporate",
"CreationDate": "2015-12-11T14:55:11+00:00",
"CurrencyConversionRateTypeCode": "Corporate",
"LastUpdateDate": "2015-12-11",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Operations",
"RouteId": 300100071793259,
"Route": "East-South",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Reconcile Charge Lines",
"TradeOperationId": 300100085591680,
"TradeOperationName": "CMLRRF-AdjBal",
"TradeOperationNumber": 1,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 3188.25,
"AllocationQuantityTypeCode": "PO_QTY",
"AllocationQuantityType": "Purchase Order Schedule Quantity",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680",
"name": "tradeOperations",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000001278"
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680",
"name": "tradeOperations",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/lov/BusinessUnitLOV",
"name": "BusinessUnitLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/lov/RouteLOV",
"name": "RouteLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/lov/StatusLOV",
"name": "StatusLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/lov/CurrencyCodeLOV",
"name": "CurrencyCodeLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/lov/ConversionTypeLOV",
"name": "ConversionTypeLOV",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/child/charges",
"name": "charges",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/child/defaultPOSchedules",
"name": "defaultPOSchedules",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100085591680/child/tradeOperationShipments",
"name": "tradeOperationShipments",
"kind": "collection"
}
]
},
{
"CurrencyConversionRateType": "Corporate",
"CreationDate": "2017-02-24T08:25:16+00:00",
"CurrencyConversionRateTypeCode": "Corporate",
"LastUpdateDate": "2017-02-24",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Operations",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "Exp Dest",
"TradeOperationId": 300100089911244,
"TradeOperationName": "Exp Dest",
"TradeOperationNumber": 7,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 4000,
"AllocationQuantityTypeCode": "PO_QTY",
"AllocationQuantityType": "Purchase Order Schedule Quantity",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244",
"name": "tradeOperations",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000378"
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244",
"name": "tradeOperations",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/lov/BusinessUnitLOV",
"name": "BusinessUnitLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/lov/RouteLOV",
"name": "RouteLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/lov/StatusLOV",
"name": "StatusLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/lov/CurrencyCodeLOV",
"name": "CurrencyCodeLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/lov/ConversionTypeLOV",
"name": "ConversionTypeLOV",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/child/charges",
"name": "charges",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/child/defaultPOSchedules",
"name": "defaultPOSchedules",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911244/child/tradeOperationShipments",
"name": "tradeOperationShipments",
"kind": "collection"
}
]
},
{
"CurrencyConversionRateType": "Corporate",
"CreationDate": "2017-03-06T11:49:41+00:00",
"CurrencyConversionRateTypeCode": "Corporate",
"LastUpdateDate": "2017-03-06",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Operations",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "CDRM_CML_Test",
"TradeOperationId": 300100110402946,
"TradeOperationName": "CDRM_CML_Test",
"TradeOperationNumber": 9,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"AllocationQuantityTypeCode": "PO_QTY",
"AllocationQuantityType": "Purchase Order Schedule Quantity",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946",
"name": "tradeOperations",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000478"
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946",
"name": "tradeOperations",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/lov/BusinessUnitLOV",
"name": "BusinessUnitLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/lov/RouteLOV",
"name": "RouteLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/lov/StatusLOV",
"name": "StatusLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/lov/CurrencyCodeLOV",
"name": "CurrencyCodeLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/lov/ConversionTypeLOV",
"name": "ConversionTypeLOV",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/child/charges",
"name": "charges",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/child/defaultPOSchedules",
"name": "defaultPOSchedules",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100110402946/child/tradeOperationShipments",
"name": "tradeOperationShipments",
"kind": "collection"
}
]
},
{
"CurrencyConversionRateType": "Corporate",
"CreationDate": "2017-02-23T11:46:48+00:00",
"CurrencyConversionRateTypeCode": "Corporate",
"LastUpdateDate": "2017-02-23",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Operations",
"RouteId": 300100089911039,
"Route": "zR13OTBI_NS",
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "zR13OTBI_TR002",
"TradeOperationId": 300100089911166,
"TradeOperationName": "zR13OTBI_TR002",
"TradeOperationNumber": 4,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": null,
"AllocationQuantityTypeCode": "PO_QTY",
"AllocationQuantityType": "Purchase Order Schedule Quantity",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166",
"name": "tradeOperations",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000578"
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166",
"name": "tradeOperations",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/lov/BusinessUnitLOV",
"name": "BusinessUnitLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/lov/RouteLOV",
"name": "RouteLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/lov/StatusLOV",
"name": "StatusLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/lov/CurrencyCodeLOV",
"name": "CurrencyCodeLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/lov/ConversionTypeLOV",
"name": "ConversionTypeLOV",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/child/charges",
"name": "charges",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/child/defaultPOSchedules",
"name": "defaultPOSchedules",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911166/child/tradeOperationShipments",
"name": "tradeOperationShipments",
"kind": "collection"
}
]
},
{
"CurrencyConversionRateType": "Corporate",
"CreationDate": "2017-02-24T07:26:11+00:00",
"CurrencyConversionRateTypeCode": "Corporate",
"LastUpdateDate": "2023-05-03",
"ProcurementBUId": 204,
"ProcurementBU": "Vision Operations",
"RouteId": null,
"Route": null,
"TradeOperationCurrency": "USD",
"TradeOperationDescription": "ExpDestTo1",
"TradeOperationId": 300100089911237,
"TradeOperationName": "ExpDestTo1",
"TradeOperationNumber": 6,
"TradeOperationStatus": "OPEN",
"TradeOperationTemplateId": null,
"TradeOperationTemplate": null,
"EstimatedTradeOperationAmount": 4000,
"AllocationQuantityTypeCode": "PO_QTY",
"AllocationQuantityType": "Purchase Order Schedule Quantity",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237",
"name": "tradeOperations",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000478"
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237",
"name": "tradeOperations",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/lov/BusinessUnitLOV",
"name": "BusinessUnitLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/lov/RouteLOV",
"name": "RouteLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/lov/StatusLOV",
"name": "StatusLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/lov/CurrencyCodeLOV",
"name": "CurrencyCodeLOV",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/lov/ConversionTypeLOV",
"name": "ConversionTypeLOV",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/child/charges",
"name": "charges",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/child/defaultPOSchedules",
"name": "defaultPOSchedules",
"kind": "collection"
},
{
"rel": "child",
"href": "https://servername/fscmRestApi/resources/version/tradeOperations/300100089911237/child/tradeOperationShipments",
"name": "tradeOperationShipments",
"kind": "collection"
}
]
}