cancel
Showing results for 
Search instead for 
Did you mean: 

PROXY

Former Member
0 Kudos

Hi,

1. can we update standard tables directly by using proxy?r else we can update only ztables?

2.am working on server proxy,do i need to do recording to update data in a particular transaction and write a proxy or do i need to directly write a function module?

Regards,

somu

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

1)using proxy u can update data to both standard and Ztables.

2) i prefer you to go for function module.

regards,

pradeep A.

Former Member
0 Kudos

Hi pradeep,

u mean to say that while writing proxies on server side there is no need to do recording?

Regards,

somu

Former Member
0 Kudos

Yes ,you can use both BAPI as well as recording...Even I have see some of our programs use Recording.But I suggest you go with RFC,if choice is not mandatory

</b>*****************Reward points,if found useful</b>

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Somu,

Inside the inbound proxy we careate an internal table to take the data from XI and then simply by using the ABAP code we update the data inot R/3 table. BAPI(RFC) can also be used inside the proxy to update the data into r/3.Instead of the Transaction ,in my view its better to use RFC.

Former Member
0 Kudos

Hi BVS,

i want to update data in BSEG,BKPF,BSEG tables........will be easy if we update data in a transaction..so that it will be automatically updated into these table from the transaction.

Is there any standard bapi or FM to update the data in tranction XKO1.

Regards,

somu

Former Member
0 Kudos

Hi,

There are function modules available in SAP to do this. Just call the relevant ones in the proxy.

Cheers

Colin.

Former Member
0 Kudos

Hi,

it means that we just need to call function module in to proxy,no need to create it.if there r available,should we write logic inside the FM.

Regards,

somu

Former Member
0 Kudos

Hello ,

BAPI_VENDOR_CHANGEPASSWORD Change Vendor Password

BAPI_VENDOR_CHECKPASSWORD Check Vendor Password

BAPI_VENDOR_CREATE Create Vendor Master Online

BAPI_VENDOR_CREATEPASSWORD Create entry for vendor password

BAPI_VENDOR_DELETE Set Deletion Indicator Online for Vendor

BAPI_VENDOR_DELETEPASSWORD Delete entry for vendor password

BAPI_VENDOR_DISPLAY Display Vendor Online

BAPI_VENDOR_EDIT Change Vendor Master Online

BAPI_VENDOR_EXISTENCECHECK Check existence

BAPI_VENDOR_FIND Vendor Matchcode

BAPI_VENDOR_GETDETAIL Vendor Detail Information

BAPI_VENDOR_GETINTNUMBER Supplies new internal vendor numbers

BAPI_VENDOR_GETPASSWORD Read the Entry for the Vendor Password

BAPI_VENDOR_INITPASSWORD Initialize Vendor Password

If you think these BAPI are not according to the requirement...

Then better to use the recording ,instead of waiting in search of the BAPI