cancel
Showing results for 
Search instead for 
Did you mean: 

Integration with POS to SAP 4.7 / ECC 6.0

Former Member
0 Kudos

Hi Experts,

Is it possible to use POS with SAP 4.7 or ECC 6.0 without using IS Retail. If possible can you please explain how can we do that ?

Thanks

Christine

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear Christine

The integration can be done, wherein you can link a third party tool with SAP with a proper interface or directly also with linking of your barcode/RFID (under AUTO ID infrastructure).

Functionalities like credit card payment options are also available in SPRO> SD> Billing, for this functionality also you have to have a interface with the bank where payment gateway needs to be set up.

Reward Points if it helps,

Regards,

N

Former Member
0 Kudos

Hi Nitesh,

Thanks for the reply.

Can you please provide any documentation about this 3rd Party Integration ?

Christine

Former Member
0 Kudos

Dear Sir,

we are implementing Retail POS (Point of sale) for one retail company. We need to integrate third party payment gateway.

it's name is PLUTAS. We have got developer kit from Plutas (For trial ) . we have installed that kit in our system.

In my program, I am triggering " PL_TriggerTransaction" using call method. After triggering method it executes method, control passes to third party software. But I am not able to catch return parameter (Responce).

So that would be great if you help me out with this issue.

I wrote following code.

-


REPORT ZTEST678.

-


INCLUDE OLE2INCL.

data : rc_plutus type ole2_object,

lpszTransData type string,

lTxnType type char4,

lpszTransData1 TYPE string,

ret_string TYPE string,

l_count TYPE i,

l_time TYPE sy-uzeit.

rc_gui type ref to CL_GUI_CONTROL.

lTxnType = '4001'. "----


transaction type

lpszTransData = '1234567'. " -


trasaction data

*create object rc_gui.

create object rc_plutus 'PLUTUSEXCHANGE.EXCHANGEOBJ'(001) no flush. "no flush ."queueonly.

call method of rc_plutus 'PL_TriggerTransaction'(002) = lpszTransData1

exporting

#1 = lTxnType

#2 = lpszTransData.

wait up to 20 seconds.

write: ret_string. " <----


Value is not coming

write: lpszTransData1. " <----


Value is not coming

-


-


Answers (0)