Integration tutorial

Hello,

according to the steps given by expression service backed integration tutorial (https://docs.appian.com/suite/help/18.3/Service-Backed_Record_Tutorial.html) we are facing a strange problem:

after estabilished a connection, as suggested, to web site The Movie DataBase, and after creation of a record "Movie", we copy and paste code for user filter of record (by movie genre), but

the filter doesn't work...Also, in the Create summary view section, there was an error, as the local!result hasn't to use the a!fromJson component...

Is there someone with the same problem? 

 

Thank you an best regards

Fabrizio

  Discussion posts and replies are publicly visible

Parents Reply
  • Hello Jerry,
    the code is taken directly from the integration tutorial, we have not made changes. The record displays, the summary view works, but the user filter, when selected, doesn't effect any change on grid visualization.
    Anyway, the code is:

    with(
    local!genres: rule!ExampleGetMovieList().result.body.genres,
    a!facet(
    name: "Genres",
    allowMultipleSelections: false,
    options: {
    a!forEach(
    local!genres,
    a!facetOption(
    id: fv!index,
    name: fv!item.name,
    filter: a!queryFilter(
    field: "genre_ids",
    operator: "=",
    value: tointeger(fv!item.id)
    )
    )
    )
    }
    )
    )

    Best regards
    Fabrizio
Children
No Data