anandpr1989
26th March 2016, 15:05
Hi All,

Is that possible to get input parameter in report script i.e. I want to print external value in report which is not present in system. Let me know.

Thanks in advance...

bdittmar
26th March 2016, 19:31
Hello,
where does this extern variable reside?

Input by user before printing the report?
Stored in a file at a specific location?
a.s.o.

Be more specific for what you'll accomplish.

Regards

Ajesh
27th March 2016, 10:32
Why dont you take the input variable from the Form which will eventually lead to the report printing?

anandpr1989
28th March 2016, 07:08
It is standard session. That's why I want to take input parameter from report script.

Ajesh
28th March 2016, 07:29
Anything that takes as an input is present in the form of a "Form" in Baan Framework. That is how it is. If Report can take input variable from an entity, then again, it would be a form.:)

You can copy the standard form to your local VRC and then take the variable as Input.

bdittmar
28th March 2016, 10:57
It is standard session. That's why I want to take input parameter from report script.

Hello,
if no webui, then :

input.string() function is not webui enabled KB 1408163
Handled it using dialog.* commands.

will work.

Regards

bhushanchanda
29th March 2016, 18:35
Hi,

As Bernd suggested you can go with dialog.* functions. Have been into this situation before - > thread (http://www.baanboard.com/baanboard/showthread.php?t=64072), you can go ahead with these functions or the other way is to call your session from the report script and then export the required variable from there to your report script and end your session.