Add print job via DI Server?

Is there a way to add a print job for the delivery note when adding a delivery to the database via DI Server?
In the SBO Client you can set that a delivery note is automatically printed when adding a delivery. I'm developing a software for pocket PCs to edit picklists and add deliveries and I want exactly this printing feature for my software.

Well, you could define an alert + print the required objects "manually"...
...or you could checkout the DI Events Service sample which provides notifications about transactions based on the SBO_SP_TransactionNotification stored procedure.
But you will have to do the printing anyway. Sorry.
Please note that there are discussions about future notification mechanisms; watch-out for changes!
Regards,
Frank

Similar Messages

  • Errors when sending a print job via samba with CUPS 1.4.6-3

    Hello people, this is my last resource i made the things posted in the wiki for CUPS and CUPS via samba and CUPS specific problems and cant find the solution.
    When i send a print job using  HP LaserJet Professional p1102w with driver hpcups 3.11.5, requires proprietary plugin i recieve this message in localhost:631
    "/usr/lib/cups/filter/hpcups failed"
    if i change driver to hpijs, 3.11.5, requires proprietary plugin i recieve this message in localhost:631
    "Session setup failed: NT_STATUS_NO_SUCH_FILE"
    the hp-plugin is installed, in fact i have to change the link from python 3 to phyton 2.7 to work properly.
    the uri for the printer is the form smb://username:password@domain/hostname/printer_name also tried smb://username@hostname/printer_name and smb://username:password@hostname/printer_name
    i am in a Domain with Active Directory, all the share from server to my computer is working fine so i dont think its a problem from samba. All the data for the uri is correct in fact is my desktop pc at work with window$, i am trying to send a print job from my laptop with Arch.
    Any ideas? Thanks and sorry for my bad english.
    Last edited by engelus (2011-06-13 15:33:38)

    same problem, please advise.

  • Lion: Printer: Job pending on server

    I purchased a 12-core Mac Pro back in December, and much to my dismay, it came pre-loaded with Lion. The Lion ate my Xerox printer, and I'm not in the mood (or cash-flow) to buy a new printer.
    I cannot get a job to print. The printer is seen and found by the Mac, but every job goes to "Job pending on server." and just sits there. Xerox is not going to update a driver, and Lion didn't come with one that works. I've tried the Generic, Automatic, and naturally, the driver for my printer, a 6200N. I installed Gutenprint 5.2.8-1, a beta driver, but it doesn't work either.
    Is there a way to go into the old driver and add/delete/modify/fix it with something "new" from the Lion OS? I'm certainly no programmer, but these drivers aren't that large of a file, can they be that complex that they can't be modified?
    Any help would be greatly appreciated.
    Thanks,
    Ron

    I can't thank you enough Alberto! You might notice that I wrote this on the 30th of April, and Apple did the update on the 26th... I'd spent the morning of the 26th trying everything I could to create a fix to no avail. But today I downloaded the new driver from Apple (Software Update said I was up to date, however, so nothing happened there). I also used IP as the setup in Add Printer, instead of Default. Then, I typed in the address of the printer, and everything was golden! Thank you, thank you, thank you. I don't have to buy another printer now.
    By the way, Xerox' customer support simply told me that the driver would not be updated and I should just buy a new printer. I told them that with customer "support" like that, they could stuff it...
    Thanks!
    Ron
    Oh, what a relief! I can't stop grinning.

  • Epson can do only 1st print job via AirportExpress

    I have an Epson M1400 connected to the AirportExpress. After the 1st print job no other print jobs are executed. After switching off and switching on the printer a new print job can be done.
    When connecting the printer via USB to the MacBook I can print multiple print jobs as nornal without a problem.
    All drivers and OSX 10.6.8 are updated.
    Anyone an idea what to do?

    Hi 4epHaus,
    On the iPad, if you press the home button (the circle indentation with the rounded square) two times, a list of currently running apps appear. Look for an app called Print Center. Select that app and choose the print job, then touch the cancel button.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Cancel all print jobs via command line

    Hi there,
    I'm trying to write a logout hook that cancels all existing print jobs on my client machines.
    From the man pages of lprm I believe it should be:
    lprm -
    But when I run this as root I get the following returned:
    lprm: The printer-uri attribute is required!
    I used to run this using Apple Remote Desktop under 10.4 and it worked fine, it doesn't work now either remotely or as admin on the client itself.
    Have things changed under Leopard?

    Hi
    +*". . . Have things changed under Leopard? . . ."*+
    Absolutely. Did you have any doubts? For example apropos has disappeared yet the man page is still there. Its not the only thing that has disappeared. Clearly nicl had to go because of NetInfo's demise. These are just some of the differences I've found. No doubt there will be others?
    You could look at the man pages for cancel and lp. They appear to be the same thing. Might be up to what you want?
    Tony

  • Invoking plumtree job via plumtree server api

    Hi,
    I am trying to invoke a portal job identified by a job id using plumtree server api. How do i invoke it.
    I tried using IPTJob etc but couldn't succeed.
    I could do this using plumtree remote api like using IJobManager.
    My question is how to do it using plumtree serve api.
    regards
    raghu

    I think you're looking for something like this:
    public int startJob(java.lang.String sLoginToken, int nJobID, XPDateTime xpdtNextRunTime)
         // DCD: create a session fron this token
                IPTSession ptSession = createSession(sLoginToken);
         // DCD: Open the job in question, but don't lock it
         //IPTJob j = (IPTJob) ptSession.GetExternalOperations().Open(nJobID, false);
         IPTJob j = (IPTJob) ptSession.GetScheduler().GetScheduledJobs().Open(nJobID, false);
         // DCD: We need a server context to check/report lock status
         IPTServerContext sc = (IPTServerContext) j.GetInterfaces("IPTServerContext");
         // DCD: Is is locked?
         int nLockState = sc.GetLockState();
         // DCD: If anything other than "unlocked", return immediately
         switch(nLockState)
              case PT_LOCKSTATES.PT_LOCKED:
              case PT_LOCKSTATES.PT_NEWLYCREATED:
                   return nLockState;
              case PT_LOCKSTATES.PT_NOLOCKINGREQUIRED:
              case PT_LOCKSTATES.PT_UNLOCKED:
                   // DCD: Looks like we're not locked, so get a lock
                    boolean bSucceeded = sc.LockObject();
                    if (false == bSucceeded)
                         return PT_LOCKSTATES.PT_LOCKED;
                    else
                         // DCD: We got a lock okay, so we're in business
                         XPDateTime dt = new XPDateTime();
                         j.SetSettings(PT_JOB_SETTINGS.PT_JOB_NEXTRUNTIME, xpdtNextRunTime);
                         sc.Store();
                         sc.UnlockObject();
                         return 0;
              default:
                   return nLockState;

  • Cannot add a delivery note with an item with serialnumbers via DI Server

    I'm using a web service to add delivery notes via DI Server. my code works for items that do not need serialnumbers or batchnumbers and even for those that need batchnumbers.
    but if I try to add an item with serialnumbers, I'm getting the following error:
    [DLN1.WhsCode][line: 0] , 'Item 'A00004' with system serial 0 is not in stock.'
    in the soap request I put the InternalSerialNumber, Location and BaseLineNumber. Because the error message tells me something about system serial, I've also added the SystemSerialNumber to the soap request. But then I'm getting another error:
    Failed to execute command.
    does someone know, what I'm doing wrong?

    Hi,
    i'm getting the same error when trying to add a delivery/invoice.
    "[INV1.WhsCode][line: 0] , 'Item 'xxxx' with system serial 2 is not in stock"
    its started just after upgrade to 2005 SP1 PL4 and i tried to upgrade to PL7 with no success. do someone else have the same issues?
    thanks
    Moty

  • EPrint sending print jobs in A4 format to US-based printer

    When I send a print job via ePrint from my European based virtual desktop to my local US based Officejet 8600 printer, the first page will print with the correct margins but every other page afterwards prints with no top margin.  From the looks of it, it is trying to print as it was the longer A4 paper format instead of US Letter format.
    I will add this happens with using the duplex print option.  Any ideas?

    I would need some more information in order to help out. Does this same error occur when you send a print job locally? Locally being defined in this situation as the computer and Printer involved in the ePrint Job being in the United States. Also, have you checked the ePrint settings at ePrint Center to make sure that the paper selected on the printer is set to US letter? 
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • Printing tools on Aix server with Forte/Oracle

    I asked for it some weeks ago, but i had not enough answers... may be
    you were on vacations !!!
    I'm looking for a good software for manage print jobs on Aix server with
    Oracle rdbms.
    Something we cant use to make reports, bills, etc.. and callable with ou
    without Forte.
    If possible, reports template could be made on NT client (graphical
    tools) but the jobs will run on the Aix (to avoid running on a NT client
    and take all the network resources...).
    What do you use on your site ?
    Thanks.
    Cordialement.
    Patrice Bourdon
    Alliance Sante France
    Tel : (33) 02.54.60.26.27
    Fax : (33) 02.54.60.25.00
    e-M@il : [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    I asked for it some weeks ago, but i had not enough answers... may be
    you were on vacations !!!
    I'm looking for a good software for manage print jobs on Aix server with
    Oracle rdbms.
    Something we cant use to make reports, bills, etc.. and callable with ou
    without Forte.
    If possible, reports template could be made on NT client (graphical
    tools) but the jobs will run on the Aix (to avoid running on a NT client
    and take all the network resources...).
    What do you use on your site ?
    Thanks.
    Cordialement.
    Patrice Bourdon
    Alliance Sante France
    Tel : (33) 02.54.60.26.27
    Fax : (33) 02.54.60.25.00
    e-M@il : [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • CUPS in 10.5.7 and managing print jobs

    I know that 10.5.7 modified CUPS. Printing directly still works fine (I'm battling other issues with printer sharing but that's a different topic that I'll tackle after this one is sorted) however when trying to manage print jobs via CUPS I see no jobs at all... not completed jobs, not current jobs, not jobs waiting in the queue.
    I rolled back to 10.5.6 and everything works fine. Applied the combo update and the problem came back immediately.
    I tried replacing the current cupsd.conf file with one from when the system worked... no change.
    I'm seeing the same problem on numerous Intel iMacs in a lab setting as well as on my personal MacBook Pro.
    It's difficult to manage print jobs that you can't see. Any ideas?
    Bob Smith

    I may well do that but that will be a very time consuming process considering 25 computers are affected and it would force the re-do of a number of other tedious non Apple updates that can't be batch done via Apple Remote Desktop. I don't want to go down that road if there's a chance that I don't have to. Since Apple has chosen to modify CUPS I assume that sticking with 10.5.6 is only postponing the inevitable. I might as well deal with it now if possible. I'm not giving up that quickly.

  • Lost Print Job

    Running 2008R2 Print Server. We have an HP plotter against which there is 1 print job noted. However there are no jobs showing in the queue. I have tried to delete the job but it's not visible. I restarted the spooler and the plotter but the number of
    print jobs is still stuck at 1. No new print jobs can progress. How can I remove this stuck job?

    Do you see the print job on the server or on one of the client machines?
    The OS default for spooled print jobs is \windows\system32\spool\printers.  Since this is a print server I highly recommend changing the default location to a disk other than the system disk if possible.  If you have already made this configuration
    change.
    You can delete pending print jobs from the current spool directory.  Stop the print spooler service, navigate to the spool directly and delete the spl and shd file (those are NOT shockwave files if you happen to be using the UI), then start the print
    spooler service.
    Change spool directory
    Click Start, click Administrative Tools, right-click
    Print Management, and then click Run as administrator.
    In the left pane, click Print Servers, right-click the applicable print server, and then click
    Properties.  Advanced is where you set the spool directory.
    If you are only seeing the print job on one client machine, the client has rendered the job and has yet to send it to the print server.  Let me know if that's the case and I'll send instructions.
    Alan Morris Windows Printing Team

  • Since installing Mavericks, my HP Printer adds an extra page to every print job, and iCal won't synch via iTunes with the Calendar on my iPhone 4s. Can Mavericks be uninstalled?

    Can Mavericks be uninstalled? Don't know if the discussion title pulled in all of my problem, so here it is again. Since installing Mavericks, my HP Printer adds an extra page to every print job, and iCal won't synch via iTunes with the Calendar on my iPhone 4s.
    And no, I was a bad boy and had not been Time Machining. Guess I will now.
    So, can Mavericks be uninstalled?

    Uninstall CleanMyMac2 >  How To Uninstall CleanMyMac
    Uninstall Cocktail > Uninstall Cocktail for Mac OS X
    Third party cleaning utilities are not necessary on a Mac and can only cause problems.
    Your Mac runs maintenance in the background for you >  Mac OS X: About background maintenance tasks
    Growl is un necessary and can slow  the system down > Growl - Removing Growl
    If you want to monitor the system, use the pre installed Activity Monitor app located in HD > Applications > Utilities
    Then restart your Mac.

  • Executing a Job via Web Services using a Server Group?

    When executing a job from Designer or from the Management Console you have the option to select a specific job server or a server group.
    But when executing a job via Web Services it uses the first job server with which the repository was associated (i.e. the first job server listed in AL_MACHINE_INFO).
    Is there a way to get the job to execute using a server group instead simply choosing the first job server in the list?
    Note: We are using FIM to execute the jobs via web services and don't have access to additional parameters.

    Joe
    Here is the where you can change the server group/job server.
    - After you add the Batch/real Time job as a webservice.
    - Go to the Webservice Batch Job Attribute and from the drop down choose the "Enable job Attributes" and hit apply.
    - After this if you use the WSDL URL http://<Data Services Web Server>:<Web server Port>/DataServices/servlet/webservices?ver=2.0&wsdlxml
    - You will see the job attributes that you can change based on the allowed parameters mentioned in the documentation.
    The batch job or real time job is published without the job parameters by default. Once you enable the job attributes, remove and re publish the batch job as a web service. The application making the call to this webservice should be able to read the WSDL generated by Data services and pickup all the input and output parameters of the method.
    Refer to the Data Services Integrator guide (Chapter 3 : pages 25 - 33 ) to get the exact parameter values permitted via Data Services jobs called via web services.
    Hope this helps!
    Thanks & Regards
    Tiji

  • 10.4.6 server: print jobs vanish (mac & pc)

    setup:
    - private network (192.168.1.1/24)
    - 1 mac os x server, 1 lpd printer with static addresses
    - 1 mac os x client, 1 winxp client with dhcp addresses (from router)
    services on server:
    - afp (for network homedirectories, mac only)
    - open directory (for network users, mac only)
    - print and windows (for print server, mac and pc)
    config:
    the server connects to the printer via the lpd protocol and accepts print jobs to the queue via appletalk, ipp and windows printing.
    problems:
    1) jobs sent via appletalk or windows printing vanish. they appear as sent on the client's print queue but never appear on the server's queue nor the logfile. jobs sent via ipp work, though.
    2) adding a "networked printer" on windows xp doesn't work. the "wizard" sees the print server and his queues but upon adding a queue refuses to connect to it, citing some access rights problems.
    questions:
    1) has anyone successfully connected from winxp to the print server and managed to print a document?
    2) how?
    thanks a lot for your time,
    raoul schaffner.
    Power Mac G5   Mac OS X (10.4.6)  

    I'm not 100% sure about this but I think if you're providing SMB printing it is spooled through SAMBA and the /var/spool/samba folder. What the server is using to print to the printer is secondary.
    And beware of the not using any Administrator account on the Windows box for printing. Might also be other permissions problems acting up.

  • How do I add a network printer to a terminal server for one user?

    I have a 2003 terminal server.  I also have a network printer accessible by IP.  I want one of the users on the TS to print to this printer.
    If I log in as the user, all print options are greyed (access denied).  There's no 'users' icon in control panel to give the user admin access like I might do on a workstation.  This printer is not installed on a print server so even if he did
    have access, doing so doesn't appear to be an option.  If I log in as Administrator I can add printers but it wants me to specify \\servername\printername and it's not set up that way.  It's just a network printer on an IP.  Also I'm not trying
    to get RDP to map the printer locally for the user, he needs to be able to print from the terminal server to the network printer.  Any articles I can find assume the printer is either local to the user or on a print server of some kind.
    Is this possible and how?
    Thanks!

    Hi,
    In addition to TP’s comment, you can go through beneath article for information.
    Terminal Server and Printer Redirection
    http://blogs.technet.com/b/askperf/archive/2007/08/24/terminal-server-and-printer-redirection.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for