Liquid UI Forum

Using Your Liquid UI Products => WS aka Web Scripts (Attended RPA for SAP) => Topic started by: Benjamin Dasari on September 19, 2017, 02:32:27 PM

Title: Liquid UI - "boxsize" command
Post by: Benjamin Dasari on September 19, 2017, 02:32:27 PM
Purpose:
The boxsize command is used to resize native SAP group boxes.

The syntax is as follows:
   boxsize("G[box_name]",[rows,columns]);
   
NOTE: The windowsize command does not take any options.   
The boxsize command is only for native SAP screen controls - it cannot be used on Liquid UI screen controls.

Liquid UI Code:
----------------------------------------------------------------------------------------------------------------------------------------------
Script File Name: SAPMV45A.E0101.sjs       // VA01 transaction
----------------------------------------------------------------------------------------------------------------------------------------------
// Resizing the group box
boxsize("G[Organizational Data]",[10,65]);


See attachments for code samples!