Home Page link  

Can you create and save a Transaction with the SDK

 

Point-Of-Sale Software - - MS Point Of Sale software discussed here 

get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
Can you create and save a Transaction with the SDK rengeek33 02-16-2007
Posted by rengeek33 on February 16, 2007, 7:21 pm
Please log in for more thread options
I am a developer and have created an add-in for RMS that allows the user to
pop-up my window with a Custom button, import a file from their CC processer
and ACH processer, and import the records into my tables.

Now I want to create a Sales transaction based on this information. I can
use the OpenRecordset object to get the Customer ID (I have the Account
Number) and I can InitializeTransaction (it is successful), but most of the
properties are GET so I cannot set them in order to finally POST it.

Can this be done? If so, is there are sample code about this (the sample in
the SDK is useless for that - as far as I have seen anyway). Or do I need to
save directly to the tables?

Any help would be appreciated.

Thanks, Don

Posted by Akber Alwani on February 16, 2007, 11:32 pm
Please log in for more thread options
HI Rengeek, I think you first need the customization guide which tell you all
the steps require to develop your on add-on and utilitites to accomodate this.
Yes it is quite possible to do so but again you should have the
customization guide and gone through with it.


"rengeek33" wrote:

> I am a developer and have created an add-in for RMS that allows the user to
> pop-up my window with a Custom button, import a file from their CC processer
> and ACH processer, and import the records into my tables.
>
> Now I want to create a Sales transaction based on this information. I can
> use the OpenRecordset object to get the Customer ID (I have the Account
> Number) and I can InitializeTransaction (it is successful), but most of the
> properties are GET so I cannot set them in order to finally POST it.
>
> Can this be done? If so, is there are sample code about this (the sample in
> the SDK is useless for that - as far as I have seen anyway). Or do I need to
> save directly to the tables?
>
> Any help would be appreciated.
>
> Thanks, Don

Posted by phintec on February 17, 2007, 2:17 am
Please log in for more thread options
I guess I have a very similar situation. I have the customization guide to
start with. Every week or so I have a "batch" of orders that are taken by a
call center. Once we receive their batch I will be processing the credit
cards in bulk outside of RMS. For every card that is approved I need to be
able to then create a sale in RMS for each order. This is for three reasons,
inventory, sales reporting, and customer order history. I plan to use a new
tender to indicate they were charged outside of RMS. Is there a way to
"batch" all of these orders into RMS without going through the Internet
Orders processing? I am still trying to get my head around the CG and how it
all works since there seem to be very little in the way of examples.

One final question. For orders entered into RMS directly or via Internet
Orders (not the batch I described above) would I use the TenderEnd hook if I
wanted to write an interface to print address/postage labels with Stamps.com
for an order after it was approved? I have the documentation from Stamps.com
but want to make sure I understand how I can tie it all together.

Todd

"Akber Alwani" wrote:

> HI Rengeek, I think you first need the customization guide which tell you all
> the steps require to develop your on add-on and utilitites to accomodate this.
> Yes it is quite possible to do so but again you should have the
> customization guide and gone through with it.
>
>
> "rengeek33" wrote:
>
> > I am a developer and have created an add-in for RMS that allows the user to
> > pop-up my window with a Custom button, import a file from their CC processer
> > and ACH processer, and import the records into my tables.
> >
> > Now I want to create a Sales transaction based on this information. I can
> > use the OpenRecordset object to get the Customer ID (I have the Account
> > Number) and I can InitializeTransaction (it is successful), but most of the
> > properties are GET so I cannot set them in order to finally POST it.
> >
> > Can this be done? If so, is there are sample code about this (the sample in
> > the SDK is useless for that - as far as I have seen anyway). Or do I need
to
> > save directly to the tables?
> >
> > Any help would be appreciated.
> >
> > Thanks, Don

Posted by rengeek33 on February 17, 2007, 10:37 am
Please log in for more thread options
Yes, what I am trying to do is very similar to your first process. I will
let you know if anyone gives me help on this. The CG is not very helpful,
except as a reference - not as a How-To.

Don

"phintec" wrote:

> I guess I have a very similar situation. I have the customization guide to
> start with. Every week or so I have a "batch" of orders that are taken by a
> call center. Once we receive their batch I will be processing the credit
> cards in bulk outside of RMS. For every card that is approved I need to be
> able to then create a sale in RMS for each order. This is for three reasons,
> inventory, sales reporting, and customer order history. I plan to use a new
> tender to indicate they were charged outside of RMS. Is there a way to
> "batch" all of these orders into RMS without going through the Internet
> Orders processing? I am still trying to get my head around the CG and how it
> all works since there seem to be very little in the way of examples.
>
> One final question. For orders entered into RMS directly or via Internet
> Orders (not the batch I described above) would I use the TenderEnd hook if I
> wanted to write an interface to print address/postage labels with Stamps.com
> for an order after it was approved? I have the documentation from Stamps.com
> but want to make sure I understand how I can tie it all together.
>
> Todd
>
> "Akber Alwani" wrote:
>
> > HI Rengeek, I think you first need the customization guide which tell you
all
> > the steps require to develop your on add-on and utilitites to accomodate
this.
> > Yes it is quite possible to do so but again you should have the
> > customization guide and gone through with it.
> >
> >
> > "rengeek33" wrote:
> >
> > > I am a developer and have created an add-in for RMS that allows the user
to
> > > pop-up my window with a Custom button, import a file from their CC
processer
> > > and ACH processer, and import the records into my tables.
> > >
> > > Now I want to create a Sales transaction based on this information. I can
> > > use the OpenRecordset object to get the Customer ID (I have the Account
> > > Number) and I can InitializeTransaction (it is successful), but most of
the
> > > properties are GET so I cannot set them in order to finally POST it.
> > >
> > > Can this be done? If so, is there are sample code about this (the sample
in
> > > the SDK is useless for that - as far as I have seen anyway). Or do I need
to
> > > save directly to the tables?
> > >
> > > Any help would be appreciated.
> > >
> > > Thanks, Don

Posted by rengeek33 on February 17, 2007, 10:36 am
Please log in for more thread options
I do have the guide and have used it to create other add-ins (both HTML and
COM), but it is VERY unclear about the process I am asking about and when
looking at the classes, most of the properties are GET, not LET so I cannot
assign values in order to enter what I need.

Thanks for the response, but that did not answer my question.

Don

"Akber Alwani" wrote:

> HI Rengeek, I think you first need the customization guide which tell you all
> the steps require to develop your on add-on and utilitites to accomodate this.
> Yes it is quite possible to do so but again you should have the
> customization guide and gone through with it.
>
>
> "rengeek33" wrote:
>
> > I am a developer and have created an add-in for RMS that allows the user to
> > pop-up my window with a Custom button, import a file from their CC processer
> > and ACH processer, and import the records into my tables.
> >
> > Now I want to create a Sales transaction based on this information. I can
> > use the OpenRecordset object to get the Customer ID (I have the Account
> > Number) and I can InitializeTransaction (it is successful), but most of the
> > properties are GET so I cannot set them in order to finally POST it.
> >
> > Can this be done? If so, is there are sample code about this (the sample in
> > the SDK is useless for that - as far as I have seen anyway). Or do I need
to
> > save directly to the tables?
> >
> > Any help would be appreciated.
> >
> > Thanks, Don

Similar ThreadsPosted
Create a HALO for deleting items from a transaction. January 12, 2008, 3:22 pm
Auto Save November 16, 2006, 6:31 pm
Auto Save December 11, 2006, 1:55 am
Filters - save them for re-use elsewhere in system January 24, 2006, 1:10 pm
You Save Amount on Receipts April 17, 2006, 2:17 am
Save filters for PO creation May 15, 2007, 8:09 pm
save changes to purchase orders without exiting December 16, 2006, 8:21 pm
item supplier won't save rms ver. 1.3.1010 May 28, 2007, 3:40 pm
save tender information with quotes December 3, 2007, 10:51 am
Comments Wont Save (crtl+f10) March 3, 2009, 10:54 am

Contact Us | Privacy Policy
This site is not affiliated with Intuit - makers of Quickbooks and Quicken software
This site is not affiliated with Sage Software - makers of Peachtree accounting software
XML SitemapXML Sitemap