cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Script Alignment

Former Member
0 Kudos

Dear ABAPers,

I am developing the Cheque Printing.My Customer Using Six Different

Cheques.Based on the House Bank the Alignment and Format of the Cheque Differs.

How to do the Alignment in SAP Script Based on the Parameter.

Thanks & Regards,

Ashok.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

you have changes in main winodw like item data you have to create 6 forms. based on conditons you have to call different forms from print program, with single output type .

if condition = 'X'.

call form1

elseif condition = 'Y'.

call form 2

else.....

Former Member
0 Kudos

Hi Chenna,

I have created Six Different SAP Scripts.But in FBZP Transaction code i can assign only one SAP Script.

Could you please tell me is there any User Exit or BAdI to change the SAP Script at runtime.

Thanks & Regards,

Ashok.

Former Member
0 Kudos

Hi,

Instead of creating 6 different scripts, create 6 different Text Elements for each of the script formats required , and based on the condition call the coresponding text element from Print program .

Regards,

Raghavendra

Former Member
0 Kudos

Dear ABAPers,

I have created six different SAP scripts.At runtime i am using the Different SAP Script Based on the House Bank.I have Solved it using Enhancement spots.

Thanks & Regards,

Ashok.

Former Member
0 Kudos

Alignment of lines fields and boxes :

You have to use the BOX command statements inside IF <bank1> draw lines ENDIF

similarly for all the 6 different boxes.

You can use a similar approach for the field positioning as well in each windows.

This is going to be a very time consuming development so make sure you give enough estimates.

Mathews