cancel
Showing results for 
Search instead for 
Did you mean: 

Read data from standard list type field.

Former Member
0 Kudos

Hi community,

I need to do certain validations. you can read the data of the list type fields.(Standar):

Pictured for example, the field "language."

In SAP R3 there is a function to read the data item.

thanks in advance,

Best regards.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Joe,

can you provide some more details?

please check this post http://scn.sap.com/thread/3481132

Hope this help.

regards:

Sunil

Former Member
0 Kudos

Hi Sunil,

I need to read all the codes from the list to validate the entry.

I am making a web service, and I need to validate data entry.

to customize the error message,

best regards,

Joe.

HorstSchaude
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello Joe,

If you want to get all possible values of a code type you can query this:

var myCodeTypeValues;

myCodeTypeValues = XYZCodeType.QueryByElements.Execute();

The result set will contain all values for this XYZCodeType.

HTH,

     Horst

Answers (1)

Answers (1)

0 Kudos

Hi Joe,

     I guess you can use what Thomas mentioned in above link to query the BCO which store the list.

example code you can find in above link to get all the code and description.

Thanks.

Chris