|
Written by Kevin Wilson
|
|
Wednesday, 30 May 2007 |
- shifting strings by a given number of places
- shifting up to a given string
- shifting a string depending on the first or last sign
- replacing values
- translating signs
- overlaying strings
- searching strings
- length of a string
- condensing strings
- concatenating strings
- splitting strings
- moving parts of strings
|
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 30 May 2007 |
|
|
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 30 May 2007 |
|
DIV, Mod, MULTIPLY-CORRESPONDING, Add, COS, ABS, SIGN, CEIL, FLOOR, TRUNC, FRAC |
|
Last Updated ( Wednesday, 30 May 2007 )
|
|
Read more...
|
|
|
Written by Anon.
|
|
Wednesday, 30 May 2007 |
|
Full type specification REPORT demo_field_symbols_type .
DATA: BEGIN OF line, col1(1) TYPE c, col2(1) TYPE c VALUE 'X', END OF line.
FIELD-SYMBOLS <fs> LIKE line.
ASSIGN line TO <fs>.
MOVE <fs>-col2 TO <fs>-col1.
WRITE: <fs>-col1, <fs>-col2. |
|
Last Updated ( Wednesday, 30 May 2007 )
|
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Wednesday, 30 May 2007 |
|
The following is a list of fields in VBFA with the check table for VBTYP_N and VBTYP_V for easy reference. PS: There is a good function module that pulls all the document flow (doc flow / order flow) for you called RV_ORDER_FLOW_INFORMATION |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Tuesday, 29 May 2007 |
|
What to find out the status of an order? VBUK and VBUP listed out. |
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Thursday, 24 May 2007 |
|
AL08 - Shows current logged on users AL11 - Browse SAP directories at OS level AMEN - ABAP Tools menu - Quicklinks to sysntax trace,
- code analysis,
- coverage analyzer,
- extended check,
- runtime analysis,
- tips and tricks,
- exception text checks,
- BSP page display,
- syntax diagram display
|
|
Last Updated ( Thursday, 24 May 2007 )
|
|
|
Written by Rich
|
|
Friday, 18 May 2007 |
SAP provides various methods by which the entry of data into an application can be automated so that data provided in an electronic form does not need to be printed out and then rekeyed by an operator. These include IDOC'S, BAPI'S, BDC's and CTR's. Strictly speaking, the last three items do not import data into SAP but are the end process for a program that uploads data from an operating system file. This article deals with the last two, BDC's and CTR's. So. What are they ? |
|
Last Updated ( Tuesday, 15 May 2007 )
|
|
Read more...
|
|
|
Written by Rich
|
|
Thursday, 17 May 2007 |
Macros and Performs (Forms or Procedures) are two of the techniques within ABAP that allow you to modularise your programs. Modularisation of programs allows for easier maintenance and reuse of code. These, along with Include Files and Function Modules provide the tools with which efficient, reusable code can be produced. What is the difference between a macro and a Perform ? |
|
Read more...
|
|
|
Written by Tejas
|
|
Monday, 14 May 2007 |
|
General flow of a BDC program is like this.... 1) First create recording for the T code which you want to make BDC for... Use T code SHDB for recording. 2 ) Now save that recording and create pogram from that recording using Create Program button. give the BDC driver program name and create. 3 ) Now the general logic of BDC program goes like this.... - Upload Flat file into and internal table using function module "UPLOAD" - OPEN BDC GROUP. - Now loop at that internal table which contains the data from flat file. - move data from internal table to fields of BDCDATA using automatically gebnerated code from BDC. - CALL TRANSACTION <T CODE> using BDCDATA... - CLOSE BDC GROUP A sample program for the same is attatched here for your referance... just go through it..
|
|
Read more...
|
|
|
Written by Anon.
|
|
Friday, 11 May 2007 |
|
I am looking for some feedback regarding usage of multiple clients vs. multiple systems for parallel project development environment. I am constructing a system landscape where I am using multiple clients in the same R/3 server to facilitate development and testing of more than one projects (with same delivery time line). The challenges I am facing are management of ABAP objects (with overlaps) and client refresh from (production system for test data creations). |
|
Read more...
|
|
|
Written by CV Rao
|
|
Wednesday, 02 May 2007 |
In "USER MAINTENANCE- SU01" --> in the "logon tab" there are 5 different "user type"
- dialog
- system
- communication
- service
- reference
|
|
Read more...
|
|
|
Written by Dany Charbonneau
|
|
Wednesday, 02 May 2007 |
You can do ABAP debugging from java applications here is how : - Check whether your user has debugging authority. Auth. object S_DEVELOP has to contain 'DEBUG'
- Use su01; ROLES
- Double click the different roles ->
- new session will open
- Choose Authorizations -> Display Authorization Data
- go to the ABAP coding
- go to the menu Utilities -> Settings / choose tab "ABAP editor " / choose tab "Debugging" check the chek - box "Actv." in the User field enter the user used in the Java logon (not the alias of the user!! e.g. for user XYZS enter "3B1968D7DD1")
- Press enter or choose OK to get back to your source code
- If you set you next break-point a pop-up will occur to ask you if you want to set an external break-point or a session break-point --> click external break-point (= former HTTP break-point) -->
if you run you Java application now and the coding with the break-point is called a new R/3 (CRM) window will open and you will see you code in debug mode (may take some seconds). |
|
Last Updated ( Wednesday, 02 May 2007 )
|
|
|
Written by Ravi Sharma
|
|
Thursday, 26 April 2007 |
An ODBC connectivity from ABAP to different Databases. |
|
Last Updated ( Thursday, 26 April 2007 )
|
|
Read more...
|
|
|
Written by Kevin Wilson
|
|
Saturday, 21 April 2007 |
|
|
|
Last Updated ( Sunday, 03 June 2007 )
|
|