Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

expr?string?

we have made a connection string in include  statement like

$include=....manoj\conncectionstring.cfg;

after writing this we have one more statement like

call full_space=('manoj') 

HOW IT WORKS AND WHAT IT GIVES?

1 Solution

Accepted Solutions
Colin-Albert
Partner - Champion
Partner - Champion

Have a look for CALL in the help file.

The call control statement calls a subroutine which must be defined by a previous sub statement.

The syntax is:

call name ( [ paramlist ])

View solution in original post

5 Replies
Not applicable
Author

Hi,

$Include function can call a file from outside qlikview.

below statement is not clear to me.

call full_space=('manoj')


if possible pls provide full script.


Regards

Anonymous
Not applicable
Author

simple  what is use of call statement in qlikview?

Colin-Albert
Partner - Champion
Partner - Champion

Have a look for CALL in the help file.

The call control statement calls a subroutine which must be defined by a previous sub statement.

The syntax is:

call name ( [ paramlist ])

Not applicable
Author

Hi

Call is used when load script sub is called.

I think in below format

call  script_name;

but I do not understand the use of = in your script [ call full_space=('manoj')].

Regards,

Pooja

Colin-Albert
Partner - Champion
Partner - Champion

I think the = is an error.

It should be

call Full_space('manoj')