SOAP call in custom picker field

Hi, i am trying to make a SOAP call from custom picker field suggest function but somehow i am unable to get the expected results.

Has anybody tried this before? Any insight would be appreciated.

  Discussion posts and replies are publicly visible

Parents Reply
  • Hi stefan, I have configured my picker field as follows

    load(
    local!requesttext,
    a!formLayout(
    firstColumnContents: {
    a!pickerFieldCustom(
    label: "Address",
    required: true,
    maxSelections: 1,
    suggestFunction: rule!TEST_ucArrayPickerFilterFor( /* This expression rule has advancedwebserviceendpointquery() which is returning correct results when tested independently */
    filter: _
    ),
    selectedLabels: index(
    rule!TEST_ucArrayPickerFilterFor(
    filter: _
    ),
    "data",
    null
    ),
    value: local!requesttext,
    saveInto: local!requesttext
    )

    Am i missing something in configurations?

    Thanks
Children