SAP Database

END-OF-SELECTION : ABAP Keyword a day

Print This Post Email This Post Written by admin on Jan 23rd, 2008 | Filed under: ABAP Keywords

END-OF-SELECTION

Basic form
END-OF-SELECTION.
Effect
Processing event

Executes the code after END-OF-SELECTION when all the logical database records have been read and processed.
Related START-OF-SELECTION , STOP , GET dbtab

If you like this post, you may as well like these too:

  1. CHECK : ABAP Keyword a day CHECKWithin loops and events- CHECK logexp.Special for reports with logical databases- CHECK sel.- CHECK SELECT-OPTIONS.CHECK - within loopsBasic formCHECK logexp.EffectCHECK evaluates the subsequent logical expression . If it is true,...
  2. EXIT : ABAP Keyword a day EXIT Basic forms 1. EXIT. 2. EXIT FROM STEP-LOOP. 3. EXIT FROM SQL. EXIT in loops and modularization units Basic form EXIT. Effect * In loop structures: Leaves the loop...
  3. ABAP Programs : Using the events start-of-selection and end-of-selection REPORT ZSOURCE1503. * Work area TABLES BOOKINGS. * Initial processing START-OF-SELECTION. WRITE / 'Start'. * Reading data GET BOOKINGS. WRITE: AT /3 BOOKINGS-FLDATE. * Final processing END-OF-SELECTION. WRITE / 'Finished'....
  4. COMMIT: ABAP Keyword a day COMMITBasic formCOMMIT WORK.Addition... AND WAITEffectExecutes a database commit and thus closes a logical processing unit or Logical Unit of Work ( LUW ) (see also Transaction processing ). This means...
  5. EXPORT : ABAP Keyword a day EXPORT *Export data - EXPORT obj1 ... objn TO MEMORY. - EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key. - EXPORT obj1 ... objn TO DATASET dsn(ar) ID key....



Leave a Reply

  • Help Support CRY