Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Aligning text field just beside with the bar code ?

Former Member
0 Kudos
149

Hi,

I am working on SAPScript.

Now in the main window I have to define a bar code and a label just beside it as below:

[BAR-CODE] [SOME LABEL]

Now in the script editor I am doing following:

(A1 and DB are some paragraph format in below)

DB <BC>&AFVC-RUECK&</>

A1 &AFVC-VORNR&

But this prints the text field below the bar-code.

How do I print the label just beside the bar-code ?

(not below) ?

Points will be surely awarded..

Tushar.

1 ACCEPTED SOLUTION
Read only

former_member182371
Active Contributor
0 Kudos
121

Hi,

two possible solutions:

1.- in the same line try:

DB <BC>&AFVC-RUECK&</>,,<A1>&AFVC-VORNR&</>

So here you have to define a tabulator for DB and a format A1.

2.- create a new window and include within:

A1 &AFVC-VORNR& and position it beside the window for &AFVC-RUECK&.

Best regards.

1 REPLY 1
Read only

former_member182371
Active Contributor
0 Kudos
122

Hi,

two possible solutions:

1.- in the same line try:

DB <BC>&AFVC-RUECK&</>,,<A1>&AFVC-VORNR&</>

So here you have to define a tabulator for DB and a format A1.

2.- create a new window and include within:

A1 &AFVC-VORNR& and position it beside the window for &AFVC-RUECK&.

Best regards.