Hi everyone,
I am trying to instantiate columns in a list (WEB) dinamically.
Some ideas?
Below a snippet of code (not compiling the line where I am trying to set the source) of my test.
Thank you
Andrea
Define_Com Class(#PRIM_LIST) Name(#List1) Displayposition(1) Height(800) Left(0) Parent ...
Search found 25 matches
- Thu Nov 03, 2016 2:33 am
- Forum: Questions & Answers
- Topic: How to create columns dinamically
- Replies: 1
- Views: 3624
- Thu Oct 20, 2016 2:56 pm
- Forum: Questions & Answers
- Topic: BLOB
- Replies: 11
- Views: 21223
Re: BLOB
Hi Stewart,
I will try.
Thank you
Andrea
I will try.
Thank you
Andrea
- Wed Oct 19, 2016 1:50 am
- Forum: Questions & Answers
- Topic: BLOB
- Replies: 11
- Views: 21223
Re: BLOB
Hi Danny,
Yes, with CLOB it works!
But I have found another problem with the TRANSFORM_LIST function.
In particular it cuts the blank characters at the end of the string also if the documentation said that using the Output File Format option 'A' ('AU' in my case) it should not do it. (from the ...
Yes, with CLOB it works!
But I have found another problem with the TRANSFORM_LIST function.
In particular it cuts the blank characters at the end of the string also if the documentation said that using the Output File Format option 'A' ('AU' in my case) it should not do it. (from the ...
- Tue Oct 18, 2016 9:02 pm
- Forum: Questions & Answers
- Topic: BLOB
- Replies: 11
- Views: 21223
Re: BLOB
Hi Stewart,
Thank you.
Regards
Andrea
Thank you.
Regards
Andrea
- Tue Oct 18, 2016 8:42 pm
- Forum: Questions & Answers
- Topic: BLOB
- Replies: 11
- Views: 21223
Re: BLOB
Does anyone have an idea?
Thanks
Andrea
Thanks
Andrea
- Fri Oct 14, 2016 8:09 pm
- Forum: Questions & Answers
- Topic: BLOB
- Replies: 11
- Views: 21223
Re: BLOB
Hi Danny,
The complete path is :
I already checked this case, but unfortunately this is not our problem.
Thank you
The complete path is :
And its length 93 chars./LANSA_dcwpgmlib/tmp/lobwam/399ac85b-926b-4124-a865-ba2cc740e4d6/t03tab00f/t03testo/test.txt
I already checked this case, but unfortunately this is not our problem.
Thank you
- Fri Oct 14, 2016 7:04 pm
- Forum: Questions & Answers
- Topic: BLOB
- Replies: 11
- Views: 21223
BLOB
Hi everyone,
I have a problem reading the file generated from a BLOB fetch (on IBM i).
My scenario is (pseudocode):
1) File generation from a list
Use Builtin(TRANSFORM_LIST) With_Args(#myList #fileName 'AU' 'I') To_Get(#Return_code)
2) Save as BLOB
#myBlob := #fileName
Insert Fields(#myKey ...
I have a problem reading the file generated from a BLOB fetch (on IBM i).
My scenario is (pseudocode):
1) File generation from a list
Use Builtin(TRANSFORM_LIST) With_Args(#myList #fileName 'AU' 'I') To_Get(#Return_code)
2) Save as BLOB
#myBlob := #fileName
Insert Fields(#myKey ...
- Thu Sep 15, 2016 5:52 pm
- Forum: Questions & Answers
- Topic: SP1 changes - issues
- Replies: 5
- Views: 14408
Re: SP1 changes - issues
Hi Danny,
the new caching management seems to work
What about the column title (point 3 of my last post)?
Regards
Andrea
the new caching management seems to work
What about the column title (point 3 of my last post)?
Regards
Andrea
- Wed Sep 14, 2016 4:35 pm
- Forum: Questions & Answers
- Topic: SP1 changes - issues
- Replies: 5
- Views: 14408
Re: SP1 changes - issues
Hi Danny,
With SP1 I have not yet tried the specific case, but works what I rebuilt so far
Thank you
Andrea
With SP1 I have not yet tried the specific case, but works what I rebuilt so far
Thank you
Andrea
- Wed Sep 14, 2016 3:38 pm
- Forum: Questions & Answers
- Topic: SP1 changes - issues
- Replies: 5
- Views: 14408
Re: SP1 changes - issues
Hi Stewart,
Thanks for your very detailed answer.
I still have a couple of questions for you:
About the point 3) (now it works): I use it in order to export a list as a .csv file, but I still have the column-title issue reported some month ago.
#column.ColumnCaption
In particular, it returns ...
Thanks for your very detailed answer.
I still have a couple of questions for you:
About the point 3) (now it works): I use it in order to export a list as a .csv file, but I still have the column-title issue reported some month ago.
#column.ColumnCaption
In particular, it returns ...
- Tue Sep 13, 2016 6:35 pm
- Forum: Questions & Answers
- Topic: SP1 changes - issues
- Replies: 5
- Views: 14408
SP1 changes - issues
Good morning everyone,
I am reporting some issues/changes appear with the SP1 upgrade:
1) #SYS_WEB.Close no longer supported, what is the new way to do it?
2) #FieldName.ShowError no longer supported.
3) #PRIM_LIST.Column no longer supported. Now, how is it possible to build a collection of ...
I am reporting some issues/changes appear with the SP1 upgrade:
1) #SYS_WEB.Close no longer supported, what is the new way to do it?
2) #FieldName.ShowError no longer supported.
3) #PRIM_LIST.Column no longer supported. Now, how is it possible to build a collection of ...
- Fri May 13, 2016 9:35 pm
- Forum: Questions & Answers
- Topic: Password policy check VL-WEB
- Replies: 4
- Views: 10235
Re: Password policy check VL-WEB
Thanks,
Have a nice day
Andrea
Have a nice day
Andrea
- Fri May 13, 2016 7:09 pm
- Forum: Questions & Answers
- Topic: Password policy check VL-WEB
- Replies: 4
- Views: 10235
Re: Password policy check VL-WEB
Hi Stewart,
Thank you, from your reply I see that it doesn't exist a way to directly check my constraints with a regular expression.
I will implement something based on your rountine.
have a nice day
Thank you
Andrea
Thank you, from your reply I see that it doesn't exist a way to directly check my constraints with a regular expression.
I will implement something based on your rountine.
have a nice day
Thank you
Andrea
- Thu May 12, 2016 5:49 pm
- Forum: Questions & Answers
- Topic: Password policy check VL-WEB
- Replies: 4
- Views: 10235
Password policy check VL-WEB
Hi,
I am developing the authentication for new users.
I want to implement the classical checks:
- Min length 8 characters,
- At least 1 char [a - z]
- At least 1 char [A - Z]
- At least 1 char [0 - 9]
- At least 1 symbol [* -_ ! etc]
There is a way to check automatically these constraints or the ...
I am developing the authentication for new users.
I want to implement the classical checks:
- Min length 8 characters,
- At least 1 char [a - z]
- At least 1 char [A - Z]
- At least 1 char [0 - 9]
- At least 1 symbol [* -_ ! etc]
There is a way to check automatically these constraints or the ...
- Wed May 04, 2016 10:23 pm
- Forum: Questions & Answers
- Topic: Message Queue VL 14 Web
- Replies: 4
- Views: 10272
Re: Message Queue VL 14 Web
Hi,
Now I am trying to avoid as much as possible editing directly on the list.
In this way I can use one or more views containing my fields in which use the message queue.
Thank you for your help
Regards
Andrea
Now I am trying to avoid as much as possible editing directly on the list.
In this way I can use one or more views containing my fields in which use the message queue.
Thank you for your help
Regards
Andrea
- Tue May 03, 2016 6:27 pm
- Forum: Questions & Answers
- Topic: Message Queue VL 14 Web
- Replies: 4
- Views: 10272
Re: Message Queue VL 14 Web
Thank you,
It works, but I hope that this feature will be implemented soon because this workaround implies an explicit management for each of my field type.
Have a nice day
Andrea
It works, but I hope that this feature will be implemented soon because this workaround implies an explicit management for each of my field type.
Have a nice day
Andrea
- Mon May 02, 2016 7:26 pm
- Forum: Questions & Answers
- Topic: Message Queue VL 14 Web
- Replies: 4
- Views: 10272
Message Queue VL 14 Web
Hi,
I am using the message queue to set messages on some fields.
Now I need to use it also in a Web List, in particular I want to set these messages on a column cell depending on the input (using it to provide explanations if the input check fails).
http://docs.lansa.com/140/EN/LANSA016/PRIM_MSGQ ...
I am using the message queue to set messages on some fields.
Now I need to use it also in a Web List, in particular I want to set these messages on a column cell depending on the input (using it to provide explanations if the input check fails).
http://docs.lansa.com/140/EN/LANSA016/PRIM_MSGQ ...
- Thu Apr 28, 2016 6:28 pm
- Forum: Questions & Answers
- Topic: Encryption Web
- Replies: 11
- Views: 40011
Re: Encryption Web
Hi Danny,
Thank you very much!
As you said, the problem was the unicode. It works as expected with NVARCHAR variables.
Have a nice day
Andrea
Thank you very much!
As you said, the problem was the unicode. It works as expected with NVARCHAR variables.
Have a nice day
Andrea
- Wed Apr 27, 2016 6:35 pm
- Forum: Questions & Answers
- Topic: Encryption Web
- Replies: 11
- Views: 40011
Re: Encryption Web
I have to try.
Now I am working for understand why the encryption - client and server side - provide two different hex string using the same same key and the same starting text (as written in my second post after your reply)
Now I am working for understand why the encryption - client and server side - provide two different hex string using the same same key and the same starting text (as written in my second post after your reply)
- Wed Apr 27, 2016 6:03 pm
- Forum: Questions & Answers
- Topic: Encryption Web
- Replies: 11
- Views: 40011
Re: Encryption Web
Watching the variables value in debug mode, still not working also converting the decrypted string in EBCDIC