2007 Sep 18 4:09 AM
Request for help in regard to the select statement where clause Ex:(Select single name into v_name from XYZ where text = string).
String and text data types are same.
String will have only 3 char and text will have 40 char of length.
Out of 40 char I would like the where clause to search any of the 3 char and fetch the record.
Hope my question is clear and can expect help on this regards,
Thanks,
Azhar.
Request for help in regard to the select statement where clause Ex:(Select single name into v_name from XYZ where text = string).
String and text data types are same.
String will have only 3 char and text will have 40 char of length.
Out of 40 char I would like the where clause to search any of the 3 char and fetch the record.
Hope my question is clear and can expect help on this regards,
Thanks,
Azhar.
2007 Sep 18 4:28 AM
Select single name into v_name from XYZ where text LIKE string.
2007 Sep 18 1:44 PM
I have tried with like in where clause, it does not work my scenario.
I will not be comparing the complete string, only single char...in the table field.
2007 Sep 18 2:07 PM
Hello Azhar,
you can use % with the like in the where condition.
example: string = 'chandra' vendor name.
select * from lfa1 into table it_lfa1 where name1 like cha% .
i think this help you.
reward if useful,
Regards,
Phani.
2007 Sep 18 6:16 PM
Hi Phani,
The string which will be in where clause will be dynamic.
I have tried %string%, String, +String, +String_.
For ABAP we should use *, +, _ only.
I have gone through the SAP Help to get the above info...
But my requirement will not fit with this options.
Regards,
Azhar.
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |