Error when inserting values into queue through APPs

Hello,

I’m facing issues adding specific data along with my transaction to the queue through apps.

I’ve created an app that insert 2 parameters into an Entity and additionally, I want those 2 parameters to be inserted into my queue called “COEDF_ResponsablesCuenta”.

In order to do that, I’ve defined the following json schema for the specific values:

{
“definitions”: {},
“$schema”: “http://json-schema.org/draft-07/schema#”,
“$id”: “http://example.com/root.json”,
“type”: “object”,
“title”: “The Root Schema”,
“properties”: {
“ResponsableCuenta”: {
“type”: “string”
},
“FechaExtraccion”: {
“type”: “string”
}
}
}

What I’ doing in apps configuration to insert the transaction into the queue is this:

image

Where I’ve just configured messages in case it’s succesfully or error.

When I test this the transaccion is created into the queue but no specific data is created:

I’ve also try to configure the app activity like this:

image

But it’s the same, I’m not getting any specific data into the transaction.

Anyone has faced this issue?

Thanks

@ArantzaCuellar ,

Did you check if you are passing the valid data to input?

Thanks,
AK

Hi,

Yes the data was valid. I’ve already found the “solution”. I don’t know if this is how it’s supossed to work but I used new variables instead the ones created automatically from the boxes and it worked.

Thanks for your help I hope this could be helpfull for anyone else.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.