Learn R Programming

RSAP (version 0.9)

RSAPExecInfoQuery: SAP RFC function calls

Description

Execute a call to an Info Query, and return a data.frame of the results

Usage

RSAPExecInfoQuery(con, infoprovider, infoquery)

Arguments

con
an Open SAP RFC Conneciton handle
infoprovider
The technical name of an infoprovider to read
infoquery
The technical name of an infoquery to read

Value

Returns a data.frame of the info query results

Details

  con <- RSAPConnect(ashost="nplhost", sysnr="42",
                      client="001", user="developer", 
                      passwd="developer", lang="EN", 
                      trace="1", lcheck="1")

res <- RSAPExecInfoQuery(con, "0D_NW_M01", "0D_FC_NW_M01_Q0002")

print(res)

RSAPClose(con)

See Also

RSAPConnect, RSAPGetInfo, RSAPInvoke, RSAPReadTable, RSAPClose