gkralik / php7-sapnwrfc

SAP NW RFC SDK extension for PHP 7.3+ & PHP 8
https://gkralik.github.io/php7-sapnwrfc
MIT License
88 stars 35 forks source link

Deactivate nested parameters #45

Closed danutavadanei closed 6 years ago

danutavadanei commented 6 years ago

Hi guys,

I know we can disable parameters using: activating-deactivating-parameters

Is there any possibility that we can disable table fields?

Example: We have TBL1 with the following structure:

$tbl1 = [
    'FIELD1',
    'FIELD2',
    'FIELD3',
];

I want to retrieve only FIELD1 and should call something like

$function->setParameterActive('TBL1.FIELD2', false);
$function->setParameterActive('TBL1.FIELD3', false);

Is this possible in NWRFC SDK?

gkralik commented 6 years ago

This is currently not possible. I will have a look at it though...

gkralik commented 6 years ago

I'm not sure this is possible using the SAP NW RFC SDK.