| Administrator | 
		So you need to update the printer definitions during your clone operation. (or just after your clone operation)
 In EBS , these printer definitions are stored in fnd_printer table.
 In OS, these printers definitions are stored in files. (it changes according to your OS vendor and distro)
 
 These EBS printers are mapped to OS printers.
 
 That is;
 
 In EBS (in fnd_printer) , we just have the "OS name" of the printer.
 
 So, if you want to change the definition of a printer, then the exact change should be done in the OS layer.
 
 So the flow is like the following;
 
 EBS printer -> OS printer -> Physical Printer.
 
 Ex: EBS_TEST_PRINTER  - > OS_TEST_PRINTER -> Printer
 
 For changing a printer definition in Linux OS(Redhat or Oracle), you can use system-config-printer command. This program is actually a  gui for cups administration..
 
 Anyways, just change the printer definition in OS layer and that's it. (again, not the name, just the definition/configuration)
 |