Reply from deg876559 on Feb 13 at 10:40 AM Hi Abap expert, I am using this code to resolve my problem. But now i want to continue my code after at selection screen. For example if i write 'test', i don't receive any output after clicking in F8 Can some one help me? SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001. parameters: NAMEV like zcon-NNAV, NUMBL like zcon-NUBL , CONTN like zcon-CONN obligatory , VENDO like zcon-VEND , DARRV like zcon-DARR , DSORP like zcon-DSOP , DARRS like zcon-DARS , DSORS like zcon-DSOS , WEIGHT like zcon-WEIG, ZCOMMENT like zcon-ZCOM. SELECTION-SCREEN:END OF BLOCK b1. AT SELECTION-SCREEN. SELECT * FROM zcontainers INTO TABLE ZCON WHERE CONN EQ CONTN. READ TABLE ZCON INDEX 1 . NAMEV = ZCON-NNAV. NUMBL = ZCON-NUBL. VENDO = ZCON-VEND. DARRV = ZCON-DARR. DSORP = ZCON-DSOP. DARRS = ZCON-DARS. DSORS = ZCON-DSOS. WEIGHT = ZCON-WEIG. ZCOMMENT = ZCON-ZCOM.
| | | ---------------Original Message--------------- From: deg876559 Sent: Tuesday, February 11, 2014 7:50 AM Subject: Filling Parameters Automatically After Press Enter Hi Abap expert, I have list of parameters parameters: NAMEV like zcon-NNAV, NUMBL like zcon-NUBL , CONTN like zcon-CONN OBLIGATORY, VENDO like zcon-VEND, DARRV like zcon-DARR , DSORP like zcon-DSOP , DARRS like zcon-DARR , DSORS like zcon-DSOP , WEIGHT like zcon-WEIG, ZCOMMENT like zcon-ZCOM. This programme is used for updating table. so, i want when the user write in field CONTN and press enter. The programme read from table and fill automatically the other parameters. Can some one help me. | | Reply to this email to post your response. __.____._ | In the Spotlight Become a blogger at Toolbox.com and share your expertise with the community. Start today. _.____.__ |