cancel
Showing results for 
Search instead for 
Did you mean: 

Urgent !!!!!!!!!!!!!

Former Member
0 Kudos

Hi,

Can any one tell me how can i adjust my SmartForm ... like my Requirement is.. i need to adjust

ex:

Basic 10000.00

HRA 3000.00

i mean Basic and HRA shud be left justified and amounts shud be right justified ( in the same Row).

Reply me soon...

Regards,

Phani

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Phani,

The simplest way is to define 2 character varibles of type CHAR13 and write the HRA and Basic values to these variables.

DATA : gv_basic TYPE CHAR13,

gv_hra TYPE CHAR13.

WRITE: Basic To gv_basic,

HRA to gv_hra.

Condense : gv_basic,

gv_hra.

Then in text just write,

Basic gv_basic,,HRA gv_hra.

hope this will work..

please reward incase useful..

Regards,

Prashant

sreelatha_gullapalli
Active Participant
0 Kudos

hi,

Create one paragraph format in style and also one character format and apply paragraph format and apply character format for the value.

hope it will help you.

Regards,

Sreelatha Gullapalli

Former Member
0 Kudos

Hi,

This can be aceived bu the way of defining tabs. Define the first tab as left justified and second one as right justified. This should help.

Something like below, where LA is the paragraph format

LA ,,Amount,,3000

Regards,

KK