Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Smartform Dynamic text: Invalid type 'H' Error

Former Member
0 Likes
2,448

Dear All,

My issue is that i need to display text as dynamic text, which is working fine if I execute it manually and not otherwise, from crmd_order.

Below are the details which might be needed to understand the issue.

I have created a Template->under which I have added a dynamic text node

Field Type- TSFTTEXT

Error Screen as below:

Please ask for more details:

Thanks in advance.

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
1,835

Looks like you incorrectly have defined V_INFO. If should be referenced to a data element or a filed form a given type, but it seems you have it defined with type of a table (h = Internal table)

Regards,
Naimesh Pate

6 REPLIES 6
Read only

naimesh_patel
Active Contributor
0 Likes
1,836

Looks like you incorrectly have defined V_INFO. If should be referenced to a data element or a filed form a given type, but it seems you have it defined with type of a table (h = Internal table)

Regards,
Naimesh Pate

Read only

0 Likes
1,835

Hi Naimesh,

First of all M a big fan of your work. Zevolving helped me alot from time to time.

check below screnshot , how i have declared it.

Read only

Juwin
Active Contributor
0 Likes
1,835

TSFTEXT is a Table. Please see below.

Thanks,

Juwin

Read only

0 Likes
1,835

Hi Juwin,

Though issue is resolved.

Just for the info.. this field takes input as table type only i.e. tsftext.

The mistake was that i missed to delete a text node where this variable was written.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,835
Field "V_INFO" Invalid type "h" (internal ABAP)

The "field" V_INFO is actually an internal table. You tried to print or move such internal table to  a character variable, that is not allowed in Unicode. Did you forget the LOOP or READ TABLE?

Regards,

Raymond

Read only

0 Likes
1,835

Hi,

I am using it as shown in below screenshot.

Also, Same is working if i execute it manually