Application Development 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: 

Module Pool- Saving the text

Former Member
0 Kudos

Hi,

I have design one module pool program, it has two screens:

Screen1.

it contain single ID field which user have to enter.

Screen2.

this screen contains the Tabstrip control.

there are two tabs:

Tab1: It contains the basic data corresponding to ID given on screen1, this is picked from the custom table.

My problem starts from here :-

Tab2: This is a notes tab, in this tab user can write any thing for his information regarding the ID and when user again open the screen corresponding to given ID all the text which he has written earlier should be visibal to him.

I need to design this and have no idea how to start , can any one suggest how to design this second tab.

Thanks in advance.

4 REPLIES 4

Former Member
0 Kudos

Hi Hemant,

When you define the I/O box on Tab 2 for data entry by user, give the field name as a Variable or some field of a work area, as per requirement. Now, if u decxlare this Workarea or Variable globally it will be accessible as long as u toggle between the screen.

You can also save this information of the second table in the database if required. Otherwise it will be blank the next time user reopens the program.

Let me know if u have any issues with this.

Regards,

Sonal

0 Kudos

Hi Sonal,

This is ok but is there any FM or somthing like that to read and save the text user has written?

0 Kudos

Hi,

The function module CREATE_TEXT is used to save text and READ_TEXT is used to read a text that is already saved.

Regards,

Renjith Michael.

Former Member
0 Kudos

Did u try the FM, 'READ_TEXT' ?