Author |
Message |
Topic: View of a view |
danm
Replies: 2
Views: 2551
|
Forum: Database Posted: Thu Nov 19, 2015 1:36 pm Subject: View of a view |
Kolusu,
Thanks. |
Topic: View of a view |
danm
Replies: 2
Views: 2551
|
Forum: Database Posted: Thu Nov 19, 2015 12:36 pm Subject: View of a view |
I need to create a view joining tableA, Tableb, TableC and TableD. If there is alreay an exising ViewX joining tableA and TableB, I can create a view joining ViewX, TableC and TableD. Will the perfor ... |
Topic: SQL Cursor in PL1 |
danm
Replies: 7
Views: 6618
|
Forum: Application Programming Posted: Thu Feb 09, 2012 4:00 pm Subject: SQL Cursor in PL1 |
Thank you all. |
Topic: SQL Cursor in PL1 |
danm
Replies: 7
Views: 6618
|
Forum: Application Programming Posted: Thu Feb 09, 2012 11:07 am Subject: SQL Cursor in PL1 |
CZerfas and dbzTHEdinosauer,
It is for an actual program. I will use with the 2 cursors approach and static sql. Thanks. |
Topic: SQL Cursor in PL1 |
danm
Replies: 7
Views: 6618
|
Forum: Application Programming Posted: Thu Feb 09, 2012 9:36 am Subject: SQL Cursor in PL1 |
Kolusu,
It is a small integer. |
Topic: SQL Cursor in PL1 |
danm
Replies: 7
Views: 6618
|
Forum: Application Programming Posted: Wed Feb 08, 2012 3:16 pm Subject: SQL Cursor in PL1 |
I want to order by DESC or ASC depending the value of a Flag:
If Flag = '1'B then
EXEC SQL DECLARE CURTMP CURSOR FOR
SELECT COL1
FROM TABLE
WHERE COL2 = :VALUE2
ORDER BY ... |
Topic: convert numeric code to alpha literal in QMF ? |
danm
Replies: 4
Views: 3909
|
Forum: Database Posted: Wed Nov 23, 2011 9:40 am Subject: convert numeric code to alpha literal in QMF ? |
Create a table with the state_code and state_name and join this table with your table. |
Topic: Location of Long message of TBDISPL |
danm
Replies: 12
Views: 13853
|
Forum: TSO and ISPF Posted: Fri Nov 18, 2011 12:42 pm Subject: Location of Long message of TBDISPL |
Mickeyd,
LNGMSG is on the 2nd line of )BODY. It is the 2nd "Z" variables:
)BDOY
$Z+ @Z +
)INIT
.ZVARS = '(ZCmd LngMsg Var1 Var2 Amount)'
|
Topic: Location of Long message of TBDISPL |
danm
Replies: 12
Views: 13853
|
Forum: TSO and ISPF Posted: Thu Nov 17, 2011 10:29 am Subject: Location of Long message of TBDISPL |
Mickeyd,
I added LMSG(LNGMSG) to )BODY and output field LNGMSG and it still display long message below the error data.
)PANEL KEYLIST(KLIST,APP1)
)ATTR DEFAULT(%+!)
... |
Topic: How to position cursor after scrolling |
danm
Replies: 3
Views: 3690
|
Forum: TSO and ISPF Posted: Thu Nov 17, 2011 9:23 am Subject: How to position cursor after scrolling |
asr2,
I added .CURSOR = FLD3 to )INIT, )REINIT and )PROC section and none of them works. |
Topic: Location of Long message of TBDISPL |
danm
Replies: 12
Views: 13853
|
Forum: TSO and ISPF Posted: Tue Nov 15, 2011 11:45 am Subject: Location of Long message of TBDISPL |
Mickeyd,
)PANEL KEYLIST(KLIST,APP1)
)ATTR DEFAULT(%+!)
+ TYPE(TEXT) INTENS(LOW) PAD(' ') JUST(ASIS) SKIP(ON)
~ TYPE(TEXT ... |
Topic: Location of Long message of TBDISPL |
danm
Replies: 12
Views: 13853
|
Forum: TSO and ISPF Posted: Mon Nov 14, 2011 3:24 pm Subject: Location of Long message of TBDISPL |
Kolusu,
I looked into all the System variables, espeically those associate with Table display service, and didn't see any for long message placement. I also try adding LMSG(field name) in )BODY se ... |
Topic: Location of Long message of TBDISPL |
danm
Replies: 12
Views: 13853
|
Forum: TSO and ISPF Posted: Fri Nov 11, 2011 11:04 am Subject: Location of Long message of TBDISPL |
I inputed errorneous data in one of the )MODEL field. When I press PF1 to look at the long message, it is displayed below the error data, covering the input data on the next row. I want to relocated ... |
Topic: How to position cursor after scrolling |
danm
Replies: 3
Views: 3690
|
Forum: TSO and ISPF Posted: Thu Nov 10, 2011 11:24 am Subject: How to position cursor after scrolling |
On the ISPF panel, I defined 5 fields: ZCMD, FLD1, FLD2, FLD3, FLD4. FLD1 to FLD4 are within the )MODEL, and ZCMD is required for table display.
address 'ISPEXEC' "TBDISPL TABLE1 PANEL(PA ... |
Topic: ISPF if statement |
danm
Replies: 3
Views: 4245
|
Forum: TSO and ISPF Posted: Tue Nov 01, 2011 10:47 am Subject: ISPF if statement |
asr2,
The *REXX code does the trick. Thanks. The manual mentioned numeric comparison only works on whole number (character comparison for decimal). |
|