Step 2: Create a BDL RECORD for the input parameters

Add a new modular BDL record where all members map to one of your I4GL Web service input parameter, and keep the parameter order as defined in I4GL .4cf file.

You must then specify the Web service input message name via the Genero XML attribute called XMLName, and assign it to the FUNCTION NAME as defined in the I4GL .4cf file.

For example, in the I4GL zipcode demo there is only one parameter: pin. So add the following record at the beginning of the Genero file:
DEFINE zipcode_details_in RECORD ATTRIBUTES(XMLName="zipcode_details")
  pin CHAR(10)
  END RECORD
Note: Genero Web Services supports complex data types as input parameters.