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

Send null value

Former Member
0 Likes
562

HI ALL ,

I need to create WS which are using by .NET environment

and in the ws the client send me fields with value as type NULL and i dont famliar with this

type in abap,

how I can identify this fields (NUll ) .

Regards

James

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
516

Hello,

On the abap do it like...


IF YOUR_VAR IS INITIAL.
* THE VALUE IS NULL
ELSE.
* IT IS NOT NULL
ENDIF.

bYE

Gabriel P.-

2 REPLIES 2
Read only

Former Member
0 Likes
516

check the null value using INITIAL

Read only

Former Member
0 Likes
517

Hello,

On the abap do it like...


IF YOUR_VAR IS INITIAL.
* THE VALUE IS NULL
ELSE.
* IT IS NOT NULL
ENDIF.

bYE

Gabriel P.-