Search found 931 matches
- Wed Feb 23, 2005 11:41 am
- Forum: ABAP
- Topic: Time in Words ( Function Module )
- Replies: 4
- Views: 473
- Mon Feb 21, 2005 2:36 am
- Forum: ABAP
- Topic: Flow Logic in ABAP Print program
- Replies: 1
- Views: 280
- Thu Feb 17, 2005 4:28 am
- Forum: ABAP
- Topic: EXCEL Download
- Replies: 5
- Views: 1156
- Wed Feb 16, 2005 6:19 am
- Forum: ABAP
- Topic: Selecting partial fields in the select statement ?
- Replies: 21
- Views: 2370
I guess something like this should work if you want characters 4 till 8: DATA BEGIN OF T_MARA, OFFSET(3), "<---- omit the first 3 char WHAT_YOU_NEED(5), REMAINING_PART(10), MATKL, END OF T_MARA, SELECT MATNR MATKL FROM MARA INTO TABLE T_MARA WHERE ETC ETC Make sure the field lenghts of OFFSET, WHAT_...
- Wed Feb 16, 2005 6:11 am
- Forum: ABAP
- Topic: Dialog Programming - Radio Buttons values in Database
- Replies: 4
- Views: 815
- Tue Feb 15, 2005 3:24 am
- Forum: ABAP
- Topic: standard table which stores include statements.
- Replies: 2
- Views: 244
- Mon Feb 14, 2005 6:53 am
- Forum: ABAP
- Topic: selections and times and dates - SOLVED
- Replies: 8
- Views: 793
- Mon Feb 14, 2005 5:48 am
- Forum: ABAP
- Topic: selections and times and dates - SOLVED
- Replies: 8
- Views: 793
- Thu Feb 10, 2005 10:21 am
- Forum: ABAP
- Topic: Table mapping
- Replies: 18
- Views: 959
- Tue Feb 08, 2005 5:56 am
- Forum: ABAP
- Topic: Function Module to convert time into words
- Replies: 1
- Views: 404
- Mon Feb 07, 2005 8:41 am
- Forum: ABAP
- Topic: Fetching records from database based on Time created
- Replies: 8
- Views: 982
- Fri Feb 04, 2005 7:14 am
- Forum: ABAP
- Topic: "whenever not found send errormessage " statement
- Replies: 11
- Views: 1223
You can also get there with F1 on FIELD. This is all Dialog programming stuff and does not apply to report programming. Use of select: If you want to check if the user has entered a valid material number you could do something like this in the PAI: FIELD p_matnr SELECT * FROM table mara WHERE mara m...
- Fri Feb 04, 2005 7:00 am
- Forum: ABAP
- Topic: "whenever not found send errormessage " statement
- Replies: 11
- Views: 1223
- Fri Feb 04, 2005 6:38 am
- Forum: ABAP
- Topic: "whenever not found send errormessage " statement
- Replies: 11
- Views: 1223
Are you serious? If you are, please, give us the name of the standard SAP program to check it... It seems you are a bit confused about it, I guess it's a commented line before an IF sy-subrc = 4. statement... I tried to find whenever in SAP help, and nothing... (I wanted to be sure he was right) Lo...
- Fri Feb 04, 2005 6:35 am
- Forum: ABAP
- Topic: "whenever not found send errormessage " statement
- Replies: 11
- Views: 1223
This is a Flow Logic statement, used to check the input. From F1: SELECT SQL interface SELECT * FROM table name WHERE table-keyfield = inputfield and .... INTO fieldname WHENEVER NOT FOUND (or FOUND) SEND ERRORMESSAGE (or WARNING) messagenumber WITH fieldname ... You do not have to specify a message...