- 浏览: 174341 次
- 性别:
- 来自: 成都
文章列表
Source:http://help.sap.com/saphelp_nw70/helpdata/en/d6/0db74a494511d182b70000e829fbfe/frameset.htm
Nameless text elements or default text elements are those text lines and control statements that appear at the beginning of the corresponding window contents without having the /E paragraph format. The ...
TabStrip in ALV(OOPS)
- 博客分类:
- Dynpro
http://wiki.sdn.sap.com/wiki/display/Snippets/TabStrip+in+ALV(OOPS)
source: http://wiki.sdn.sap.com/wiki/display/ABAP/SELECT-OPTIONS+on+Dialog+programming+screen
TRICK: Define Selection-screen as subscreen and call that subscreen in the flow logic of the Screen.
Steps to get SELECT-OPTIONS in module pool programs.
Start one dialog program with SAPMZ_TEST.
Place t ...
REPORT ztest.
TYPE-POOLS: sscr.
TABLES: adr6.
*--------------------------------------------------------------------*
*SELECTION SCREEN
*--------------------------------------------------------------------*
SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME TITLE text-001.
PARAMETERS p_indi(1) ...
I try to create BDC using the program RFBIBL00, but encountered two problems:
First: No batch input data for screen SAPLKEAK 0300
-->Soulution: passing the value to RKE_BUKRS(http://forums.sdn.sap.com/thread.jspa?threadID=1225693).
second: field dkacb-ximky does not exist
-->Soultio ...
Line number:3394 in include program LBTCHFXX
CASE p_sel_joblist-status.
WHEN 'A'.
output_joblist-statusname = text-081(Canceled).
output_joblist-slide_type_status = 'XXXX<'.
APPEND red_row TO output_joblist-colorize_status.
WHEN 'F'.
output_job ...
source:http://learnabapprogramming.blogspot.com/2011/05/how-to-debug-background-job.html
Usually,the programs which take long time for execution are scheduled for background job.Again,one need not wait for the completion of same.We use to create the background jobs in standard transaction SM36 &am ...
There are 2 types of BTE:
(1) Publish & Subscribe interfaces: These interfaces inform external software that certain
events have taken place in an SAP standard application and provide them with the data
produced. The external software cannot return any data to the R/3 System.
(2) Proces ...
Q:I am facing this problem when I am trying to resolve the problem using T-Code F-28.
Ex.rate diff.accts are incomplete for account xxxxxx currency USD
Message no. F5063
Diagnosis
The accounts for posting exchange rate differences could not be determined. For the specified G/L account and the speci ...
SELECT SINGLE * FROM anlc WHERE bukrs EQ int_tab-bukrs AND
anln1 EQ int_tab-anln1 AND
anln2 EQ int_tab-anln2 AND
gjahr EQ l_gjahr AND
...
REPORT ztest.
TABLES: bkpf.
SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME TITLE text-001.
PARAMETERS: p_bukrs LIKE t001-bukrs MODIF ID tst.
SELECT-OPTIONS: s_gjahr FOR bkpf-gjahr MODIF ID tst.
SELECTION-SCREEN END OF BLOCK blk.
SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text- ...
refer to:http://forums.sdn.sap.com/thread.jspa?threadID=1691939
Please review your tolerance customizing:
User Tolerences - OBA4
GL - OBA0
Vendor/Customer - OBA3
Depending on the type of account you are trying to clear the system will
check the 'User' tolerences and GL or Vendor/Custo ...
T-CODE: OB09 (Account Determination For OI Exch.Rate Differences)
REPORT TESTREP.
* Include type pool SSCR
TYPE-POOLS SSCR.
* Define the object to be passed to the RESTRICTION parameter
DATA RESTRICT TYPE SSCR_RESTRICT.
* Auxiliary objects for filling RESTRICT
DATA OPT_LIST TYPE SSCR_OPT_LIST.
DATA ASS TYPE SSCR_ASS.
* Define the sel ...
CALL FUNCTION 'WS_FILENAME_GET'
EXPORTING
def_path = 'C:\'
mask = ',Excel file,*.xls;*.xlsx;'
mode = '0'
title = 'Choose input file'
IMPORTING
filename = p_local
EXCEPTIONS
inv_winsys ...