cancel
Showing results for 
Search instead for 
Did you mean: 

Checking data of IT 0105 subtyp email

Former Member
0 Kudos

Dear all,

does somebody know a SAP standard function to process some logic checks for infotyp 105.

e.g. checking if data in subtyp email has one "@" or something like that?

Thanks

Best regards

Walter

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

These validations can be done through userexit/badi

Former Member
0 Kudos

Thanks for the hints but does anyone know a way to check the data without developing something new.

For example by simple customizing of rules or by running a SAP standard report.

All I want to check is if the mail adress contains a "@".

former_member31961
Contributor
0 Kudos

Hi Walter,

I don't think from customizing or from running report you can achieve above mentioned requirement.

Only thing you can do is, do the validation in either badi 'HRPAD00INFTY' method - AFTER_INPUT or using user exit 'EXIT_SAPFP50M_002'. It doesnt involve much coding, just you need to call above mentioned FM and give the error in case any.

Regards,

Shrinivas

Former Member
0 Kudos

Thanks for your hints!

Answers (1)

Answers (1)

former_member31961
Contributor
0 Kudos

Hi,

You can use FM 'SX_INTERNET_ADDRESS_TO_NORMAL' to check the validity of the email id.

Use import parameter TYPE = 'INT' i.e. Internet address , and ADDRESS = email id.

If the email id is invalid, the FM raises the exception.

Regards,

Shrinivas