Mentor SAP
As the XML runtime of AIF is used to process the data sets, a runtime configuration group can be specified. This allows you to define whether the messages are processed in the same session or background jobs are created. Furthermore, this defines how many messages are processed within one run or package.

 

There are no default settings for uploading a file. To upload a file, the minimum information required is the file type, file content, and text type. To map the file to the interface, the structure name and the field name, to where the file content is moved during the upload, is required:

 

Source Structure

To be able to process files in AIF, you need a DDIC structure that matches the file. How do you create this structure?

 

For example, the file contains a table with IDs, names, and cities. The ID is 6 characters long. The name can be 30 characters long and the city can be 60 characters long.

 

In this case, the source structure must contain a table containing the different entries. The table is defined by the different fields of the file.

 

The line type is a structure with the following fields: ID Char 6, Name Char 30, and City Char 60. This structure is used as line type for the table. The table is then included into the source structure.

 

Destination Structure