Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I couln't find any information on creating an excel file and exporting that file to a specific folder monthly. Can some send me the sntax that is used to do this, I'm assuming this is a popular demand but again I couldn't find anything on the community.
Test:
load
[cs] as 1
,
,[tet] as 3
Resident Test;;
STORE export into
txt, delimiter is ',');
(
drop Table export
This will only work in server mode.
look's like one more interview Question.
table_name:
load
a,
b
from table
STORE table_name into Path_name\file_name.xls(txt)
You can right click any object and a list of options will display including "Send to Excel" which you can then save to where you wish. The "Export" is also useful for save to other file formats.
you can schedule an export action on post reload event with specified field
advantage over above 2 solutions
1. with store command you can only store 1 tables data if you want to show data from multiple tables you will have to join them and then store it in excel
2. with right click export you need manual intervention and you need to have object created in your UI as per requirements
How would I schedule an export action on post reload event on specified fileds, using the sore command?
in qvw file
Settings>doc propertis>triggers>doc evnt trigger> add action>add>external>Export>
Click ok
and then click Setup> add your required fields from the documnet(like u do in table box)
do all the other setup configuration and say ok
save document
and take a reload
you will get your data at the destination you have provided
Thanks for the response. I followed the following steps but I'm not seeing a file when I reload. Any thoguhts, do I need to add anything in the script?
Settings>doc propertis>triggers>doc evnt trigger> add action>ONPOSTRELOAD>add>external>Export>
Click ok
and then click Setup> add your required fields from the documnet(like u do in table box)
do all the other setup configuration and say ok
bhagirath.shingote suggested the below but it's not working, any other suggestions? Or reasons to why the below is not working to export a file in a specified folder?
in qvw file
Settings>doc propertis>triggers>doc evnt trigger> add action>add>external>Export>
Click ok
and then click Setup> add your required fields from the documnet(like u do in table box)
do all the other setup configuration and say ok
save document
and take a reload
you will get your data at the destination you have provided
try this,
1.create ur script and strore that file into xls by using store command
2.schedule ur app at month end,tht will load automatically every month end into corresponding folder.
hi John can you share sample qvw file ?