on ‎2013 Sep 01 10:06 AM
Hi All,
I need to check the below condition to suppress a section.
My query is like this
SELECT scan_mode,STATUS,transaction_no FROM gfi_transaction WHERE transaction_id={?TID}
If transaction no starts with GR then i need to hide a particular section.The value for transaction no is GR_9
I wrote condition like this
transaction_no like "G?" but not working .
Please suggest.
Request clarification before answering.
Hi Divya,
The formula should be:
transaction_no LIKE "GR*"
-Abhilash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If transaction no starts with GR then i need to hide a particular section.The value for transaction no is GR_9
I wrote condition like this
transaction_no like "G?" but not working .
Transaction_no like 'GR%' should work in this scenario.
and also rememnber that value given is case sensitive.
Regards,
Priyaranjan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi ,
TRY with 'GR%'.
Regards,
Priyaranjan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.