Enumerations in Xml | Adobe Higher Education
Skip to main content
alnavarg
Level 4
April 11, 2023
Respondido

Enumerations in Xml

  • April 11, 2023
  • 1 resposta
  • 993 Visualizações

How can I create an enumeration that if I pass the value 1 is equal to Yes and if I pass the value 2 is equal to No, all this in XML code.

Este tópico foi fechado para respostas.
Melhor resposta por ParthaSarathy

In Schema, with the above mentioned enum structure, try the same by replacing the enum attribute as below (defining type as byte)

<enumeration basetype="byte" name="myEnum"> <value label="Yes" name="yes" value="1"/> <value label="No" name="no" value="2"/> </enumeration><attribute enum="myEnum" label="My Enum" name="abcd" type="byte"/>

  

1 Resposta

ParthaSarathy
Community Advisor
Community Advisor
April 11, 2023

Hi @alnavarg , You can try this in schema

<enumeration basetype="byte" name="myEnum"> <value label="Yes" name="yes" value="1"/> <value label="No" name="no" value="2"/> </enumeration>
 ~  ParthaSarathy S~  Click here to join ADOBE CAMPAIGN USER GROUP for Quarterly In-person | Hybrid | Virtual Meetups
alnavarg
Level 4
April 11, 2023

This does not work I have the code like this then I pass a Sql Code activity with that code and it fills it is 1 and 2 and I want Yes and no but passing it 1 and 2.

 

 

ParthaSarathy
Community Advisor
Community Advisor
April 11, 2023

In Schema, with the above mentioned enum structure, try the same by replacing the enum attribute as below (defining type as byte)

<enumeration basetype="byte" name="myEnum"> <value label="Yes" name="yes" value="1"/> <value label="No" name="no" value="2"/> </enumeration><attribute enum="myEnum" label="My Enum" name="abcd" type="byte"/>

  

 ~  ParthaSarathy S~  Click here to join ADOBE CAMPAIGN USER GROUP for Quarterly In-person | Hybrid | Virtual Meetups