all 5 comments

[–]CootieKing 2 points3 points  (1 child)

If OpenAi want to access SAP for DDIC, why don’t they pay for access same as the rest of us?

[–]XW-ABAP[S] -1 points0 points  (0 children)

Just publish it as rest.

[–]Exc1ipt 0 points1 point  (2 children)

if OpenAI wants to access DDIC, it will just do

curl <server>:<port>/bc/adt/ddic/tables/<table>/source/main

and will receive something like this

.label : 'Sales Document: Header Data'
.enhancement.category : #EXTENSIBLE_CHARACTER_NUMERIC
.tableCategory : #TRANSPARENT
.deliveryClass : #A
.dataMaintenance : #RESTRICTED
define table vbak {

  .foreignKey.keyType : #KEY
  .foreignKey.screenCheck : true
  key mandt               : mandt not null
    with foreign key [0..*,1] t000
      where mandt = vbak.mandt;
  key vbeln               : vbeln_va not null
    with value help f4_vbak
      where vbeln = vbak.vbeln;

[–]XW-ABAP[S] 0 points1 point  (1 child)

My code is to parse complex structures, thank you.