Skip to main content
Question

XML Resource

  • August 4, 2023
  • 2 replies
  • 143 views

Forum|alt.badge.img+8

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

roklde
Superhero (Employee)
Forum|alt.badge.img+27
  • Superhero (Employee)
  • August 7, 2023

Hi!

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

 

Best regards
Roman


Forum|alt.badge.img+10
  • Hero (Employee)
  • August 10, 2023

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