Get CSV Report By ID - Cached Copy (Previously Generated)
Parameters
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
If the column you are looking for is missing, consider customizing Amazon MWS Connector.
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Amazon MWS Connector in API Source component to read data or in API Destination component to read/write data:
Get CSV Report By ID - Cached Copy (Previously Generated) using API Source
Amazon MWS
Get CSV Report By ID - Cached Copy (Previously Generated)

Get CSV Report By ID - Cached Copy (Previously Generated) using API Destination
Amazon MWS
Get CSV Report By ID - Cached Copy (Previously Generated)

ODBC application
Use these SQL queries in your ODBC application data source:
Get csv report by id - cached copy
SELECT * FROM GetReportCsv
WITH
(
"ReportId" = 'abcd-1234-reportid'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get csv report by id - cached copy
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM GetReportCsv
WITH
(
"ReportId" = ''abcd-1234-reportid''
)';
EXEC (@MyQuery) AT [LS_TO_AMAZON_MWS_IN_GATEWAY];