‎2011 Jan 04 8:48 AM
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.
‎2011 Jan 04 8:56 AM
Hi,
We can merge 2 PDF's but not sure if there is any option to split.
Regards,
Srini.
‎2011 Jan 04 9:10 AM
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!
‎2011 Jan 04 9:21 AM
Use this Enhancement assignment RFKORIEX (Automatic correspondence) for splitiing spools.
I think this is quite useful.
cheers.
Amit T
‎2011 Jan 04 3:04 PM
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.
‎2011 Feb 03 2:43 PM
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.