Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP QU

Former Member
0 Kudos

HOW WILL U PASS THE USER ENTRY DATA FROM A

SCREEN TO DATABASE

3 REPLIES 3

Former Member
0 Kudos

by useing module pool programing u can do that one

Former Member
0 Kudos

Hi,

U have to create Module pool program

Former Member
0 Kudos

hi

ceat one module pool program

and at the pushbutton creat

write this code

SELECT SINGLE * FROM ZNNR INTO ZNNR WHERE EMPID = ZNNR-EMPID.

IF SY-SUBRC = 0.

MESSAGE E999 WITH TEXT-001.

ENDIF.

*IF SY-SUBRC <> 0.

INSERT INTO ZNNR VALUES ZNNR.

COMMIT WORK AND WAIT.

CLEAR ZNNR.

reward if helpfull