Shared Top Border

Enterprise Resource
Planning Portal

 

Advertise | Founder BLOG

ERPGenie.COM ABAP Tips and Tricks Database

THE ultimate
ERP website

 

Forums | Vote for us |

Google    Other Search Options

General
Processing Strings PDF Print E-mail
User Rating: / 0
Written by Kevin Wilson   
Wednesday, 30 May 2007
  1. shifting strings by a given number of places
  2. shifting up to a given string
  3. shifting a string depending on the first or last sign
  4. replacing values
  5. translating signs
  6. overlaying strings
  7. searching strings
  8. length of a string
  9. condensing strings
  10. concatenating strings
  11. splitting strings
  12. moving parts of strings
Read more...
 
Date / Time Calculations PDF Print E-mail
User Rating: / 0
Written by Anon.   
Wednesday, 30 May 2007
Read more...
 
Arithmetic and Mathematical functions PDF Print E-mail
User Rating: / 1
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...
 
Field symbol examples PDF Print E-mail
User Rating: / 0
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...
 
Document Flow table PDF Print E-mail
User Rating: / 1
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...
 
SD Order status tables PDF Print E-mail
User Rating: / 2
Written by Kevin Wilson   
Tuesday, 29 May 2007
What to find out the status of an order? VBUK and VBUP listed out.
Read more...
 
3 very interesting transactions PDF Print E-mail
User Rating: / 0
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 )
 
BDC's and CTR's PDF Print E-mail
User Rating: / 2
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...
 
Macros and Forms PDF Print E-mail
User Rating: / 0
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...
 
General Flow of a BDC Program PDF Print E-mail
User Rating: / 0
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...
 
Client Strategy for Management of ABAP Projects PDF Print E-mail
User Rating: / 0
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...
 
Five Different "User Types" PDF Print E-mail
User Rating: / 1
Written by CV Rao   
Wednesday, 02 May 2007
In "USER MAINTENANCE- SU01" --> in the "logon tab" there are 5 different "user type"
 
  1. dialog
  2. system
  3. communication
  4. service
  5. reference
Read more...
 
Debugging ABAP Programs From a Java App PDF Print E-mail
User Rating: / 4
Written by Dany Charbonneau   
Wednesday, 02 May 2007
You can do ABAP debugging from java applications here is how :
  1. Check whether your user has debugging authority. Auth. object S_DEVELOP has to contain 'DEBUG'
    1. Use su01; ROLES
    2. Double click the different roles ->
    3. new session will open
    4. Choose Authorizations -> Display Authorization Data
  2. go to the ABAP coding
  3. 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")
  4. Press enter or choose OK to get back to your source code
  5. 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 )
 
ODBC in Abap by ravi Sharma PDF Print E-mail
User Rating: / 1
Written by Ravi Sharma   
Thursday, 26 April 2007
An ODBC connectivity from ABAP to different Databases.
Last Updated ( Thursday, 26 April 2007 )
Read more...
 
ABAP Books PDF Print E-mail
User Rating: / 4
Written by Kevin Wilson   
Saturday, 21 April 2007
ABAP Objects: Introduction to Programming SAP ApplicationsSams Teach Yourself ABAP/4 in 21 DaysABAP/4, Second Edition: Programming the SAP(R) R/3(R) System (2nd Edition)
ABAP Objects: Introduction to Programming S...
by Horst Keller
$51.48
Sams Teach Yourself ABAP/4 in 21 Days
by Ken Greenwood
ABAP/4, Second Edition: Programming the SAP...
by Bernd Matzke
$48.95
Software Development for SAP R/3: Data Dictionary, ABAP/4, InterfacesInstant Access: SAP Developer's Reference for ABAPIntroduction to ABAP/4 Programming for SAP, Revised and Expanded Edition
Software Development for SAP R/3: Data Dict...
by Ulrich Mende
$104.00
Instant Access: SAP Developer's Reference f...
$18.95
Introduction to ABAP/4 Programming for SAP,...
by Gareth M. De Bruyn
Sap Abap Command ReferenceSap R/3 Abap/4: Command ReferenceDeveloping Sap's R/3 Applications With Abap/4
Sap Abap Command Reference
by Dennis Barrett
$16.62
Sap R/3 Abap/4: Command Reference
by Dennis Barrett
Developing Sap's R/3 Applications With Abap/4
by Rudiger Kretschmer
Advanced ABAP Programming for SAP (SAP R/3)Writing SAP ABAP/4 ProgramsSAP R/3 Data Integration Techniques using ABAP/4 and Visual Basic
Advanced ABAP Programming for SAP (SAP R/3)
by Gareth M. De Bruyn
Writing SAP ABAP/4 Programs
by Ted Hoffman
SAP R/3 Data Integration Techniques using A...
by Stephen J. Katonka
Last Updated ( Sunday, 03 June 2007 )
 
<< Start < Prev 1 2 3 4 5 6 7 Next > End >>

Results 46 - 60 of 94

Google Search

Google Ads

Shared Bottom Border

Contact Us | Polls | Add URL | Contribute | Privacy | Terms | Feedback

Discussion Forum | BLOG | Consultants: Post your resume | Companies: Advertise on ERPGenie.COM | Post Job
Financials Consultant | Consultant Review | Gallia Consulting | Supply Chain Project | SAP Financials Forum
GenieHoldings.COM, Inc. | Genie Press | WorkflowGenie | ESAGenie | ERPTopSites | ABAP Tips and Tricks | SAP Solutions Database

EDIGenie | Searching Survivor