jsoumelidis / php_sap

PHP (5.6, 7.x) extension for SAP Remote Function Modules invocation
GNU General Public License v2.0
5 stars 1 forks source link

Sap access cluster #4

Closed durlaniulian closed 6 years ago

durlaniulian commented 6 years ago

Hello again @jsoumelidis .

Can you have any ideea how can i access clusters in sap using rfc? I want to acces Payroll Results Table (RT) and Time evaluation results tables (ZES, SALDO).

With your php extension i can't call programs or transaction, am I right?

Thx.

jsoumelidis commented 6 years ago

Hello @durlaniulian, This extension is used to invoke remote enabled functions only, you cannot directly call programs like in SE38. I would suggest to “wrap” the program you want to run in a new remote enabled function and then call that with php! I don’t understand what you mean by “cluster” tables, but if you want to directly read a sap database table you can use the SapRfcReadTable class or the SAP built in RFC_READ_TABLE remote enabled function. You can read more about this special functionality at the classes and/or examples folder of the repository.