[U2] ISO Date Format

2013-03-11 Thread Jeff Schasny
Has anyone come up with an OCONV string that will product an ISO standard date (-MM-DD)? After a vendor insisted on this last week I ended up creating a subroutine called by an I descriptor but it seems like there should be an easier way. A quick trip through the Universe Basic manual, my

Re: [U2] ISO Date Format

2013-03-11 Thread Brian Leach
D-YMD[4,2,2] -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Schasny Sent: 11 March 2013 13:57 To: U2-Users@listserver.u2ug.org Subject: [U2] ISO Date Format Has anyone come up with an OCONV string that will

Re: [U2] ISO Date Format

2013-03-11 Thread Robert Harris
Rob Harris Senior Software Engineer Group IT Engineering, the OMEN Tel : 01604 502666 Please consider your environmental responsibilities before printing this email On 11 March 2013 13:56, Jeff Schasny jscha...@gmail.com wrote: Has anyone come up with an OCONV string that will product an ISO

Re: [U2] ISO Date Format

2013-03-11 Thread Robert Harris
Blasted Google Mail, sent a blank reply in error.. Beaten to the punch by Brian, was going to post; OCONV(INPDATE, D4-YMD[4,2,2]) Rob Harris Senior Software Engineer Group IT Engineering, the OMEN Tel : 01604 502666 Please consider your environmental responsibilities before printing this email

Re: [U2] ISO Date Format

2013-03-11 Thread Charles Stevenson
By the way, you can also completely eliminate the dash (or slash, etc.) delimiters: OCONV( 16507 , DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 Notice that ICONV'ing the OCONV'd or OCONV'ing the ICONVd result gets you bat to where you started. That makes

Re: [U2] ISO Date Format

2013-03-11 Thread Jeff Schasny
I knew it had to be possible. Thanks Brian Leach wrote: D-YMD[4,2,2] -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Schasny Sent: 11 March 2013 13:57 To: U2-Users@listserver.u2ug.org Subject: [U2] ISO Date

Re: [U2] ISO Date Format

2013-03-11 Thread Tony Gravagno
] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 From Brian and Robert: D-YMD[4,2,2] ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

[U2] [UV] User Exits was: ISO Date Format

2013-03-11 Thread Charles Stevenson
] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 From Brian and Robert: D-YMD[4,2,2] ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users ___ U2

Re: [U2] [UV] User Exits was: ISO Date Format

2013-03-11 Thread Charlie Noah
code needs to work across platforms. Wah. :'( T From: Charles Stevenson OCONV( 16507 , DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 From Brian and Robert: D-YMD[4,2,2] ___ U2-Users mailing list U2-Users

Re: [U2] [UV] User Exits was: ISO Date Format

2013-03-11 Thread Dan Ell
codes like this because most of my code needs to work across platforms. Wah. :'( T From: Charles Stevenson OCONV( 16507 , DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 From Brian and Robert: D-YMD[4,2,2

Re: [U2] ISO Date Format

2013-03-11 Thread David A. Green
In UniData you can just use D-YMD. David A. Green (480) 813-1725 DAG Consulting -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Schasny Sent: Monday, March 11, 2013 6:57 AM To: U2-Users@listserver.u2ug.org

Re: [U2] ISO Date Format

2013-03-11 Thread Woodward, Bob
Date Format By the way, you can also completely eliminate the dash (or slash, etc.) delimiters: OCONV( 16507 , DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 Notice that ICONV'ing the OCONV'd or OCONV'ing the ICONVd result gets you bat to where you started

Re: [U2] ISO Date Format

2013-03-11 Thread Charles Stevenson
.) delimiters: OCONV( 16507 , DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 Notice that ICONV'ing the OCONV'd or OCONV'ing the ICONVd result gets you bat to where you started. That makes it particularly useful in dict conversion fields. I learned that on this list

Re: [U2] ISO Date Format

2013-03-11 Thread Woodward, Bob
, March 11, 2013 8:08 AM To: U2 Users List Subject: Re: [U2] ISO Date Format By the way, you can also completely eliminate the dash (or slash, etc.) delimiters: OCONV( 16507 , DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 Notice that ICONV'ing

Re: [U2] ISO Date Format

2013-03-11 Thread Charles Stevenson
, DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 Notice that ICONV'ing the OCONV'd or OCONV'ing the ICONVd result gets you bat to where you started. That makes it particularly useful in dict conversion fields. I learned that on this list, but I do not remember

Re: [U2] ISO Date Format

2013-03-11 Thread Anthonys Lists
On 11/03/2013 17:16, Woodward, Bob wrote: An interesting note is using the OCONV(IDATE,'D-YMD[2,2,2]') format, the dash can be replaced with the digits 5 to 9 but using the digits 0 to 4 result in an output delimited with a space. Would have been acceptable (and nice) to have been able to get

Re: [U2] ISO Date Format

2013-03-11 Thread Wjhonson
Users List Subject: Re: [U2] ISO Date Format By the way, you can also completely eliminate the dash (or slash, etc.) delimiters: OCONV( 16507 , DYMD[4'',2'',2] ) -- 20130311 ICONV( 20130311, DYMD[4'',2'',2] ) -- 16507 Notice that ICONV'ing the OCONV'd or OCONV'ing the ICONVd result gets

Re: [U2] ISO Date Format

2013-03-11 Thread John Hatherill
D-YMD John W Hatherill Programmer / Analyst Harrington Industrial Plastics -Original Message- From: Jeff Schasny [mailto:jscha...@gmail.com] Sent: Monday, March 11, 2013 6:57 AM To: U2-Users@listserver.u2ug.org Subject: [U2] ISO Date Format Has anyone come up with an OCONV string that

[U2] Using the PUT method in an HTTP connection in UniBasic

2013-03-11 Thread Jim . Stoner
Hello everyone, We have been playing around with the UniBasic commands createRequest and submitRequest for use with some web services provided by our external vendors. Unfortunately, one of the web services requires updates to existing data records to be submitted using the PUT method,

[U2] User cannot login

2013-03-11 Thread Holt, Jake
I have a user, one of my system admins, that cannot login to Universe. Their user account is setup exactly like mine, there is no voc entry for the user and I have deleted and recreated the user a couple times just today. Is there anything else I can look at that would be preventing the him from

Re: [U2] User cannot login

2013-03-11 Thread Israel, John R.
Windows or UNIX? JRI -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Holt, Jake Sent: Monday, March 11, 2013 4:33 PM To: U2 Users List Subject: [U2] User cannot login I have a user, one of my system admins, that

Re: [U2] User cannot login

2013-03-11 Thread Wjhonson
Describe more what happens when they *try* to login. -Original Message- From: Holt, Jake jh...@samsill.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Mon, Mar 11, 2013 1:33 pm Subject: [U2] User cannot login I have a user, one of my system admins, that cannot login to

Re: [U2] User cannot login

2013-03-11 Thread Anthonys Lists
On 11/03/2013 20:32, Holt, Jake wrote: I have a user, one of my system admins, that cannot login to Universe. Their user account is setup exactly like mine, there is no voc entry for the user and I have deleted and recreated the user a couple times just today. Is there anything else I can look

Re: [U2] Using the PUT method in an HTTP connection in UniBasic

2013-03-11 Thread Symeon Breen
Use the *nix curl command - it can do any verb and any payload. Or just use the sockets api - http is just a simple socket conversation. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of jim.sto...@esc.edu Sent:

Re: [U2] User cannot login

2013-03-11 Thread Holt, Jake
He is both a domain and a local admin on the server. The users are created through a screen in our ERP system (dataflo) so I honestly don't know anything about creating users in UniVerse directly. The problem might be ERP specific I guess. -Original Message- From:

Re: [U2] User cannot login

2013-03-11 Thread Holt, Jake
It just acts like the password is invalid: Welcome to the IBM UniVerse Telnet Server. Enter user name: calvinr Enter password: Invalid domain/user/password. -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] User cannot login

2013-03-11 Thread Wjhonson
This has nothing to do with Universe. It's a windows issue alone. Reset their password to something like TEST and then try it yourself first. Before you tell them to try it. -Original Message- From: Holt, Jake jh...@samsill.com To: U2 Users List u2-users@listserver.u2ug.org

Re: [U2] User cannot login

2013-03-11 Thread Holt, Jake
I've tried it in the past, but doing it again made me consider something else and it worked. If I use domain\username it works... Must be something strange with his AD account. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On

Re: [U2] User cannot login

2013-03-11 Thread Wols Lists
On 11/03/13 20:59, Holt, Jake wrote: I've tried it in the past, but doing it again made me consider something else and it worked. If I use domain\username it works... Must be something strange with his AD account. I'm sure this is a known problem in Rocket's knowledgebase. And I think

Re: [U2] User cannot login

2013-03-11 Thread Wjhonson
There's some kind of setting in Windows that allows the domain to be discarded when on the same domain... or something. I'm not sure, maybe there's a Windows guru on here. -Original Message- From: Holt, Jake jh...@samsill.com To: U2 Users List u2-users@listserver.u2ug.org