Focal Point
[SOLVED]Reading a variable from SQLOUT

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/1377049976

December 23, 2015, 12:50 PM
Bharathi
[SOLVED]Reading a variable from SQLOUT
I am using a query with decode function which returns N or Y. I need to read it in a variable and then proceed.. I am not able to read it. format shows A1V.

How can I read that value?
Please reply..its urgent
Thanks a lot in advance !

This message has been edited. Last edited by: <Emily McAllister>,


WebFOCUS 8.1.05
Windows, All Outputs
December 23, 2015, 12:57 PM
MattC
This doesn't work?


-READFILE SQLOUT
END
-SET &FIELD = &FIELD ;




WebFOCUS 8.1.05
December 23, 2015, 01:07 PM
Bharathi
quote:
posted December 23, 2015 12:57 PM Hide Post
This doesn't work?


-READFILE SQLOUT
END
-SET &FIELD = &FIELD ;


This is howI am trying now..

TABLE FILE SQLOUT
PRINT
*
ON TABLE HOLD AS RECHLD FORMAT ALPHA
END
-RUN
-READ RECHLD &RECCNT.A1.
-TYPE &RECCNT
-EXIT

Yours gave some error..


WebFOCUS 8.1.05
Windows, All Outputs
December 23, 2015, 01:08 PM
Squatch
Here's a simple example I just came up with:

-SET &ECHO='ALL';
ENGINE SQLMSS SET DEFAULT_CONNECTION MetricDatamart
SQL SQLMSS
SELECT 'Y' AS VALUE;
TABLE
ON TABLE HOLD AS SQLOUT
END
-RUN

-READFILE SQLOUT
END

-SET &FIELD = &VALUE;
-TYPE &FIELD



App Studio
WebFOCUS 8.1.05M
Windows, All Outputs
December 23, 2015, 01:10 PM
MattC
In your SQL CAST the field

 

       CAST(FIELD AS CHAR(1))                    AS FIELD ,
 



WebFOCUS 8.1.05
December 23, 2015, 01:25 PM
Bharathi
Thank you so much both of you..It worked.


WebFOCUS 8.1.05
Windows, All Outputs
December 24, 2015, 04:23 AM
Tony A
quote:
-READFILE SQLOUT

This is one of the reasons that we ask for the version that folks are working with.

From Bharathi's signature, we can see that it is 7.6. -READFILE wasn't available in that release which is why it didn't work for them.


Happy holidays Smiler

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10