- Batch input and controls
Errors occur when you process or record batch input sessions if the application uses frontend controls such as the ALV grid or three. Typical cas ...
- When is RFC connection closed ?
When the context of the calling ABAP/4 program has ended or explicitly by RfcAbort or RfcClose in the external program. ...
- TOP-OF-PAGE DURING LINE-SELECTION.
The system triggers this event for each secondary list. If you want to create different page headers for different list levels, you must program the p ...
- What is the functional module for drop down box ?
As well as input help, which appears in separate dialog boxes, you can also define input/output fields as dropdown boxes. A dropdown box offers the us ...
- When using CALL 'SYSTEM' id 'COMMAND' field unix-command, how does one capture the results of the command? For example, if the unix-command were the date?
You capture the results in the table e.g TABL, like this DATA: BEGIN OF TABL OCCURS 0, LINE(560), END OF TABL. REFRESH TABL. ...
- test-authority check
test-authority check REPORT zsuji. TABLES vbrk. DATA:BEGIN OF itab OCCURS 0, vbeln LIKE vbrk-vbeln, vkorg LIKE vbrk-vkorg, vtweg LIKE vbrk-vtweg, END ...
- How can I read an Excel file from presentation server?
You can use the Function module ALSM_EXCEL_TO_INTERNAL_TABLE to read the Excel file into the internal table of type alsmex_tabline. From this internal ...
- Create Inner Join to Pool / Cluster Table
Hi can anyone tell me if it is possible to create an inner Join on a cluster table. The tables in question are from the FICO side. They are BSIP and ...
- Find the difference between two dates in days, months and years
* * Program to find the difference between the two dates in days, months and years. * * REPORT ZDATEDIFF. DATA: EDAYS LIKE VTBBEWE-ATAGE, ...
- BAPIs CO Actual Postings: New Function as of 4.70
1. The batch input on Transactions KB11, KB15, KB21, KB41 is still provided with the known function and restrictions from earlier one. There will be n ...
- Deleting the language load
Defining Language Load The problem of language load arises because the outdated or deleted texts are still displayed when you display the releva ...
- MESSAGE_TYPE_ X System error (termination point CLEARING_BALANCE)
Please check following error ABAP runtime errors MESSAGE_TYPE_ X Occurred on 15.12.2008 at 15:15:02 >> Short dump has not been completely sto ...
- SmartForm Doublesided printing question
Your customer wants your PO SmartForm to be able to print "Terms and Conditinos" on the back side of each page. They don't want to purchase ...
- Report Writer: Internal error GR 215
When you execute a report group, the system terminates and issues error message GR 215: 'Internal error: More than 999 INDX blocks were requ ...
- Give me syntax for Box command.
BOX XPOS 2 MM WIDTH 0 CM HEIGHT '9.5' CM FRAME 10 TW Script Commands. Defining a variable DEFINE &CUST& = '00000021'. Define and insert a s ...
- Profile parameters for SAP buffers
Ram Size: 8GBNo. of Users: 57 Profile parameter Current Value Unit Comment Program buffer (PXA) ab ...
- How to use function DATE_GET_WEEK
A sample using function DATE_GET_WEEK Report try05. DATA: xweek(6) TYPE n, xdt TYPE d. xdt = '20050101'. ...
- Create BDC, ALV Report Using LSMW T-code
This tutorial explains step by step how to create a normal program (BDC, ALV Report) by using LSMW transaction code in non-development clients.In this ...
- How can we give dynamic table name in select statement?
Dynamic Select Statement check this code... *----- For dynamic table name.... REPORT demo_select_dynamic_database . DATA wa TYPE s ...
- Example for system field sy-abcd
there is no field corresponding sy-abcde but there is a field SY-ABCDE, It returns the alphabets ABCDEFGHIJKLMNOPQRSTUVWXYZ. ...
- How to set Check Boxes and Radio Buttons in batch input.
In the batch input a Check Box is set by putting a capital X in the field and the same applies to a Radio Button. Example: Definition in the intern ...
- Modifying attributes of screen fields at run time
To modify the attributes of screen fields at run time you loop through the fields of the screen. When you find the name of a screen field you want to ...
- There is no article description for item 000001
Working with Genrtan server for Windows and ECC 6.0 we are receiving an error when we import IDOC. The IDOC is an 850 PO from a customer. The document ...
- User Interaction and Dialog step - same?
user Interaction step and dialog step- do they represent same meaning or different meaning. If they are different do let me know what the difference ...
- Types of Selection Screen Event
Answered
What are the Various Types of Selection Screen Event?Types of Selection Screen Events Intialization At selection-screen At selection-screen output At ...
- Difference Between SM30 and SE54 T-codes
SM30 vs SE54 What is the difference between t-codes SM30 and SE54? SOLUTION SM30 1) SM30 T-code is used for displaying and updating table ...
- Difference Between AT SELECTION-SCREEN and AT USER-COMMAND events and when we should use what?
Both the events AT SELECTION-SCREEN and AT USER-COMMAND are processed after user input. Then what is the difference between these and when we sh ...
- SAP HANA and SAP NetWeaver AS ABAP Deployed on One Server
SAP software's help business all over the world to rapidly optimize, execute their IT strategies.It is a fact of standard for running today's ...
- Barcode Scanning/Reading Over Items in SAP with T-Code
Barcode Reading over items with the help of Barcode Reader and to save them into SAP one need the following info:What is the standard T-Code and field ...
- Print to PDF SAP Script
*----------------Database Declaration-----------------------------* TABLES: LFA1,ADR6. *-----------------Internal Table Declaration----------------- ...