on 2005 Aug 10 10:09 AM
Hi All,
I am looking for information how to create a JPEG file (for example Invoices). I know when we using the SBO Mail, the system will automatically create a JPEG file for us to be attached.
Does anybody know if SBO provides an object to save invoices as jpeg? or maybe anybody have another way to do that? I want the result is the same as SBO JPEG Invoice, but i need to do it programmatically...
Thanks & Best Regards,
Harianto Ng
Request clarification before answering.
Hi
Maybe this can be useful for you
SBOapp.ActivateMenuItem("2053") 'brings up the invoice form in sap
Dim fo As SAPbouiCOM.Form
fo = SBOapp.Forms.ActiveForm
fo.Refresh()
fo.Mode = SAPbouiCOM.BoFormMode.fm_FIND_MODE 'puts in search mode
fo.Items.Item("8").Specific.value = docnumofyourfac
fo.Items.Item("1").Click() 'search begins
'the magic moment
SBOapp.ActivateMenuItem("7173") 'this open the save as jpeg dialog
SBOapp is your application from ui
hope it helps you
Salvador Biot
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
you can always use a workaround:
- use a report maker, like crystal, to create the invoice format.
- Create a routine to print the reports of all the invoices
- use a print driver to print as jpeg. There are many drivers free on internet
I hope this help.
Harold Gómez
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have that same problem,
You can only "save as" .xml - no other format.
Iwanted to create a bulk mailing mechanism for invoices, but you can't save the object as a .jpeg.
I sent a DRQ to SAP and they said they are working on it.
Too bad hey?
(I don't know of any work arounds)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
96 | |
39 | |
8 | |
6 | |
3 | |
3 | |
3 | |
3 | |
2 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.