Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Is there a way where a filter value could be passed to data load script ?
I have tried using GetFieldSelections and other functions but they are not getting values passed rather passing the function as is.
Also , tried assigning the evaluated value to another variable but that also showing the function as is.
Thanks
What you can do is:
You would need to create a partial reload button and add the following to the script:
Variable:
add Load
'$(vVariable2)' as Variable
autogenerate (1);
VariablebyLine:
ADD LOAD
subfield(purgechar(Variable, chr(10)),',',$(i)) as Variable_NUMBER
RESIDENT Variable
Where Len(subfield(purgechar(Variable, chr(10)),',',$(i)))>0;
NEXT
Hi lanlizgu ,
Many Thanks for your suggestion.
I have tried the steps given by you. But,I am unable to get the field selected value to data load editor script.
Can you please share a qvf for this?
Thanks,
Bhavani
Please find attached a QVF that will store in a variable the selection done in a field (just select 1 value, for more values you would need to develop as mentioned):
You need to have the reload_partial extension and Navigation & Actions installed
The extensions holders in the app says invalid visualization inspite of having the extensions in place.
Do I have to select any navigation action ? or should it be none.?
You can't see none of the extensions?
for the Navigation + Actions
https://github.com/stefanwalther/sense-navigation
PFA the reload partial extension
Hi , thanks for your help . I implemented this thing in my solution and it is working also but the major drawback is that when I am reloading my app for the particular input parameter the application is reloading for all the users who had opened this app parallely . Which is not correct behaviour to represent the data.