cancel
Showing results for 
Search instead for 
Did you mean: 

Space is coming in displaying address in adobe forms

Former Member
0 Kudos

Hi Experts,

I am displaying address by fetching it from ADRC table. printing individual fields without using address node concept.

Here the issue is...

If there is any address field is vacant then that field is coming with space. I have to suppress this space and display the next field here.

These address fields are in subform and it is 'flowed' and 'top to bottom' in nature.

One address is displaying in Master pages and the other one is in Body pages. I have this space issue in both.

Javascript code is written correctly but stilll issue persist.

Please suggest me.....

Thanks in advance.

Regards,

Dileep.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI friend,

I too faced the same issue in Adobe during my project.

But you can solve this easily.

Just create an internal table and fill the fields of the address in the internal table. Ie each address line will be as a record in the internal table.

After fetching all the address lines now you can see the internal table is filled with one employees or 1 items address details.

Now perform operation on the internal table.

DELETE ITAB WHERE FIELD1 EQ SPACE.

This will delete all the spaces now loop that internal table and print the address details.

This is how i solved my issue, If you find difficulties in achieving it please revert back to me i will help you.

Thanks,

Sri Hari

Answers (1)

Answers (1)

Former Member
0 Kudos

Thankyou srihari. issue resolved.

Dileep