SQL Format options index ->Line breaking->Expression

	function call
		left parenthesis in new line
			gFmtOpt.LW_WrapBeforeLeftParenthesesOfFuncCall
				integer 
				default: 0
		indent size of left parnethesis
			gFmtOpt.LW_WrapBeforeLeftParenthesesOfFuncCallIndentSize
				boolean
				default: 4

SQL before beautify
SELECT AVG(VacationHours)as 'Average vacation hours', 
SUM  (SickLeaveHours) as 'Total sick leave hours'
FROM HumanResources.Employee
WHERE Title LIKE 'Vice President%';   
SQL after beautify
SELECT Avg ( vacationhours )  AS 'Average vacation hours',
       Sum ( sickleavehours ) AS 'Total sick leave hours'
FROM   humanresources.employee
WHERE  title LIKE 'Vice President%';