26,218 SAP Managed Tags: ABAP Development Hi, I have a simple question to ask ... what is the use of SY-BATCH in return of a SELECT statement, is it relates with SY-SUBRC or SY-DBCNT ? I am working on a ALV report. Thanks & Regards Mahesh.Reply...
可以通过系统变量sy-batch判断abap程序是前台运行还是后台运行,sy-batch等于‘X'是后台运行,等于空就是前台运行。 以上。
SAP Managed Tags: ABAP Development You would use SY-BATCH any time you want to know if the current program is running in the background. For example, say you have a function module which downloads a file to the frontend, but we know that we can't do this in background, so you c...
SAP Managed Tags: ABAP Development Hello All, I have a quick question. I am working with a background job and I have a doubt about the sy-batch value. I know it set to 1 when the process in run in background but if I turn the debuggin on [ via the infinite loop ] then will...