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

help me

Former Member
0 Likes
322

hi all,

I m working on a online project, in this project we create a main screen and 11 sub screens, main screen are in two part, right side a tree and left side a tab strip in tab in first tab we display two subscreen , in upper sub screen u displayed a alv in container and below we displayed the relative data in Table control i want to display a heading in below subscreen depend on which i selected from upper subscreen object i have that object in a variable just want to display in below subscreen like this " <b>Data For Processing Label :variable:</b> "

help me out.

thanks in advance

chetan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
285

Hi Chetan

Use a Text Field in ur screen where you have a placed a varaint

set the property of textfield as Output only .

When second screen is shown get the value for the variable concatenate with the value into name defined for the textfield .

for eg.

Declare a Text Field in the screen layout above the table control.

assign a name suppose txt with output only property.

when you display the table control.

pass the value from concatenate 'Data For Processing Label' value into txt .

do remember to clear txt .

This will solve your problem .

Please reward if useful

1 REPLY 1
Read only

Former Member
0 Likes
286

Hi Chetan

Use a Text Field in ur screen where you have a placed a varaint

set the property of textfield as Output only .

When second screen is shown get the value for the variable concatenate with the value into name defined for the textfield .

for eg.

Declare a Text Field in the screen layout above the table control.

assign a name suppose txt with output only property.

when you display the table control.

pass the value from concatenate 'Data For Processing Label' value into txt .

do remember to clear txt .

This will solve your problem .

Please reward if useful