Skip to content

Commit

Permalink
call template performance optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrdjan committed Feb 3, 2021
1 parent 89af493 commit 6f498a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion abap-api-tools/src/ts/backend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,11 @@ export class Backend {
shlp_title = "",
shlp_values: RfcTable = [];

if (!isEmpty(this.search_help_api) && !this.argv.textOnly) {
if (
this.argv.cmd !== Command.call && // search helps not required for call template
!this.argv.textOnly && // neither for texts extraction
!isEmpty(this.search_help_api) // search help api implemented
) {
// F4 Help
if (dfies.F4AVAILABL) {
const shlp_descriptor = await this.client.call(
Expand Down

0 comments on commit 6f498a0

Please sign in to comment.