Question

XML Resource

  • 4 August 2023
  • 2 replies
  • 92 views

Userlevel 1
Badge +5
  • Sidekick (Customer)
  • 10 replies

I am new to using XML in FSM. Is there a resource that I can turn to that shows the capabilities of XML in FSM?

ie. Basic, intermediate, and advanced XML examples in FSM?

Another question: How can you have a data constraint with multiple items? In SQL we would use: “where question_id in (100,200,300)”


2 replies

Userlevel 6
Badge +23

Hi!

Did you check the FSM Connect documentation? I have it attached for you on this post.

 

Best regards
Roman

Userlevel 2
Badge +6

Hi I am attaching a FSM XML document. It is a little old, but still very good and should provide you with most of your needs.  Also in xml you can use ‘IN’ just like in sql it would look like the following

<constraint>

<left_operand>product.product_id</left_operand>

<operator>in</operator>

<right_operand>('JAN', 'FEB', 'MAR','APR','MAY','JUN','JUL','AUG','SEPT','OCT','NOV','DEC')</right_operand>

</constraint>

 

I hope this helps

Regards,

Morris

Reply