Options
All
  • Public
  • Public/Protected
  • All
Menu

Create OData request to execute a function import.

Type parameters

  • ParametersT

    Type of the function import parameters

  • ReturnT

    Type of the function import return value

Hierarchy

Index

Constructors

  • Creates an instance of FunctionImportRequestBuilder.

    Type parameters

    • ParametersT

    • ReturnT

    Parameters

    • defaultServicePath: string

      Default path for the service the function belongs to

    • functionImportName: string

      The name of the function import.

    • responseTransformer: (data: any) => ReturnT

      Transformation function for the response

        • (data: any): ReturnT
        • Parameters

          • data: any

          Returns ReturnT

    • parameters: FunctionImportParameters<ParametersT>

      Parameters to be set in the function

    Returns FunctionImportRequestBuilderV4<ParametersT, ReturnT>

Properties

requestConfig: ODataFunctionImportRequestConfig<ParametersT> | ODataActionImportRequestConfig<ParametersT>
responseTransformer: (data: any) => ReturnT

Type declaration

    • (data: any): ReturnT
    • Parameters

      • data: any

      Returns ReturnT

Methods

  • Add custom headers to the request. Existing headers will be overwritten.

    Parameters

    • headers: Record<string, string>

      Key-value pairs denoting additional custom headers.

    Returns FunctionImportRequestBuilderV4<ParametersT, ReturnT>

    The request builder itself, to facilitate method chaining.

  • Add custom query parameters to the request. If a query parameter with the given name already exists it is overwritten.

    Parameters

    • queryParameters: Record<string, string>

      Key-value pairs denoting additional custom query parameters to be set in the request.

    Returns FunctionImportRequestBuilderV4<ParametersT, ReturnT>

    The request builder itself, to facilitate method chaining

  • Add a custom request configuration to the request. Typically, this is used when specifying a response type for downloading files. If the custom request configuration contains disallowed keys, those will be ignored.

    Parameters

    • requestConfiguration: Record<string, string>

      Key-value pairs denoting additional custom request configuration options to be set in the request.

    Returns FunctionImportRequestBuilderV4<ParametersT, ReturnT>

    The request builder itself, to facilitate method chaining.

  • Append the given path to the URL. This can be used for querying navigation properties of an entity. To execute a request with an appended path use executeRaw to avoid errors during deserialization. When using this, the execute method is omitted from the return type.

    Parameters

    • Rest ...path: string[]

      Path to be appended.

    Returns Omit<FunctionImportRequestBuilderV4<ParametersT, ReturnT>, "execute">

    The request builder itself without "execute" function, to facilitate method chaining.

  • relativeUrl(): string
  • Create the relative URL based on configuration of the given builder.

    Returns string

    The relative URL for the request

  • Replace the default service path with the given custom path. In case of the SAP S/4HANA APIs the servicePath defaults to /sap/opu/odata/sap/<SERVICE_NAME> and can be overwritten here.

    Parameters

    • servicePath: string

      Path to override the default with

    Returns FunctionImportRequestBuilderV4<ParametersT, ReturnT>

    The request builder itself, to facilitate method chaining

  • deprecated

    Since version 1.34.0 Use setCustomServicePath instead. Replace the default service path with the given custom path. In case of the SAP S/4HANA APIs the servicePath defaults to /sap/opu/odata/sap/<SERVICE_NAME> and can be overwritten here.

    Parameters

    • servicePath: string

      Path to override the default with.

    Returns FunctionImportRequestBuilderV4<ParametersT, ReturnT>

    The request builder itself, to facilitate method chaining.

    Copyright Ⓒ 2023 SAP SE or an SAP affiliate company. All rights reserved.