Tagged Questions

ABAP is the programming language of the SAP R/3 system.

learn more… | top users | synonyms

16
votes
2answers
821 views

Helicopterview of ABAP

I don't know a thing about ABAP, apart from it has an OO side, and I would like to have some kind of helicopterview of it before I start to look at it in detail. I know I can find all of this when ...
8
votes
7answers
543 views

SAP vs webapplication development [closed]

i am a fresher just out of collge .Till now i have worked on java,Python,javascript,groovy,django and web application develop has been my only intrest. But for a living i joined a company now and ...
7
votes
5answers
400 views

What does it mean to say that C was compiled in C?

I've seen stuff like this written... C was written in C, or ABAP was written in ABAP.. I've even seen one guy saying that this is one of the criteria to sort languages into true programming ...
7
votes
4answers
2k views

Can SAP work with Python?

Let's focus on using SAP as the database engine and just doing different queries. Can I do it in Python?
5
votes
2answers
91 views

Change parameter name on screen?

I'm trying to replace the parameter name when it is showed in the screen. Any ideas how this is done? For example when I have: PARAMETERS pa_age TYPE age_type DEFAULT '18'. It shows pa_age on the ...
4
votes
4answers
157 views

Need to optimize a simple loop over 200,000 records

I am wondering if anyone can optimize following code: LOOP AT dispinstock. SELECT matnr SUM( gesme ) SUM( verme ) SUM( einme ) SUM( ausme ) INTO (dispinstock-matnr, dispinstock-gesme, ...
4
votes
1answer
246 views

Abap - Create a byte array out of a file

I want my ABAP devs to be able to send me file through a function. I'm trying to find out if you can convert a file into a byte array in abap. If this is possible, does anyone have any example code? ...
4
votes
1answer
288 views

How do I access SAP BOR Object Macros in ABAP OO?

If you're used to accessing BOR objects via the macros in include <CNTN01>, you may attempt to do this within the ABAP OO context as well. Due to the strong typing restrictions of ABAP OO this ...
4
votes
3answers
468 views

Unit testing and SAP

I am looking for some tutorials and guides for unit testing on SAP platform. So far, I have found some mention of ABAP Unit and of Ruby programming language being implemented on SAP platform, making ...
4
votes
4answers
809 views

ABAP how to write a date as a long text?

I need to split ABAP date like 20091101 --> "01", "november", "2009" The "01" and "2009" are trivial, but how do I get the month name (which should be localized)? Is there a function to ...
4
votes
1answer
3k views

ABAP Short Dump on append of a sorted table

Why does my ABAP program short dump when I append a line to a sorted table? ST22 Shows ITAB_ILLEGAL_SORT_ORDER data: sorted_tab type sorted table of ty_tab with non-unique key key, line ...
4
votes
5answers
721 views

Transition to OO ABAP?

It appears that most of our SAP programmers are using the old version of ABAP, the one before object-oriented stuff. I also noticed that the language is much cleaner and more modern with OO (they ...
4
votes
4answers
1k views

ABAP Unit Test Classes - Good References

I'm looking for good reference material regarding the use of ABAP Unit Test Classes. I'm interested in any of the following: Documentation on the functionality Best Practises "How To Guides" ...
4
votes
4answers
3k views

How to set (unix) permissions when creating a file in SAP ABAP?

you would think this would be obvious, but searching through documentation, SAP forums, Googling, etc., I've been spectacularly unsuccessful. I'm creating a file in ABAP on a solaris filesystem using ...
3
votes
3answers
85 views

ABAP: Howto Write text to a local file

Im trying to write text to a local file using the following code: data: fname(60), text type string value 'la la la'. fname = 'myfile.txt'. OPEN DATASET fname FOR OUTPUT IN TEXT MODE encoding ...
3
votes
1answer
39 views

How to set values in the listbox?

I had created a list box in abap. Now i need to give the values for the same. How can i do it ??/ is there any function module or how to do i hardcoded the values SELECTION-SCREEN BEGIN OF BLOCK B2 ...
3
votes
2answers
173 views

Displaying retrieved value in excel file into ALV

Good Day Everyone, There is this something i've been trying to exercise in abap and that is the Displaying of column datas in ALV by retrieving the values from excel file into an internal table. I've ...
3
votes
2answers
165 views

Is there a way to find the customizing request number for a given record at a maintenance view?

In ABAP we can check the latest workbench request assigned to a given code from Utilities->Versions->Version Management menu. Is there any similar feature to check which is the customizing ...
3
votes
1answer
134 views

ABAP Web Dynpro Employee Search Help

One input field is employeenumber (pernr). I want to give a selection window to allow end users to get pernr by first name and last name. What I want is very similar to the inputfield in transaction ...
3
votes
1answer
88 views

abap function convert digit in word?

is there a function in abap can convert digit to word.. example: 100 will be converted into one hundred or 200 will be converted into two hundred example: 300 will be converted into tree hundred or ...
3
votes
4answers
419 views

ALV Grid missing toolbar

I'm creating a simple ALV grid in SAP. So far i've been able to populate the grid with my data and display the grid after the selection screen no problem. I'm not adding the grid to a custom ...
3
votes
1answer
209 views

ABAP: Cut off text exceeding a certain length

I have a list with texts with lengths ranging from 1 character to several thousands. I want to cut off all texts exceeding 255 characters. How can I do that? Do I have to check the length of each ...
3
votes
2answers
319 views

Maximum records in SAP function module table parameter

What's the maximum number of records that can be passed to a function module via a table parameter?
3
votes
2answers
239 views

Distinguish in ABAP between different SAP Clients (Mandanten)

we currently have a SAP System with two different clients 002 and 004 in use. My task is to write a program in ABAP to create a report about user-assignements. The report will do mainly the same on ...
3
votes
4answers
2k views

What is ABAP and SAP?

What is SAP and ABAP. I searched and got bunch of different acronyms that don't quite make sense. Is SAP a database engine, and is ABAP a programming language, or nothing of that nature? What are ...
3
votes
4answers
598 views

How To Serialize SAP Business Objects?

First I have to clarify that I'm not referring to the company Business Objects recently acquired by SAP. Instead I'm referring to business objects as defined in the SAP Business Object Repository ...
3
votes
5answers
780 views

Online reference for learning SAP-ABAP

Pretty simple question, Does anyone know of any teach yourself ABAP online resources? Google wasn't too helpful... I'm pretty much well versed with SAP, and can manage C++.
3
votes
3answers
1k views

sap, abap , java, .net [closed]

I have two years of dotnet development experience . I am trying to move into SAP. Whats the best to opt for in Netweaver i.e Java or ABAP or there are any opportunities for this on dotnet platform. ...
3
votes
7answers
3k views

OO ABAP: When and Why?

Months after my company has upgraded from 4.6c to ECC6.0, our team of programmers are still coding in the traditional 4.7c way. I'm eager to try out the new OO approach of ABAP, but much to my dismay ...
3
votes
6answers
38k views

How to get rows count of internal table in abap?

How do I get the row count of an internal table? I guess that I can loop on it. But there must be a saner way. I don't know if it makes a difference but the code should run on 4.6c version.
3
votes
9answers
2k views

Time estimate for SAP/ABAP

I'm looking for a table or list of standard time estimations for developments in SAP/ABAP, something customizable in some variables according to the development team, complexity of project, etc... ...
2
votes
3answers
85 views

Changing the ABAP standard code

I have almost 4 months learning/working in SAP. I've done several reports and enhancements all along this time but recently I began to work in a requirement which is related to Mobile Data Entry or RF ...
2
votes
2answers
55 views

Single Quote in regex issue ABAP

Hi Im trying to match a single quote in a string, if it exists I want to display this using WRITE. data text type string value `this is a string containing a ' single quote`. find regex ...
2
votes
1answer
69 views

ABAP: Loop At <itab> TO <wa> Where <cond>

I have a problem with Loop through a using the condition that an attribute from one table is the same with the other. For better explaining i'll past the code. Is not something difficult but i don't ...
2
votes
1answer
134 views

SAP Where-used list Standard programs

I'm searching the use of a SAP table. I want to know where the table S083 is used in SAP standard programs. I've searched trough the Where-used list. But I only got the self-created programs and not ...
2
votes
3answers
304 views

(SAP/ABAP) Digit grouping and remove 0 (zero) in front of value

I'm still new in ABAP and I want to know how to do 1. digit Grouping 2. remove 0 in front of value digit grouping when I have value for money for example 3000000 ( 3million) i want to print ...
2
votes
1answer
44 views

Best data type to store formatted texts in ABAP dictionary

What would be the best data type in data dictionary to store formatted texts? The size of the formatted texts ranges from 20 to 10,000.
2
votes
5answers
131 views

Abap - Traversing the entire nodes of an xml document?

I want to traverse through the entire nodes of an if_ixml_document. which is the best way to do this? Please find the sample document. <text> <id> <guid ...
2
votes
1answer
158 views

SAP Change program titlebar?

I'm trying to show something else than the program title in the title bar but so far it's not working. I've tried: SET TITLEBAR 'title001'. When I double click title001 I can create this object and ...
2
votes
3answers
69 views

Error in select no header

I want make select from EPREI to ET_DATA ET_DATA have prices prices is structure what i want fill it from EPREIH... *"---------------------------------------------------------------------- ...
2
votes
4answers
154 views

how to write: objects in abap?

how can i show the value inside an object? see below the example. DATA: BEGIN OF line, col1 TYPE i, col2 TYPE i, END OF line. DATA: itab LIKE TABLE OF line, jtab LIKE ...
2
votes
1answer
167 views

Calculating SHA2 checksum on string in ABAP

I am trying to calculate a SHA2 checksum on a string in ABAP. I have come across the functions CALCULATE_HASH_FOR_CHAR and CALCULATE_HMAC_FOR_CHAR. However, CALCULATE_HASH_FOR_CHAR only can calculate ...
2
votes
2answers
239 views

abap error in creating include file

Hi all I am learning abap. I do some examples and i need help with one or few errors. I create : sourse file: Type Include , Status test , Aplication system(Local object). code: ...
2
votes
5answers
151 views

is it a structure or an internal table?

TYPES: BEGIN OF PPP ------ END OF PPP, xxx TYPE STANDARD TABLE OF PPP My question is will xxx be an internal table or a structure?
2
votes
2answers
113 views

Pass over object instances to RFC function modules

With ABAP's help of call function 'functionname' starting new task 'taskname' exporting ... tables ... where the function has to be flagged as RFC, i can start a separate task running ...
2
votes
3answers
331 views

Refresh SAP screen after certain action?

I have a screen with a table in it (generated with the screen painter) that shows records from a database table. The screen also has a button, which shows a popup when it's clicked. The popup has a ...
2
votes
1answer
373 views

SAP ABAP functional module

In SAP Abap which functional module is used to retrieve data from a table based on certain conditions?
2
votes
3answers
268 views

replace parameter name show on screen?

When I'm defining a parameter, like: PARAMETER pa_date TYPE d DEFAULT sy-datum. How do I change "pa_date" to something else when the app is launched? I want to change it to something like "choose ...
2
votes
2answers
643 views

Problem, Consuming SAP web service with .Net

Nowadays Im trying to do simple an application that is consuming SAP web service. I got wsdl link via soap manager and added it to project as web refences. C# created a complex type which includes my ...
2
votes
3answers
175 views

how to fetch a field from a table for combination of two fields

i am supposed to fetch the a field say excep_point from a table z_accounts for the combination of company_code and account_number.How can i do that in abap ? suppose the the table structure is ...

1 2 3 4