Ravi,
"When processing a PUT request servers return status 204 (No Content) to indicate success, no response body is needed"
Sreehari
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ravi,
If you want to display messages in Update and Delete operations, you can use below code. the messages you can see in response headers.
DATA ls_header TYPE ihttpnvp.
IF lv_message IS NOT INITIAL.
ls_header-name = 'STATUS' .
ls_header-value = lv_message.
/iwbep/if_mgw_conv_srv_runtime~set_header( ls_header ).
else.
ls_header-name = 'STATUS' .
ls_header-value = 'FAIL'."lv_message.
/iwbep/if_mgw_conv_srv_runtime~set_header( ls_header ).
Thanks
Syam
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.