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: 

Doubt in Table controll

former_member195383
Active Contributor
0 Kudos

We are using one field of the the type of a dictionary field,which has value ranges , so that when we check the list box option, in the screen we are able to see two values in the drop down.

"ADD","DELETE".Can I add one more option ''REPLACE'' from the program, depending on certain conditions.I dont want to modify the value range, in the data dictionary.In some rows i want to put REPLACE.

Actually it takes values as A,D.and in the drop down we have like this

A add

D Delete.

If i m explicitly assigning R, only R is appearing.But how the description will come,as it comes from the dictionary.

i want the drop down to be

A add

D delete

R replace.

Again i m specifying this i want to achieve..with out modifying the value range in the domain.

Please help me out in this

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Rudra,

Value range for the domain is stored in table DD07L. you can select all the values specified in the domain from this table in your program in an internal table and assign it in input help for the field.

It will select A and D from the domain and display in dropdown.

based on your conditions you can append R to the internal table before passing it for input help.

Hope it helps.

Regards,

Komal.

1 REPLY 1

Former Member
0 Kudos

Hi Rudra,

Value range for the domain is stored in table DD07L. you can select all the values specified in the domain from this table in your program in an internal table and assign it in input help for the field.

It will select A and D from the domain and display in dropdown.

based on your conditions you can append R to the internal table before passing it for input help.

Hope it helps.

Regards,

Komal.