set variable w/ script

By: CARLOS ALBERTO SILVA - csilva2001
set variable w/ script
2003-01-02 16:44
Hi. I know it is easy. But I'm a stupid and do not know how: In my DB the data A is numeric. When data A is 1, I want show "journal". If data A is 2, I want show "letter" and if data A is 3, I want show "nothing". Please, step by step, how a build it?
sorry, :)..
Carlos




By: Teodor Danciu - teodord
RE: set variable w/ script
2003-01-03 00:04

Hi,

Let's say your A field is and Integer.

<textFieldExpression>
(A.intValue() == 1)?
("journal"):
(
(A.intValue() == 2)?
("letter"):
("nothing")
)
</textFieldExpression>

Not tested it, but it should work.

Good luck!
Teodor





By: Chuck Deal - cdeal
RE: set variable w/ script
2003-01-03 05:22
I had to do a similar task. And due to the length of the function I chose to use a Scriptlet over embedding the logic in the XML.

The Scriplet sample was perfect for me to learn what I needed. In the Summary section of that report, you will see a call to a custom function called hello(). This should be all that you need in order to figure out how to use Scriplets.
2002 JI Open Discussion's picture
Joined: Aug 10 2006 - 3:28am
Last seen: 16 years 9 months ago

0 Answers:

No answers yet
Feedback
randomness