Monday, December 21, 2015

ORDKEY and ORDMAP on database again!

In very early releases of SAP APO the tables /SAPAPO/ORDKEY and /SAPAPO/ORDMAP were moved from database to liveCache.
 
From the perspective of an ABAP developer this step was undone in very new SAP releases on HANA.
 
In those Releases you can browse the contents of /SAPAPO/ORDKEY and /SAPAPO/ORDMAP again in SE16 - like in APO 2.0.
 
The following code works:
 
  select from /sapapo/ordkey
    " connection (om_lc_name)
    into table lt_ordkey where ordno p_ordno and simid '000'.

even without  the connection to LCA.

Back to the roots with HANA

No comments:

Post a Comment

Working with the session Id // ID für den Modus

Sometimes it can be helpful to know the id of the current session     CALL FUNCTION 'TH_GET_CONTEXT_ID'       IMPORTING         cont...