Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
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.
Solucionado! Ir para a Solução.
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"/>
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>
Visualizações
respostas
Total de curtidas
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.
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"/>
Thank you @ParthaSarathy !!!!!
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas