1
vote
1answer
16 views
Determine current MM periods?
The standard SAP MM advice is that only two periods can be open simultaneously.
How to determine them from within the program (FM to call/table to read)?
0
votes
3answers
32 views
ABAP create object
Below is a code snippet that is creating object.
Form userexit_save_document_prepare.
data: /bks/exitmanager type ref to /bks/exit_manager.
create object /bks/exitmanager
exporting …
2
votes
4answers
145 views
Parsing XML within SAP ABAP
My company is working on a project that needs to read XML files within SAP ABAP.
When the XML file has no data for a particular tag it omits that data.
Some tags are self closing. e.g. <tag />
…
1
vote
4answers
123 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 …
1
vote
2answers
40 views
Finding the class for method
How do you actually find the class for a specific method in ABAP? Is this even possible?
EDITED: I was given a method name without the class name from the functional team, so I am wondering if we …
2
votes
5answers
135 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 …
1
vote
5answers
155 views
Does a mixed .net/sap system make sense?
This might be a bit vague question, but real life is like this.
Our company is rolling out SAP system. I know they now do Web Services so we could simultaneously roll out the .NET thing for anything …
0
votes
1answer
54 views
What causes MOVE_CAST_ERROR when down-casting a reference object in ABAP?
I'm creating a class that inherits from a parent class with protected instantiation. The super class has a static method that provides an instance of the class.
The following code causes a run-time …
1
vote
1answer
153 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 …
1
vote
1answer
61 views
What does the percent sign indicate in abap function parameter?
I have encounters this abap snippet that I have difficulty to comprehend.
call function 'com_invoke'
destination pv_wrkdest
exporting
%instid = pv_instance
%method …
2
votes
1answer
117 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 …
1
vote
2answers
28 views
Sap Data for report
I want to make an excel graphic with 3 values:
Sales Order Date (The date sales enters the sales order)
Requirement Date (The date the customer wants this order)
Closed Sales Order Date (When sales …
2
votes
4answers
268 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?
1
vote
2answers
66 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 …
0
votes
2answers
66 views
How can I add a text column to a table?
i want to add a text column to the MMBE table, it could be the lot size text field: KZTXT or any other (that is the one they are using right now, but do not want to click on it to see it, instead just …
