cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP-proxies for BW-XI communication

Former Member
0 Kudos

hi friends

I am integration between BI and XI ,for this plz give abap proxies code & screen shots

interface objects for BI -XI communication

Thank u

Wishva

Accepted Solutions (1)

Accepted Solutions (1)

Shabarish_Nair
Active Contributor
0 Kudos
Former Member
0 Kudos

thank you Kumar

In This Documents not clear with proxy code . do u have any other documents

regards

Wishva

prateek
Active Contributor
0 Kudos

See this

/people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy

/people/sravya.talanki2/blog/2006/07/28/smarter-approach-for-coding-abap-proxies

Regards,

Prateek

Shabarish_Nair
Active Contributor
0 Kudos

- you will find numerous blogs mentioned in that link./ Most of them has the code too.

Hope this helps.

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanking you all

Former Member
0 Kudos

hi

Abap proxies b/w bw and XI???

Never fail to check the following blog

/people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies

regards

krishna

Former Member
0 Kudos

Hi viswa,

go thr...

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/18dfe590-0201-0010-6b8b-d21...

see below the code .....for BW-XI integration....might be helpful for u.....

METHOD zii_push_table_msg_int_in~execute_asynchronous.

DATA:

l_logid TYPE rspc_logid,

l_type TYPE rspc_type,

l_variant TYPE rspc_variant,

l_instance TYPE rspc_instance,

l_state TYPE rspc_state,

l_process_id type ZPUSH_TABLE_RETURN_PROCESS_ID.

IF input-push_table_msg_type_ret-status = 'OK'.

l_state = 'G'.

ELSE.

l_state = 'R'.

ENDIF.

loop at input-push_table_msg_type_ret-process_id into

l_process_id.

l_logid = l_process_id-log_id.

l_type = l_process_id-type.

l_variant = l_process_id-variant.

l_instance = l_process_id-instance.

CALL FUNCTION 'RSPC_PROCESS_FINISH'

EXPORTING

i_logid = l_logid

i_type = l_type

i_variant = l_variant

i_instance = l_instance

i_state = l_state.

  • i_dump_at_error = 'X'.

endloop.

endmethod.

Regards

Biplab