Posts

time travel

Image
  write the chapters for "The Time Travelers: An Epic Adventure Story for Kids" - Join a group of friends as they travel back in time to different eras, facing historical challenges and uncovering hidden secrets along the way. Chapter 1: The Mysterious Time Machine The story begins as a group of friends discover a strange machine in an old abandoned warehouse. When they accidentally activate it, they are transported back in time to the age of dinosaurs. Chapter 2: Dinosaurs and Danger As they explore the prehistoric world, the friends encounter a variety of dinosaurs, including the fierce Tyrannosaurus Rex. They must use their wits and bravery to survive and find a way back to their own time. Chapter 3: The Medieval Castle After escaping the land of the dinosaurs, the friends find themselves in medieval times, where they come across a castle under attack by invaders. They must join forces with the knights to protect the castle and defeat the enemy army. Chapter 4: Pirates and

iRAS Logo

Image
 

Logo

Image
 
Image
Image
Image

MODULE 02 - MODULE POOL PROGRAMMING - QUESTION 06

 *&---------------------------------------------------------------------* *& Modulpool  ZTM20382363_MPP_Q6 *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* PROGRAM ZTM20382363_MPP_Q6. DATA: GV_MATNR TYPE MARA-MATNR. DATA: PLANT TYPE C,       DESCRIPTION TYPE C. START-OF-SELECTION. CALL SCREEN 100. *&---------------------------------------------------------------------* *&      Module  USER_COMMAND_0100  INPUT *&---------------------------------------------------------------------* *       text *----------------------------------------------------------------------* MODULE USER_COMMAND_0100 INPUT. CASE SY-UCOMM.   WHEN 'EXIT'.     LEAVE PROGRAM.   WHEN 'DISP'.     CALL SCREEN 200. ENDCASE. ENDMODULE. *&---------------------------------------------------------------------* *&      Module  USER_COMMAND_0200  INPUT *&-

MODULE - 1 | ABAP BASICS ( OPEN SQL.PDF )

 QUESTION - 01 REPORT  ZTM20382363_OSQL_Q1 . PARAMETERS :  DOC  TYPE  VBELN  DEFAULT  '0010000031' . SELECT  SINGLE  ERDAT ,  ERNAM ,  ERZET    FROM  VBAP    INTO  @DATA ( LS_VBAP )    WHERE  VBELN  =  @DOC . WRITE :  /  'CREATED ON: ' ,  LS_VBAP - ERDAT ,        /  'CREATED BY: ' ,  LS_VBAP - ERNAM ,        /  'TIME: ' ,  LS_VBAP - ERZET . QUESTION - 02 REPORT  ZTM20382363_OSQL_Q2 . PARAMETERS :  DOC  TYPE  VBELN . SELECT  SINGLE    MATNR ,  ARKTX ,  PSTYV    FROM  VBAP    INTO  @DATA ( LS_VBAP )    WHERE  VBELN  =  @DOC . WRITE :  /  'MATERIAL NUMBER: ' ,  LS_VBAP - MATNR ,        /  'MATERIAL DESCRIPTION: ' ,  LS_VBAP - ARKTX ,        /  'ITEM CATEGORY: ' ,  LS_VBAP - PSTYV . QUESTION - 03 REPORT  ZTM20382363_OSQL_03 . PARAMETERS :  MATNO  TYPE  VBAP - VBELN . PARAMETERS :  CAT  TYPE  VBAP - PSTYV . SELECT  SINGLE  VBELN ,  MATNR ,  ARKTX ,  ABDAT ,  MEINS    FROM  VBAP    INTO  @DATA ( LS_VBAP )    WHERE  MATNR  =  @MATNO  AND