Printing in Central pro

I'm trying to print the document with the below configuration in JMD file and in transaction file  I'm using the below line of code (1), the output is not printing to the FL9P201 printer rather it is creating the file in the data folder? any suggestions why this is not outputting to the printer?? I'm am missing something?
#1)
^job CUST_ORDER -zTESTMG
# **** Job table ****(2)
!f CUST_ORDER TESTMG /apps/Oscar/adobe/central/forms/Letter.mdf * 1 T JFMERGE * * C "Step 2 - Customer order template"
# **** Printer table ****(3)
!p TESTMG PRNTR1 "ld -dFL9P201,p" * 1 "Cutomer Order Printer"
Thanks in Advance.

Loading the XML in the Internet Explorer shows the CDATA section as it is. I am not sure whether the Internet explorer should strip them off. <br /><br />Can you pls. guide me to the correct structure if i am wrong. Below is an excerpt from the xml that we have.<br /><ZHDRFOT_ENG_WEB_ADDRESS> THis is test data with & and < signs </ZHDRFOT_ENG_WEB_ADDRESS  ><br /><BRANCH>THis is test data with > and ! signs </BRANCH><br /><br />Appreciate your help!

Similar Messages

  • Any change to print to Canon MFP mailbox with A. Central Pro ?

    We are using now Hp 4 / pcl5 and a Pdf drivers with Central Pro. Could it be any change to print a document to Canon's mail box by Central Pro ?. ^TRAYOUT command doesn't work with Canon iRC2380i and do not what a we need. Thanks for any help.

    I do something similar to this. At work, I run a script that is launched at login, that does an +rsync -e ssh+ command to home. I use public key exchange for ssh login so the script doesn't get hung up waiting for a password entry. Because of VPN issues at work, I can't do the same thing at home. So instead, at work, I have a second similar script that is invoked by launchd. It kicks off at a specified time that is during my evening commute home.
    Now, those two computers are tethered via ethernet. But I also have a laptop that roams wirelessly. I have the same sort of scripting arrangement set up there at user login, but I have a timer built into it. It loops issuing a +curl -s http://checkip.dyndns.org | awk '{print $6}' | cut -f 1 -d "<"+ looking for an external WAN IP address and if it gets a non-blank answer, then it assumes that it is connected to the internet, and continues with the rsync. If after a certain amount of time no valid WAN IPA exists, it times out and exits without doing the rsync.

  • Printing from Safari with Print Central Pro

    I have an IPAD 2 and print central pro.  Safari offers a print option on the menu that has the curved arrow and box, but it doesn't see my wireless printer.  Priint central pro sees the printer and works independently.  Is there a way for Safari to print through print central?

    C_P_T-
    I have the older PrintCentral.  It does not show up in Safari's print routine.  I also have Print n Share from the same company.  It DOES show up in Safari's print routine when selecting a printer.
    It looks like you will need to use PrintCentral Pro's built-in browser.  My version doesn't seem to have a way to import Safari's bookmarks, but I haven't looked very hard.
    Fred

  • I just bought "print n share pro" app and it dosen't seem to find our printer on our wifi network (a non-wireless HP printer attached to HP PC).  What do I need to do to set this up?

    I just bought "print n share pro" app and it dosen't seem to find our printer on our wifi network (a non-wireless HP printer attached to HP PC).  What do I need to do to set this up?

    I can only tell you that I had a couple of apps that worked perfect before but when ios 5.0.1, apple closed whatever way the apps used to print....Print Central was one....the developer. at least this one, said they could not do anything about it...they only recommended printing to PDF...
    But I have a dedicated file server ( steream music and movies ) and I installed FINGERPRINT on my server and now I can print from my ipad, iphone to any printer on my server

  • Public APIs for Adobe Central Pro Server

    Hi,
    Can anyone point me to the Public APIs that are available with the Adobe Central Pro Server e.g. I would want my application to dynamically add or remove steps in the job db, or change the target printer. Also, is it possible to invoke the preview functionality that comes with the Adobe Designer and integrate with an existing application
    Here what we are trying to do is add the printing (template merging) facility to an existing application and would want access to the public API for these products.
    Thanks in anticipation!
    Regards,

    I'm not sure you can do what you describe in the manner that you appear to be wanting to do it. I know of no APIs that are provided. There are ways to get the job done, though.<br /><br />The job management data base is an ascii text file that can easily be changed programatically. Parts of our application use it for building a drop-down list of printers for the user to select from. Changing it doesn't automatically cause Central to use the new file. Central must be told to reload it before it will be using the modified file. This can be done by placing a certain "command" file in Central's control folder, but it would not run until after the current job completes - if the current job is the one that just changed the file and further steps of the same job are for the processing of the data, then that would be too late. Once a job starts, all the parameters and tasks from the job management database and on the original ^job statement is what will be used. This goes for changing anything about the job, whether it be adding/deleting steps, changing the printer, or any other parameters.<br /><br />We accomplish pretty much what you want by doing several things. <br /><br />*First, we define all of the various configurations of jobs that we need. For example, our main printing job has four tasks; it is not uncommon to need to restart a job someplace besides the first task. Therefore, we have four different jobs defined, each one starting further down the list of tasks. We do the same thing when the processing of the data has to vary in some manner - we have jobs pre-defined for each specific set of tasks and the source of the data sets the ^job name as required for the specific tasks that have to be done.<br /><br />*For modifying the printer, we use the -z<printer> and -asp<driver> parameters on the ^job statement and the source of the file sets the values as necessary. The source of the file will also set the job name so that the desired job is ran. <br /><br />*We also have built into our custom agents the capability to recognize when a "soft" failure is occurring (such as can't reach our database) and it will put the job back in for processing after changing the job name to run the correct job for restarting at the proper step. <br /><br />*One of our steps is to check a control file to see if there is a redirection for the specified printer to a substitute printer (say, the original printer is down for maintenance). This agent will put the job back in for processing, changing not only the job name but the printer parameters. It has to be put back in, instead of just changing the parameters and passing the file on to JFMERGE, because Central uses the parameters on the original ^job line, it doesn't use the parameters that might be on the ^job line when JFMERGE starts.<br /><br />*We have also created our own agent for running as the JFERROR task. This task runs when one of the agents supplied with Central encounter a failure. Our agent analyzes the failure and determines if it was "hard" or "soft". If it was a "soft" failure, this agent requeues the job, changing the name and parameters as necessary.<br /><br />So far we have been unable to determine how to get our VB6 agents to set the ErrorLevel to notify Central that the agent failed (we came up with a workaround instead of spending a lot of time trying to get the ErrorLevel to work). This is necessary to prevent Central's agents from processing when a predicessor custom agent fails. Since we couldn't set the ErrorLevel, we just set up all of our agents to always create an output file for input to the next task. When one of our agents fail, it only outputs a modified ^job line with no following data. This modified ^job line is recognized by our custom agents as an indication that a failure is in process so it skips any processing except to pass the file to the next task. Since there is no data or form commands in the file, once it gets to JFMERGE, it just terminates without producing any output or error condition.<br /><br />Previewing is accomplished by running the JFPVMRG agent to create a PDF and then JFPVSEND to send it to the originating IP# for receipt by the View Manager which will then load it into Adobe Reader. At this point, the job running on Central will be finished - it could have produced hard-copy output or not depending on its design. Once the user receives the PDF, they can do whatever they want with it (save, print, etc).<br /><br />We use the above capability for our users to view an "archive" image of forms, after it has been processed normally. I know of others that use it to create the PDF as part of the normal processing, allowing the user to then print from Adobe Reader it if they wish.<br /><br />What we do is to drop a DAT file into Central's input folder that runs the above two agents. Our application that is running on the user's PC then watches for Adobe Reader to load and when it does it forces it to be the top-most task (we do this because we have a problem that it will often open behind other windows).

  • Central Pro or LiveCycle?

    Hi,
    We are adopting Adobe products for our document processing. Initially mostly for printing and some e-mailing. We do not really want to rule out for future use with forms and web.
    The specific question is, should we go for Central Pro Output Designer or LiveCycle Designer now?
    As a more general question, should we go for Central Pro or LiveCycle? We are not very clear where these products stand in relative terms with each other.
    Does anybody have experiences with both of them? Any issues, any preferences?
    Any reply is greatly appreciated.
    Regards.

    I don't have any real experience with LiveCycle forms because the Adobe path "went left" and we wanted to "keep going straight" so we continue to use the predecessor product (version 5.0). Besides, we have several hundred forms and lots of VB / VBScript code that would have to be rewritten, debugged & tested
    b and
    we would have to learn JavaScript and the object model underlying LiveCycle forms. I keep up with the product but we don't use it in production. It might be OK for someone just starting out or having to do a full conversion anyway. Personally, I'm also concerned about all the frustration and requests for help on the LiveCycle forum. At least Adobe does have staff monitoring that forum and providing aid to the requests for help.
    Central Pro Output Server (in the current Adobe vernacular) is a great way for producing paper forms (or PDFs, faxes, etc). It can also email the output or send the PDF directly to the originator's PC. Printed output can go to a central printer or to any printer available on the network. We are almost fully converted from our old DOS-based system and when completed at the end of this month we'll be producing approximately 120,000 "packets" of printed forms per month for mailing to clients.
    Unless you use an old, old version of the Output Designer, it is only for producing output (paper, PDFs, faxes, etc). It is
    b not
    a "filler" product. Some other product has to be used for the "filler" side. The older version of Form Designer that we use has a Filler program as well as an API that we use with VB for the "filler" side of the operation. This VB application builds the files that are compatible to Central Pro for producing the output that was designed with Output Designer. We run several custom "agents" on the server for doing various processing of the data besides just printing (update mainframe database, build form archive database, etc).
    If you are anticipating a web operation where the user retrieves a form, fills it out and then prints it or sends the data back to your server for processing, you would then probably want to use LiveCycle forms or custom html forms. If you anticipate the user of the form to want/need to save a partially filled form for completing later, then you would also need the Reader Extensions product (which I understand is
    b very
    expensive).
    Personally, I don't see LiveCycle forms as being the mechanism for producing masses of printed forms. At least not as a stand-alone product. It would probably be OK for the "filler" product with the data being sent to a server applet that passes it on to Central Pro. Of course, that would mean you
    i might
    have to design the form twice - once for LiveCycle and once for Output Designer.
    For our existing forms (which we maintained a copy as a PDF) we purchased a product that takes PDFs and turns them into Output Designer forms. Converted from PDF or newly created in Output Designer, with the older version of the Form Designer we are using we are able to export it and then import it into the Form Designer and then add the "filler" elements.
    If you choose the LiveCycle route and have PDFs of your existing forms then they can be imported directly into LiveCycle. If they are like our PDFs, with no fields, you would then have to add the fields. Of course, if you then use Central Pro for printing, you will have to get the forms into Output Designer somehow - by hand or using something like we did (FormBridge by Texcel Systems) for converting it.

  • How can i get my wireless to work on my printer hp officejet pro 8600

    how can i get my wireless to work on my printer hp officejet pro 8600

    You'll get faster help w/this question by posting it in the Wireless forum...here:
    http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/bd-p/Networking
    I am an HP employee.

  • How to lock the Printer of LaserJet Pro 500 Color MFP m570dw

    how to lock the Printer of LaserJet Pro 500 Color MFP m570dw

    You can set a control panel lock security level and password for your HP LaserJet series printer. To lock your printer, follow below link:
    http://h20564.www2.hp.com/hpsc/doc/public/display?​docId=emr_na-bpl03612

  • Anyone unable to print from Mac Pro using lion 10.7.2 to HP LaserJet M1319f mfp

    I'm unable to print from Mac Pro using lion 10.7.2 to HP LaserJet M1319f mfp. The HP website says that the HP LaserJet M1319F MFP is compatible with Lion 10.7.2.  Every time I try to perform a Test print I get an Error msg.  I'm using driver version 1.3.0.261

    https://discussions.apple.com/message/23765195#23765195

  • Black & white docs not printing Printer: HP Officejet Pro L7380

    Hey guys. I've run into a small problem thats been annoying me for a while.
    Printer: HP Officejet Pro L7380
    For some reason my printer won't print black and white documents. My colour ink is empty (yellow and magenta but cyan still has some left) but my black ink is full. When i go to print i make sure all the settings are set to print only in black and white. I've tried changing it from good quality gray scale to just plain old black but no change. When i hit the print button the display on the printer says that i've got some ink cartridges empty and refuses to print anything.
    I was just wondering if HP is being a cheapskate and making us keep all the cartridges full to print or there's a driver/software problem or any other problem. Please help any help is appreciated

    i have the same problem with my HP officejet pro K550.  i cannot get it to print in black and white.  I had to purchase a new Yellow cartridge to get the printer to print anything.    98% of time i print in B&W so having to keep the color cartridge topped up is annoying and expensive.  I had the same thought about HP increasing cartridge sales.

  • HT4356 I have two printers on my network.  Does anyone know how to change the printer nomenclature - Officejet Pro 8600  (0B54AF) to a recognizable name...like Brad's Office?

    I have two printers on my network.  Does anyone know how to change the printer nomenclature - Officejet Pro 8600  (0B54AF) to a recognizable name...like Brad's Office when you use Airprint?

    You would have to change that in the printer's settings on the printer, if that option is offered by the manufacturer. The iPhone just finds printers on the network and uses the name they have given themselves or that were given to them when they were set up.

  • Problems with my printer HP Officejet pro 8600 Plus + Yosemite

    Hi got problems with my printer HP Officejet pro 8600 Plus till I installed Yosemite it is not recognized so what can I do now.. No new drivers found by HP

    Thanks for this AnnRT!
    I've spent the best part of a day trying to figure this out. Everything was fine and then one day nothing worked! I have narrowed the issue down to Bonjour via WiFi as everything worked fine via USB, and via IP over WiFi.
    I've now set a static IP for the printer and things seem to be working fine again
    Thanks!
    Chris

  • INTERNET NOT WORKING WITH PRINTER HP OFFICEJET PRO 8600

    Hi,i have new printer HP OFFICEJET PRO 8600.if i connect printer to PC internet stops to work.I have mobilstick internet.Its working without printer.IF the printer is connected and i put mobilstick to PC its writeing the device cannot be recognized.The internet is working with old printer.
    I have windows XP.thank you

    It does sound like there is a compatibility problem.  You might try posting on one of the computer boards to see if anyone has advice on a computer setting that might help solve the compatibility problem.  Click Here 
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input ! ___________________________________ _____
    Thank You,
    Rich
    Expert

  • Printing Problem with Pro 8 and Reader

    I have this problem where when I print to any printer, from Acrobat pro, or reader, any sort of graphics/image in the PDF doesn't come out properly. For example, most of the graphics/image part looks solid black, or blocky. I usually take the same PDF, open it up on another computer, and print it to the same printer i normally print to, and it prints fine. I also can print from any other program other than acrobat/reader just fine.
    So far, i have uninstalled Reader, and reinstalled Acrobat, with no result.
    Any ideas?

    Not alot of information to go on but you might check to see if Print Color As Black is checked in the lower left corner of the Print dialog.

  • How do I select two-sided printing on LaserJet Pro 200 Color?

    How can I print documents with two-sided printing with LaserJet Pro 200 color printer. I have Mac )S X 10.10 Yosemite.

    Hi @jleo ,
    I see that you would like to know how to select the two-sided printing. I would be happy to help you, but I will need some more information.
    What is the full name and product number of your printer? How Do I Find My Model Number or Product Number?
    Are you using the Full Feature HP Software and Drivers or the Apple Update drivers?
    How is the printer connected? (USB/Ethernet/Wireless)
    Depending which printer you have and what drivers you are using, usually from the application you are printing from, go to File, Print, click on the Layout in the dropdown and you might have one also listed for Manual Duplex option, you should be able to select the two-sided setting there.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

Maybe you are looking for