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

SAP ABAP: Determine Timezone for Plant

    DATA:       lt_tzone TYPE STANDARD TABLE OF tznzone WITH DEFAULT KEY,       l_tzone  TYPE tznzone.     " get time zone for plant   ...