‎2011 Oct 05 10:37 AM
HI
There is a way to create date type string using the command
Create data type "string"...
I know that I can create data type C but string dont have any restrication so how I can hanlde it ?
Regards
Joy
‎2011 Oct 05 10:42 AM
Hi ,
You can use string TYpe Data element .
i.e t_tab type <data element > which of type string .
regards
Deepak.
‎2011 Oct 05 10:42 AM
Hi ,
You can use string TYpe Data element .
i.e t_tab type <data element > which of type string .
regards
Deepak.
‎2011 Oct 05 10:48 AM
Hello Deepak ,
The issue here is that I need to create it dynamically so I cant use the data element...
Regards
Joy
‎2011 Oct 05 10:53 AM
Hi,
You can use the create data statement:
DATA: lo_data TYPE REF TO data.
FIELD-SYMBOLS: <str> TYPE ANY.
CREATE DATA lo_data TYPE string.
ASSIGN lo_data->* TO <str>.
Here <str> will be of type string.
Kr,
m.
‎2011 Oct 05 10:57 AM
‎2011 Oct 05 10:55 AM
Hi Joy,
Please provide some part of your code with brief explanation for us to understand and provide good solutions.
Kesav