Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

USE: 

Join tables are used to configure SQL join conditions for table configured in the step. The join table might be used both for selection criteria as well as read additional fields to compare.

PROCEDURE:

  1. Select the Step and table that you would like to add join condition
  2. Double click on Join Tables
  3. Add table name, save and mark added row
  4. Double click on Join Conditions
  5. Add the fields from initial and joined tables

EXAMPLE:

In the step there is VBAK table and we would like to join it with VBKD table to read additional information

sample configuration for joining sales order item with Sales order Business Data: 

Screen 1:

Table Name

VBKD

Screen 2:

Field Name

Join Field Name
VBELNVBELN

Above will generate following SQL statement:

SELECT () FROM VBAK JOIN VBKD ON VBAK~VBELN = VBKD~VBELN

  • No labels