Thursday, October 3, 2013

Activate &SAP_EDIT in SE16N (SAP ECC 6.0)


In SAP ECC 6.0 EHP6, the function code &SAP_EDIT, which enables the change mode of transaction SE16N, is deactivated (SAP Note 1420281) due to security breaches that were detected. In order to activate it (temporarily), follow the steps below:

  1. Go to SE16N, as usual, and type the table for which you want to make modifications.
  2. Instead of typing &SAP_EDIT in the command field, type /H and press “Enter” key to activate debugging.
  3. Press F8 key to enter the data browser for the above table.
  4. While in debugging mode, enter the two variables GD-EDIT and GD-SAPEDIT and press “Enter” key.
  5. For each variable, click on the change button, change the value to an uppercase “X” and press “Enter” key.
  6. Press F8 key to exit debugging and enter the table in change mode.

ABAP News for Release 7.40 - Inline Declarations


Inline declarations are a new way of declaring variables and field symbols at operand positions.

Data Declarations


In ABAP you have many operand positions, where the value of the operand is changed by the statement. The most typical of these "write positions" is the left hand side lhs of an assignment.

lhs = rhs.

But of course there are more. The data objects you can use at these write positions are either writable formal parameters of the procedure you are working in or variables declared with DATA in front of the statement.

In many cases the variables filled by a statement are helper variables that you only need close to the statement. For each of  these helper variables you had to write a data declaration with the DATA statement and of course it was your task to give the variable an adequate type.

Well, the operand type of most write positions is statically fixed and well known to the compiler. And this is why ABAP can offer inline data declarations with Release 7.40. The ingredients are so called declaration positions (write positions with fully known operand type)  and the new declaration operator DATA(...).

Let's look at some examples.

Declaration of a lhs-variable for a simple assignment


Before 7.40

DATA text TYPE string.
text `...`.

With 7.40

DATA(text) `...`.


Declaration of table work areas


Before 7.40

DATA wa like LINE OF itab.
LOOP AT itab INTO wa.   
  ...
ENDLOOP.

With 7.40

LOOP AT itab INTO DATA(wa).   
  ...
ENDLOOP
.


Declaration of a helper variable


Before 7.40

DATA cnt TYPE i.
FIND ... IN ... MATCH COUNT cnt.

With 7.40

FIND ... IN ... MATCH COUNT DATA(cnt).


Declaration of a result


Before 7.40

DATA xml TYPE xstring.
CALL TRANSFORMATION ... RESULT XML xml.

With 7.40

CALL TRANSFORMATION ... RESULT XML DATA(xml).


Declaration of actual parameters


Before 7.40

DATA a1 TYPE ...
DATA a2 TYPE ...
oref->meth( IMPORTING p1 = a1
            IMPORTING p2 = a2
            ... )

With 7.40

oref->meth( IMPORTING p1 = DATA(a1)
            IMPORTING p2 = DATA(a2)
            ... ).


Declaration of reference variables for factory methods


Before 7.40

DATA ixml           TYPE REF TO if_ixml.
DATA stream_factory TYPE REF TO if_ixml_stream_factory.
DATA document       TYPE REF TO if_ixml_document.

ixml           = cl_ixml=>create( ).
stream_factory = ixml->create_stream_factory( ).
document       = ixml->create_document( ).

With 7.40

DATA(ixml)           = cl_ixml=>create( ).
DATA(stream_factory) = ixml->create_stream_factory( ).
DATA(document)       = ixml->create_document( ).

This example is my favorite. When working with class libraries as the iXML-Library you don't have to care about the data type of the reference variables too much any more. You simply create them inline and use them. As you will see in the 7.40 version of the ABAP Example Library, this feature has facilitated my writings of example programs considerably.


Field Symbols


For field symbols there is the new declaration operator FIELD-SYMBOL(...) that you can use at exactly three declaration positions.

ASSIGN ... TO FIELD-SYMBOL().

LOOP AT itab ASSIGNING FIELD-SYMBOL().
...
ENDLOOP.

READ TABLE itab ASSIGNING FIELD-SYMBOL() ...

In ABAP 7.40 abap code will be like this :
TYPES t_itab TYPE TABLE OF WITH EMPTY KEY.

DATA(itabVALUE t_itab).