How to get the no of records using select statement?
Answers were Sorted based on User's Feedback
Answer / goutam
Data: IT_EKKO type table of EKKO.
Data: LD_LINES Type I.
Select * from EKKO into Table IT_EKKO where EBELN
= '<Condition>'.
Describe Table IT_EKKO Lines LD_LINES.
Write :/'No. of Lines-', LD_LINES.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vijay
data: t_t001 type table of t001.
select * into table t_t001 from t001.
write: no.of records sy-dbcnt.
Is This Answer Correct ? | 6 Yes | 0 No |
What are your ways to performance optimization?
After running a BDC program in background, next day morning when you see the results, few records are not updated(error records). What will you do then ?
What will happen if we write “WRITE” statement in the TOP_OF_PAGE? Can we write?
will sorted internal tables help in performance?
If there is a bank system application,in this when one user login then photo of his would be come up and another one login then his photo should come up in smart form,then how it will handle or make a smart form dynamically?
What are the differences between interactive and drill down reports?
How are BAPI different from normal function modules?
What are the page windows?
What are the fields in the memory table ‘screen’?
What are the include programs?
How to get the status of an IDOC in a report without using WE02 transaction ?
In table control how to maintain 10 records in first page, other 10 records in ohter page?