d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
312 lines
11 KiB
TypeScript
312 lines
11 KiB
TypeScript
import type { ListSuppliersParams, SapProxyResponse } from '@/tools/sap_s4hana/types'
|
|
import {
|
|
baseProxyBody,
|
|
buildOdataQuery,
|
|
SAP_PROXY_URL,
|
|
transformSapProxyResponse,
|
|
} from '@/tools/sap_s4hana/utils'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const listSuppliersTool: ToolConfig<ListSuppliersParams, SapProxyResponse> = {
|
|
id: 'sap_s4hana_list_suppliers',
|
|
name: 'SAP S/4HANA List Suppliers',
|
|
description:
|
|
'List suppliers from SAP S/4HANA Cloud (API_BUSINESS_PARTNER, A_Supplier) with optional OData $filter, $top, $skip, $orderby, $select, $expand.',
|
|
version: '1.0.0',
|
|
params: {
|
|
subdomain: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description:
|
|
'SAP BTP subaccount subdomain (technical name of your subaccount, not the S/4HANA host)',
|
|
},
|
|
region: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'BTP region (e.g. eu10, us10)',
|
|
},
|
|
clientId: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'OAuth client ID from the S/4HANA Communication Arrangement',
|
|
},
|
|
clientSecret: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'OAuth client secret from the S/4HANA Communication Arrangement',
|
|
},
|
|
deploymentType: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Deployment type: cloud_public (default), cloud_private, or on_premise',
|
|
},
|
|
authType: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Authentication type: oauth_client_credentials (default) or basic',
|
|
},
|
|
baseUrl: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Base URL of the S/4HANA host (Cloud Private / On-Premise)',
|
|
},
|
|
tokenUrl: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'OAuth token URL (Cloud Private / On-Premise + OAuth)',
|
|
},
|
|
username: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Username for HTTP Basic auth',
|
|
},
|
|
password: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-only',
|
|
description: 'Password for HTTP Basic auth',
|
|
},
|
|
filter: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'OData $filter expression (e.g., "SupplierAccountGroup eq \'BP02\'")',
|
|
},
|
|
top: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Maximum results to return ($top)',
|
|
},
|
|
skip: {
|
|
type: 'number',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Number of results to skip ($skip)',
|
|
},
|
|
orderBy: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'OData $orderby expression',
|
|
},
|
|
select: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description: 'Comma-separated fields to return ($select)',
|
|
},
|
|
expand: {
|
|
type: 'string',
|
|
required: false,
|
|
visibility: 'user-or-llm',
|
|
description:
|
|
'Comma-separated navigation properties to expand (e.g., "to_SupplierCompany,to_SupplierPurchasingOrg")',
|
|
},
|
|
},
|
|
request: {
|
|
url: SAP_PROXY_URL,
|
|
method: 'POST',
|
|
headers: () => ({ 'Content-Type': 'application/json' }),
|
|
body: (params) => ({
|
|
...baseProxyBody(params),
|
|
service: 'API_BUSINESS_PARTNER',
|
|
path: '/A_Supplier',
|
|
method: 'GET',
|
|
query: buildOdataQuery(params),
|
|
}),
|
|
},
|
|
transformResponse: transformSapProxyResponse,
|
|
outputs: {
|
|
status: { type: 'number', description: 'HTTP status code returned by SAP' },
|
|
data: {
|
|
type: 'json',
|
|
description: 'OData v2 response envelope; collection at output.data.d.results',
|
|
properties: {
|
|
d: {
|
|
type: 'json',
|
|
description: 'OData v2 envelope',
|
|
properties: {
|
|
results: {
|
|
type: 'array',
|
|
description: 'A_Supplier entities',
|
|
items: {
|
|
type: 'object',
|
|
properties: {
|
|
Supplier: { type: 'string', description: 'Supplier key (up to 10 characters)' },
|
|
AlternativePayeeAccountNumber: {
|
|
type: 'string',
|
|
description: 'Account number of the alternative payee',
|
|
optional: true,
|
|
},
|
|
AuthorizationGroup: {
|
|
type: 'string',
|
|
description: 'Authorization group',
|
|
optional: true,
|
|
},
|
|
BusinessPartner: {
|
|
type: 'string',
|
|
description: 'Linked BusinessPartner key',
|
|
optional: true,
|
|
},
|
|
BR_TaxIsSplit: {
|
|
type: 'boolean',
|
|
description: 'Brazil-specific tax split flag',
|
|
optional: true,
|
|
},
|
|
CreatedByUser: {
|
|
type: 'string',
|
|
description: 'User who created the supplier',
|
|
optional: true,
|
|
},
|
|
CreationDate: {
|
|
type: 'string',
|
|
description: 'Creation date (OData v2 epoch)',
|
|
optional: true,
|
|
},
|
|
Customer: {
|
|
type: 'string',
|
|
description: 'Linked customer key (if any)',
|
|
optional: true,
|
|
},
|
|
DeletionIndicator: {
|
|
type: 'boolean',
|
|
description: 'Central deletion flag',
|
|
optional: true,
|
|
},
|
|
BirthDate: {
|
|
type: 'string',
|
|
description: 'Date of birth (OData v2 epoch)',
|
|
optional: true,
|
|
},
|
|
ConcatenatedInternationalLocNo: {
|
|
type: 'string',
|
|
description: 'Concatenated international location number',
|
|
optional: true,
|
|
},
|
|
FiscalAddress: {
|
|
type: 'string',
|
|
description: 'Fiscal address number',
|
|
optional: true,
|
|
},
|
|
Industry: { type: 'string', description: 'Industry key', optional: true },
|
|
InternationalLocationNumber1: {
|
|
type: 'string',
|
|
description: 'International location number, part 1',
|
|
optional: true,
|
|
},
|
|
InternationalLocationNumber2: {
|
|
type: 'string',
|
|
description: 'International location number, part 2',
|
|
optional: true,
|
|
},
|
|
InternationalLocationNumber3: {
|
|
type: 'string',
|
|
description: 'International location number, part 3',
|
|
optional: true,
|
|
},
|
|
IsNaturalPerson: {
|
|
type: 'boolean',
|
|
description: 'Indicates whether the supplier is a natural person',
|
|
optional: true,
|
|
},
|
|
PaymentIsBlockedForSupplier: {
|
|
type: 'boolean',
|
|
description: 'Payment block flag',
|
|
optional: true,
|
|
},
|
|
PostingIsBlocked: {
|
|
type: 'boolean',
|
|
description: 'Posting block flag',
|
|
optional: true,
|
|
},
|
|
PurchasingIsBlocked: {
|
|
type: 'boolean',
|
|
description: 'Purchasing block flag',
|
|
optional: true,
|
|
},
|
|
ResponsibleType: {
|
|
type: 'string',
|
|
description: 'Type of business (Brazil)',
|
|
optional: true,
|
|
},
|
|
SupplierAccountGroup: {
|
|
type: 'string',
|
|
description: 'Supplier account group',
|
|
optional: true,
|
|
},
|
|
SupplierCorporateGroup: {
|
|
type: 'string',
|
|
description: 'Corporate group identifier',
|
|
optional: true,
|
|
},
|
|
SupplierFullName: {
|
|
type: 'string',
|
|
description: 'Full name of the supplier',
|
|
optional: true,
|
|
},
|
|
SupplierName: { type: 'string', description: 'Supplier name', optional: true },
|
|
SupplierProcurementBlock: {
|
|
type: 'string',
|
|
description: 'Procurement block at supplier level',
|
|
optional: true,
|
|
},
|
|
SuplrProofOfDelivRlvtCode: {
|
|
type: 'string',
|
|
description: 'Proof of delivery relevance code',
|
|
optional: true,
|
|
},
|
|
SuplrQltyInProcmtCertfnValidTo: {
|
|
type: 'string',
|
|
description: 'Quality certification validity end date (OData v2 epoch)',
|
|
optional: true,
|
|
},
|
|
SuplrQualityManagementSystem: {
|
|
type: 'string',
|
|
description: 'Quality management system of the supplier',
|
|
optional: true,
|
|
},
|
|
TaxNumber1: { type: 'string', description: 'Tax number 1', optional: true },
|
|
TaxNumber2: { type: 'string', description: 'Tax number 2', optional: true },
|
|
TaxNumber3: { type: 'string', description: 'Tax number 3', optional: true },
|
|
TaxNumber4: { type: 'string', description: 'Tax number 4', optional: true },
|
|
TaxNumber5: { type: 'string', description: 'Tax number 5', optional: true },
|
|
TaxNumberResponsible: {
|
|
type: 'string',
|
|
description: 'Tax number of responsible party',
|
|
optional: true,
|
|
},
|
|
TaxNumberType: {
|
|
type: 'string',
|
|
description: 'Tax number type',
|
|
optional: true,
|
|
},
|
|
VATRegistration: {
|
|
type: 'string',
|
|
description: 'VAT registration number',
|
|
optional: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
__next: {
|
|
type: 'string',
|
|
description: 'OData skiptoken URL for next page',
|
|
optional: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|