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

Header text in smartfroms?

Former Member
0 Likes
613

Hi all,

In a billing document having standard text in the following format.

TEXT1.

TEXT2.

TEXT3.

How can i display these three text messages ONE-BY-ONE in smrtform window?

Sachin.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
595

Hi,

U can use either a table or a template in smartforms.

In template:

Create a template and Create

1 2

%C1 0,50 5

%C2 0,50 5

%C3 0,50 5

Create 3 text elements within the template and give the text u want it.

For first text : in output options give 1 and 1

2nd : 1 and 2

3rd " 1 and 3.

Hi all,

In a billing document having standard text in the following format.

TEXT1.

TEXT2.

TEXT3.

How can i display these three text messages ONE-BY-ONE in smrtform window?

Sachin.

3 REPLIES 3
Read only

Former Member
0 Likes
596

Hi,

U can use either a table or a template in smartforms.

In template:

Create a template and Create

1 2

%C1 0,50 5

%C2 0,50 5

%C3 0,50 5

Create 3 text elements within the template and give the text u want it.

For first text : in output options give 1 and 1

2nd : 1 and 2

3rd " 1 and 3.

Read only

Former Member
0 Likes
595

Hi Friend,

You have to take these 3 texts into threed different internal tables.

Generally READ_TEXT return tables with 132 characters, split it according to your reuirements.

Use LOOP command (it will be 3) in smart form and within LOOP and ENDLOOP use one text field for output.

Hope it will solve your problem.

Regards

Krishnendu

Read only

Former Member
0 Likes
595

Hi,

From Billing document u read that text using function module READ_TEXT which will read that text sameway as 3 lines in your internal table .

so your internal table will have 3 lines.

loop that internal table in the smartform for the window where you want to display the text.

in this way all lines will be displayed in the smartform.

i hope this will resolve your issue.