2007 May 11 10:14 AM
Hi Friends
I need to put a IF condition ,
if ( bsik-xblnr and bsik-augdt ) is initial.
It is showing me error what wrong in this.
Regards,
Line
2007 May 11 10:16 AM
hi,
this is the corretc way.
<b>
if ( bsik-xblnr is initial and bsik-augdt is initial ).
endif.</b>
Regards
Reshma
hi,
this is the corretc way.
<b>
if ( bsik-xblnr is initial and bsik-augdt is initial ).
endif.</b>
Regards
Reshma
2007 May 11 10:15 AM
Hi,
U cant do like this.
U have to write :
if bsik-xblnr is initial and bsik-augdt is initial
Regards,
Himanshu
2007 May 11 10:16 AM
Hi
<b>if ( bsik-xblnr is initial and bsik-augdt is initial ).</b>
Max
2007 May 11 10:16 AM
try like this
if bsik-xblnr is initial.
and bsik-augdt is initial.
hope this is enough.
reward some points.
with regards,
suresh babu aluri.
2007 May 11 10:16 AM
Hi,
In ABAP you have to write:
if bsik-xblnr is initial and bsik-augdt is initial.
2007 May 11 10:16 AM
hi,
this is the corretc way.
<b>
if ( bsik-xblnr is initial and bsik-augdt is initial ).
endif.</b>
Regards
Reshma
2007 May 11 10:17 AM
hi ,
put condition like this
if bsik-xblnr is initial
and bsik-augdt is initial.
regards
Madhumati
***rewards poitns if helpful
2007 May 11 10:18 AM
Hi Line,
<b>If < > is initial</b> is used for internal table.
these are indivisual fields.
Use this code :
if ( bsik-xblnr and bsik-augdt ) eq 0.
message e001.
endif.
Reward points if helpful.
Regards,
Hemant
2007 May 11 10:22 AM
Hi Line,
Use this code inplace of that I have post in previous thread.
If (bsik-xblnr eq 0 and bsik-augdt eq 0).
do this.
Endif.
Regards,
Hemant
2007 May 11 10:25 AM
Hi,
You cant same logical expression for diff variables in ABAP. Use:
if ( bsik-xblnr is initial and bsik-augdt is initial).
Thanks
Sandeep
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |