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: 
Read only

SLIN warning message need to rectify

Former Member
0 Likes
1,411

Hi All,

TRY.

CREATE OBJECT LR_0014

EXPORTING

TCLAS = 'A'

INFTY = '0014'.

CATCH CX_HRPA_VIOLATED_ASSERTION .

ENDTRY.

for this code in SLIN it is showing warning message as

No Exception Handling After the CATCH Statement

Please suggest the Solution.

Hi All,

TRY.

CREATE OBJECT LR_0014

EXPORTING

TCLAS = 'A'

INFTY = '0014'.

CATCH CX_HRPA_VIOLATED_ASSERTION .

ENDTRY.

for this code in SLIN it is showing warning message as

No Exception Handling After the CATCH Statement

Please suggest the Solution.

4 REPLIES 4
Read only

vinod_vemuru2
Active Contributor
0 Likes
913

Hi,

What is the object type you are refering to? Seems you have removed the EXCEPTIONS part.

Thanks,

Vinod.

Read only

former_member217544
Active Contributor
0 Likes
913

Hi Kumar,

check this link:

Regards,

Swarna Munukoti.

Read only

Former Member
0 Likes
913

see.. basic reason it you are trying to catch something but not doing anything with it..

it can be hidden using "#EC NO_HANDLER ...

but if you have some thing like..

>catch this into that.

then you can use to read the text of 'that' to use it for messages or some other task..

Read only

Former Member
0 Likes
913

Thanks All got ans