icoxfog417 / SAPExtractorDotNET

The data extractor for SAP Query , Table
http://icoxfog417.github.io/SAPExtractorDotNET/Index.html
18 stars 6 forks source link

/SDF/GET_GENERIC_APO_TABLE does not work (caused by SAP change) #4

Closed icoxfog417 closed 10 years ago

icoxfog417 commented 10 years ago

I don't know what version from , but at least SAP_AP 700 SP29 , /SDF/GET_GENERIC_APO_TABLE doesn't work because of it's modification.

Please see below, EXIT function before process execute...

 DATA: no_lines TYPE i.
 DATA: NR_COLUMNS TYPE I,
       FDPOS          LIKE SY-FDPOS,
       LEN            TYPE I,
       CONENV         LIKE /SDF/LC_DBCON-CON_ENV.
 DATA:
        where_condition(1000) TYPE  c,
        select_columns LIKE where_condition,
        wclause LIKE where_condition.

    REFRESH int_tab .

    EXIT.

*---------- order the select and where condition ------------
    wclause = ''.

RFC_READ_TABLE is still work , so have to change function to it.

keitaro-akiyama commented 10 years ago

can use the "SAP Query" in the new SAP ?

icoxfog417 commented 10 years ago

I don't confirm it, but the remote function in SAP is active. I'll check it until the end of month (maybe).

icoxfog417 commented 10 years ago

fix at 0da5a4ed84bda1a812bc28c90370eca6344731f1 (made mistake on issue no... not #1, but #4)