cancel
Showing results for 
Search instead for 
Did you mean: 

Missing Text edit on WD4A form

Former Member
0 Kudos

We are using an ABAP webdynpro application which will be used by employees to request for courses and approvers will approve/reject the request.

The layout of the webdynpro is as follows:

Transparent_Container

-Caption (for Page Title)

Horizontal Gutter

Transparent_Container1

-Label Control for Text Edit

-Text Edit Control

Horizontal Gutter1

Tray1

-Applicant Data

Horizontal Gutter2

Tray2

-Approver Comments

Horizontal Gutter3

Transparent_Container3

-Buttons

For some applicants, they are not able to see Transparent_Container & Transparent_Container1 on their form. However when their supervisors open the applicant's form, they are able to see the whole form.

This is happening only for some users.

The VISIBLE property for all controls is set to visible and not bound to the context. The only property that is controlled is the READONLY property. Pls help on why this is happening.

Regds

Thiru

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi all,

Found that this is due to Activex settings on the user's PC.

Regds

Thiru

yesrajkumar
Active Participant
0 Kudos

Hi ,

Put the following code in the WDDOMODIFYVIEW of the View that has the containters Transparent_Container & Transparent_Container1 .

cl_fitv_wd_util=>ui_set_visible( io_view = view iv_id = 'Transparent_Container' iv_visible = abap_true ).

cl_fitv_wd_util=>ui_set_visible( io_view = view iv_id = 'Transparent_Container1' iv_visible = abap_true ).

It will definitely work.

Thanks,

Rajkumar.S

Former Member
0 Kudos

Hi

Have you embedded the containers into the view in the window.

Regards,

Sravanthi

Former Member
0 Kudos

Hi,

Those user might have hide the fields thru personalization options

1. Run the application

2. Right click on browser

3. Select Personalization & Make field visible

If you want to avaid user from personalization, then in SE80,

1. Goto Application. Select parameter tab.

2. From F4 select parameter WDDISABLEUSERPERSONALIZATION, Set its value as 'X'

Edited by: Jagdish More on Dec 30, 2008 1:49 PM