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: 

Data element which contains all relational operators

0 Kudos
1,495

Hi,

Is there any data element in ABAP which contains all the below patterns . My requirement is to include all the below relational operators in my Ztable for a particular field. i tried with other DE's like BRR_OPERATOR , but not getting all these. Can someone help me on this !!

Thanks in advance,

Swapna

8 REPLIES 8

matt
Active Contributor
1,019

Data elements don't contain anything. They define type at a higher semantic level than domains.

0 Kudos
1,019

Is there any other way to achieve this !!!

Thanks,

Swapna

matt
Active Contributor
1,019

s.paramata I've no idea if there is another way, because I don't know what it is you are trying to achieve. Your question as it stands does not make any sense to me.

Sathya_Gunasekaran
Active Participant
0 Kudos
1,019

Create a zdomain with fixed values ans use it.

former_member186746
Active Contributor
0 Kudos
1,019

Hi,

I think you have to create your own domain. Table DD07T holds the texts belonging to domains with fixed values and I can't find "Select: Less than" for instance. SAP probably creates the list programmatically (did you try debugging the popup to find out where the values are coming from?).

Kind regards, Rob Dielemans

RaymondGiuseppi
Active Contributor
0 Kudos
1,019

Those icons are calculated in some includes such as LSE16NTOP, top include of FG SE16N, and icon names are built in a form such as GET_ICON_NAME of same FG.

So depending on your exact requirement, you could create a domain (to use in a data element and then your own tables) or just a search help (that you could build with search help exit and using code of SE16N FG) to attach to your field.

former_member246634
Active Participant
0 Kudos
1,019

Check domain VOPERATOR. I know it's not the same as you posted, but it's something,

0 Kudos
1,019

Its content is almost identical to the domain BRR_OPERATOR that Swapna mentioned in his/her question.