Application Development 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: 

Creating multiple spools

Former Member
0 Kudos

Hi All,

One Spool is generated for multiple customers in F.27

How to split the spool request per customer so that i can generate separate PDF for each customer.

5 REPLIES 5

Former Member
0 Kudos

Hi,

We can merge 2 PDF's but not sure if there is any option to split.

Regards,

Srini.

Former Member
0 Kudos

When I execute F.27 for multiple customers, only one spool request is getting created for multiple customers. My requirement is to create multiple spool request for multiple customers.

For example: I am running transaction F.27 for 5 customers ( by using multiple option in selection parameter). Currently F.27 is creating only one spool request for multiple customers. So how to have one spool request for one customer.

Is there any configuration settings need to be done to achieve this on FI side or somewhere else?

Please suggest

Thank you!

0 Kudos

Use this Enhancement assignment RFKORIEX (Automatic correspondence) for splitiing spools.

I think this is quite useful.

cheers.

Amit T

0 Kudos

No, that enhancement is for manipulating the form used, the transmission medium, etc. If you want to change spools, you need to manipulate the ITCPO values, not the FINAA values. For this, see process BTE 2310.

0 Kudos

Sanity check - - Used BTE 2310.

Importing:

I_BKORM (like BKORM)

Changing C_ITCPO (like ITCPO)

Code:

FUNCTION ZSAMPLE_PROCESS_00002310.

*"----


""Local interface:

*" IMPORTING

*" REFERENCE(I_BKORM) LIKE BKORM STRUCTURE BKORM

*" CHANGING

*" REFERENCE(C_ITCPO) LIKE ITCPO STRUCTURE ITCPO

*"----


*This process will create separate spool requests for each vendor which

  • is submitted for processing.

  • In this case, separate spools are requested only for one company code.

IF i_bkorm-bukrs = 'XXXX'.

c_itcpo-tdnewid = 'X'.

ENDIF.

ENDFUNCTION.