SAP Managed Tags: ABAP Development Hi Yunfa, You can use strlen option to find the length of the string. Now deduct 4 from the length and store that in a variable say 'v_len'. Now you can have <field>+v_len(4) for your solution. Reward points if this helps, Kiran Reply Forme...
SAP Managed Tags: ABAP Development You have to write coding in the script editor of a field( It will remove the blank spaces if the field does not contain any value) which is shown below, In form:ready event of the field in the script editor, if(this.rawValue ==null) { this.pre...
SAP Managed Tags: ABAP Development Hi Tendai, Declare a varibale to type P with decimals 2. DATA : result TYPE p DECIMALS 2. Now store the result of your expression in the variable declared above. result = (456/700) *100. Now out the result you will find the result in your desired...