- Difference between Checktable and Search Help
There is a lot of difference between searchhelp and check table.Check table is a master table. Like T000 for client, t001w for company codes, TCURC fo ...
- Customer Exits in SAP ABAP
Customer exit in the SAP ABAP system is a feature that allows users to add custom functionality to SAP applications. It is a pre-defined point within ...
- Difference between Get and Get Late Event
Get vs. Get Late Event This is the most important event for executable programs that use a logical database. It occurs when the logical database ha ...
- Sending Emails and SAP Mail
Sending Emails and SAP Mail Using ABAP - SO_OBJECT_Send - SAP is a robust system, which gives many facilities in the form of Function Modules (FM ...
- Getting messages from call transaction
types tt_errtab TYPE STANDARD TABLE OF BDCMSGCOLL. data: li_errtab type tt_errtab, l_errtab type BDCMSGCOLL. The Call transact ...
- Difference between Move and Assign Statement
Move Statement vs Assign StatementMove :- To assign the value of a data object to a variable < f2 >, use the following statement:MOVE < ...
- SAP LSMW Explained with example
LSMW is a tool used to tranfer data from legacy system to R/3 periodically or once.It supports conversion of data and Batch Input,BAPI,IDOC or Direct ...
- How to improve performance of Customer-specific programs and program enhancements
1. Accesses to sales orders (tables VBAK, VBAP) a) Search orders for customer number (field VBAK-KUNNR): Incorrect: SELECT FRO ...
- How can unnecessary work items be deleted?
At the end of a test phase, the inboxes of several users are often full of work items, which are no longer required. In the productive phase, finished ...
- Convertion of special character turn into #
I am Ulpoading a file in the step 'READ DATA' in LSMW and when I check the result in the next step 'DISPLAY READ DATA' I see that the upload (i do not ...
- Spelling Check in SAP
How to use the spelling check implemented in SAPGUI 6.10. 1. Introduction Using the customizing menu "Spelling Check" of SAP Fronte ...
- Differences between ABAP and OOABAP
Answered
OOABAP is used to develop BSP/PCUI applications and also anything involved object oriented like BADIs, SmartForms..etc.where as ABAP is used to develo ...
- BDC: NO STANDARD PAGE HEADING LINE-SIZE
REPORT zhr_bdc_infotype_101 NO STANDARD PAGE HEADING LINE-SIZE 255.TYPES: ...
- push-buttons changing background colors
have three buttons that I am painting using background .gif files. What I would like to do is kick off an inputscript from each one with a diffe ...
- Interactive Reports
Answered
What are Interactive Reports?As the name suggests, the user can Interact with the report. We can have a drill down into the report data. For example, ...
- Displaying SAP error messages in a nice way.
One day I wanted to have my error messages displayed in a nice popup window (users just wanted it to be “RED” and shouting), but not with using th ...
- ABAP Example Program ALV Grid Control
You need to create a screen 100 for calling it, and in the Element list of the sceen supply OK_CODE of type OK & in the layout, place a Custom - contr ...
- Managing ABAP Sort - Physical sort (sort on disk), Index sort (Sort in memory)
As of release 4.5A, the ABAP Sort has been completely re-implemented in R/3. The following describes the way the SORT works and any possible errors th ...
- Maximum no. of Records an Internal Table can have.
I want to know the maximum no. of records an internal table can have. One of my pgms is giving short dump due to exceeding that limit, hence i have to ...
- Interactive reporting (Drill down reporting ) - example
In this example you have a mainreport REPORT1. From REPORT1 you can drill down to REPORT2 and from REPORT2 you can drill down to REPORT3. Tip: U ...
- Why use Table Maintenance Generator (TMG) to edit the table instead of SE16 or SE11
In the production system, end-users will not be having access to transaction codes like SE11 and SE16. Developers will not be having access to many tr ...
- Regarding REUSE_ALV_HIERSEQ_LIST_DISPLAY
REPORT ztestalv2 . TYPE-POOLS slis. " ALV Global types CONSTANTS: gc_forname_top_ of_page T ...
- BDC Program Interview Question and Answer
What is the function key values of BDC_OKCODE ie '/00' what this is for?How will we handle the errors in call transaction method? '/00' ...
- Subroutine pools - Dynamic program generation
This report generates a dynamic program with a form routine called MY_SUBPOOL. Subroutine polls can not be called directly, you have to call form ro ...
- How to Maintain the Table Control in BDC?
Table controls are treated like loops in BDC. Actually the transfer the data from the program to screen is automatic. But where as in table c ...
- BAPI_REQUIREMENTS_CHANGE
Transaction BAPI permits the call of the three function modules:BAPI_REQUIREMENTS_CHANGE (change planned independent requirement) BAPI_REQUIREMENTS_CR ...
- Suprressing information messages in BDC
Is there any way to suppress the message boxes during BDC mode. Becoz, due to that, sequence of screens are getting affected. Except in mode A, ...
- Transport Smart Forms
How does one transport SMARTFORM? SE01? How do you make sure that both, the SMARTFORM & it's function module gets transported? Or does the FM wi ...
- Enhancements and Modifications
Adjusting the R/3 Customizing: this means setting up specific business processes and functions for your system according to an implementation guide. T ...
- Dynamically Passing Database Table name
The following section in SAP Doc should help you. Though I have created structure using the second section, I havent tried creating a int.table. ...