Save info   Get password
Home Submit your blog Edit Account Rules RSS-Archive Contact


SAP ABAP CODE FOR PICTURE CONTROL
2008-10-07 00:52:48
Steps:Create a screenPlace a custom container for the picture on the screen. Name the container GO_PICTURE_CONTAINER.* Type pool for using SAP iconsTYPE-POOLS: icon.* DeclarationsDATA:go_picture TYPE REF TO cl_gui_picture,go_picture_container TYPE REF TO cl_gui_custom_container.MODULE status_0100 OUTPUT.IF go_picture_container IS INITIAL.* Create obejcts for picture and containe


SAP ABAP CODE FOR HTML VIEWER
2008-10-07 00:52:16
Note that the SAP HTML viewer uses internet Explorer 4.0 or higher.This example uses the SAP HTML viewer to browse the internet. The navigation buttons are placed on a SAP Toolbar control. The Goto URL button and field are normal dynpro elements, and so is the Show URL field.Steps:Create a screen and place a container named go_html_container for the HTML viewer.Create a dynpro button with ethe tex


SAP ABAP CODE FOR DIALOG BOX AND SPILTTER CONTAINERS
2008-10-07 00:51:30
This example shows how to use the dialog box container and the splitter container.A dialog box container is created, and a splitter container with 2 rows and 1 column is placed on it.To keep the example simple row 1 of the splitter container is not used, but you can use it to place a control.Row 2 is used to place a toolbar control in the button of the dialog box. The toolbar has an OK and a Cance


SAP ABAP CODE FOR CREATING TOOLBAR CONTROLS
2008-10-07 00:50:21
GeneralAdd methodAdd_button_group methodSet_button state methodSimple exampleAdvanced exampleGeneralSee also Set up event handling for controls for a general example of event handlingNote: To get a list of all icons, use program SHOWICON.Add methodAdds a new button to the toolbarCALL METHOD go_toolbar->add_buttonEXPORTING fcode = 'EXIT' "Function Code for buttonicon = icon_system_end "ICON name, Y


SAP Abap Code for Create Listbox
2008-10-07 00:48:56
Description:Here is a simple program that create Listbox and display the selected value. I create this program to help Dennis Staiger. And because this tutorial very simple it is more suitable for newbie. First, we create Type and Data declaration, and get data for listbox value. REPORT Z_LISTBOX .TABLES: T554T.DATA : BEGIN OF WA_T554T, AWART TYPE AWART, ATEXT TYPE ABWTXT, END O


SAP ABAP Clipboard Utilities for Beautiful Commented Code
2008-10-07 00:48:00
" Any fool can write code that a computer can understand.Good programmers write code that humans can understand. "--- Martin Fowler, Refactoring: Improving the Design of Existing CodeABAP pretty printer is good for code but not supportive for data declarations.As a result ABAP code often tends to need more labour to maintain.I therefore wrote 3 Clipboard utilities1. YClipJNC based on improved to i
Read more: Utilities , Beautiful

SAP ABAP free download ABAP CERTIFICATION TUTORIALS & BOOKS
2008-10-07 00:46:27
ABAP CERTIFICATION TUTORIALS & BOOKSTABC41_1 : ABAP Development Workbench Basics 1 TABC41_2 : ABAP Development Workbench Basics 2 TABC42_1 : ABAP Programming Techniques 1 TABC42_2 : ABAP Programming Techniques 2 TABC43_1 : Data Transfer BC400 : ABAP Workbench Concepts & Tools BC402 : ABAP Programming Techniques BC404 : Object Oriented Programming in R/3 BC410 : Developing User DialogsBC425


SAP ABAP free download abap certification tutorial
2008-10-07 00:43:27
TABC41_1 : ABAP Development Workbench Basics 1 TABC41_2 : ABAP Development Workbench Basics 2 TABC42_1 : ABAP Programming Techniques 1 TABC42_2 : ABAP Programming Techniques 2 TABC43_1 : Data Transfer BC400 : ABAP Workbench Concepts & Tools BC402 : ABAP Programming Techniques BC404 : Object Oriented Programming in R/3 BC410 : Developing User DialogsBC425 : Enhancements & ModificationsBC430


abap program for A SAP Pop-out Calculator
2008-10-07 00:41:29
* A Pop-out Calculator for the users*REPORT ZCALCULATOR.DATA: X_VALUE(15) TYPE C.call function 'FITRV_CALCULATOR'* EXPORTING* INPUT_VALUE =* CURRENCY =* START_COLUMN = '10'* START_ROW = '10'IMPORTING OUTPUT_VALUE = X_VALUEEXCEPTIONS INVALID_INPUT = 1 CALCULATION_CANCELED = 2 OTHERS


SAP ABAP free download abap programmin pdf book
2008-10-07 00:40:02
Link:free download abap programmin pdf book


SAP ABAP and Unicode
2008-10-07 00:38:36
From Release 6.10, ABAP supports multi-byte coding for characters in Unicode . Prior to Release 6.10, ABAP used only character sets that were based on single-byte codes – such as ASCII and EBCDIC – or double-byte codes, such as SJIS and BIG5. This switch to Unicode affects all statements where an explicit or implicit assumption is made about the internal length of a character. If you use thes


SAP abap all topics inteview questions
2008-10-07 00:36:33
SET SCREEN or the CALL SCREEN?Ans :- The CALL SCREEN command.What function is performed by the SET SCREEN 0 command?Ans :- Returns to the original screen.What are the main differences between the repot status and screen status?Ans :-Where must you place the SET PF-STATUS command in your online program?Ans :- Place it in the PBO module of the screen.Why is it good idea to clear OK_CODE field after
Read more: topics , questions

SAP ABAP - Sending GOS attachments to an email address
2008-10-07 00:35:31
Description Sending GOS attachements to an email address for the given business object and ID. This program is tested in the version 4.6C.REPORT z_send_gos_attachments.* Selection-screen.SELECTION-SCREEN BEGIN OF LINE.* Email addressSELECTION-SCREEN COMMENT 2(20) v_text1 FOR FIELD p_email.PARAMETERS: p_email(50) OBLIGATORY.SELECTION-SCREEN END OF LINE.SELECTION-SCREEN BEGIN OF LINE.* Business obje


SAP ABAP - Memory Usage Check
2008-10-07 00:34:40
*&---------------------------------------------------------------------**& Report ZUSEMEM*&---------------------------------------------------------------------*REPORT zusemem.PARAMETERS mb TYPE i.TYPES:BEGIN OF ty_tab_s, ch(1024) TYPE c,END OF ty_tab_s.TYPES: ty_tab_t TYPE TABLE OF ty_tab_s.DATA:ls TYPE LINE OF ty_tab_t,lt TYPE ty_tab_t.DO mb TIMES. DO 1024 TIMES. APPEND ls TO lt
Read more: Memory , Usage , Check

SAP ABAP - Getting PDF file from spooling list
2008-10-07 00:33:44
I made this code snippet for users to provide function like this, saving files from splooing list. You can find your own spooling list only and then choose, save it.********************************************************************** Program Name : ZSDRPDF* SAP Module : SD* Description : PDF SAVE FROM SPOOLING LIST* Input :* Output :* Initiator : Kyung Woo, Nam* External Re


SAP ABAP - Easy Graph to use
2008-10-07 00:32:36
I'll introduce some code snippet to use easily.of course, there are lots of program sourse using graph in T-CODE GRAL. But, I think the function 'GFW_PRES_SHOW' is powerful and easy to use... This code snippet shows how to use function GFW_PRES_SHOW. ...data gathering*__Make data formatDATA: lv_cnt(2), lv_text(30).REFRESH values.REFRESH column_texts.SORT it_gra BY zcono.*__Row definitionLOOP AT
Read more: Graph

SAP ABAP - Code for Displaying Quotations in ALV and create Condition Records Automatically from it
2008-10-07 00:31:54
Description: The below code involves Hierarchy Sequential ALV, BDC, BAPI and also explains about the interactivity of the ALV. This program is used to display Quotations in Hierarchy ALV. Provision is given to select some of the Quotations and use the interactive button to create Condition Records based on the quotation data. /* REPORT ZSPRENH069 NO STANDARD PAGE HEADING.TYPE-POOLS : SLI
Read more: Automatically

SAP ABAP - BDC code for ME31K - Open Contracts Creation
2008-10-07 00:30:49
Description This code is useful in Creating Open Contracts based on the information provided in the flat file. This code is special in a way that it uses complex logic instead of using AT NEW functionality. It deals with three levels of table controls, i.e. A table control within a table control and within it one more table control are to be dealt with. This was dealt with pure logic and not using
Read more: Creation

SAP ABAP - 3 Levels Interactive Report
2008-10-07 00:29:36
Description This Sample Code Illustrates the Use of HIDE Statement to create a NON-ALV Interactive Report upto 3 Levels for SD module. /* 3 Level Interactive Report */ *&---------------------------------------------------------------------**& Report ZTEJ_INTAB1 **&


ABAP Introduction to ABAP
2008-10-01 09:54:54
The R/3 Basis System: Overview Overview of the Components of Application Programs Creating and Changing ABAP Programs
Read more: Introduction

ABAP - What does ABAP stand for?
2008-10-01 09:53:10
ABAP stood originally for "Allgemeiner Berichtsanalyseprozessor". Then, when the company turned international, they created an English "backronym" for ABAP - Advanced Business Application Programming, as we know it. So far, so good, this is not uncommon.The funny thing is that the original German name translates to "Common Report Analysis Processor".So, why didn't they just use the acronym for tha


ABAP BASIC
2008-10-01 09:52:33
ABAP (Advanced Business Application Programming) is a programming language for developing applications for the SAP R/3 system, a widely-installed business application subsystem. The latest version, ABAP Objects, is object-oriented programming. SAP will run applications written using ABAP/4, the earlier ABAP version, as well as applications using ABAP Objects.SAP's original business model for R/3 w


ABAP - A Sample Hide and Get Cursor in Interactive Programming
2008-10-01 09:51:39
Hide & Get Cursor is used in interactive programming ( in the event AT LINE-selection).Using Hide in Loop..Endloop, you can get the field name At Line-SelectEvent While Double Clicking That Line. ****PROG.BEGIN****************************************************************&---------------------------------------------------------------------**& Report ZPREM_INTERACTIVE
Read more: Sample , Programming

A ABAP Program demo program to create subscreen
2008-10-01 09:50:37
* A demo program to create subscreen in your ABAP Program ** This report will display the user last login date and time.** Subscreen selection 1 : User Name* 2 : Last Login Date* 3 : Class Belong To** REPORT ZSUBSCREEN.TABLES: USR02, "Logon data SSCRFIELDS. "FIELDS ON SELECTION SCREENS*-----------------------------------------


sap abap examples of real time objects
2008-10-01 09:49:43
A demo program to create subscreen in your ABAP Program** This report will display the user last login date and time.** Subscreen selection 1 : User Name* 2 : Last Login Date* 3 : Class Belong To** Written by : SAP Basis, ABAP Programming and Other IMG Stuff* *REPORT ZSUBSCREEN.TABLES: USR02, "Logon dataSSCRFIELDS. "FIELDS ON SELECTION SCREENS*------------------------------------------------------
Read more: objects , real time

free download book on abap reporting on all modules
2008-10-18 00:29:00
free download book on abap reporting on all modules


Submit ABAP report with SQL traces
2008-10-18 00:28:17
You use ST05, Trace Request, to do a SQL trace. When using SQL trace, it is good to run the program in debugger and just before you execute the SQL, go to ST05 in another session and turn the trace on. After, or when, the SQL is finished, you can turn the trace off. Then click on List Trace to see the details. This is the way to control the traces. If you just turn the trace on and then execut
Read more: Submit , report

SAP ABAP Commonly Asked Questions I
2008-10-18 00:27:49
What is the difference betwen abap and sap memories? Data sending between internal sessions is called abap memory using import and export parameters.Data sending between main sessions using spa/gpa ie (set /get) parameters called sap memory. 2) What is nast?nast is a message status database table. 3) How to upload logo in sapscripts? 1... create a logo using paint shop and save it as tifffile the


Difference Between LIS, Reports, Abap Query
2008-10-18 00:26:53
LIS stands for Logistics Information System. It is the information systems used to plan, control, and monitor business events at different stages in the decision-making process. The Logistics Information System is made up of the following information systems which all have a modular structure: - Sales Information System- Purchasing Information System- Inventory Controlling- Shop Floor Information
Read more: Query

SAP Some ABAP/4 Query header line variable
2008-10-18 00:26:24
&%NAME Name of user executing the query &%DATE Current date when executing the query &%TIME Current time when executing the query &%PAGE Current page number (output 6 characters)
Read more: Query , header

Page 1 of 2 « < 1 2 > »
eXTReMe Tracker