Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

SQL Table parameters error

Hi,

I have a problem with this parameters:

Original:

{

          "field":"LOW",

          "length":2,

          "type":"CHAR",

          "values":

           ["04"]

Actual (not working):

{

          "field":"LOW",

          "length":2,

          "type":"CHAR",

          "values":

          ["04","09","11"]


What's wrong with this?

Labels (3)
1 Reply
Anil_Babu_Samineni

With in the JSON it is very touch to split the values from Parameters while we connect to REST connector.

RC:

SQL SELECT

    A, B, C, D

FROM JSON (wrap on) "root"

WITH CONNECTION (

QUERY "ProductId" "$(vProductId)");

Load A, B, C, D, SubField("root", '@') as "root" Resident RC;

Here "root" is my Query parameters which constantly stored in REST connector section.

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful