Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

To find program name by using session ID or name?

Former Member
0 Kudos

Hi,

I need to find the program name which created the bdc session( SM35) by using the session name or Session ID.How can that be done?

Will that be stored in some table?

Regards,

Pooja.

7 REPLIES 7

former_member585060
Active Contributor
0 Kudos

Try Table APQI

GROUPID = Session Name

PROGID = Program name created session

Edited by: Bala Krishna on Sep 25, 2008 12:09 PM

Mohamed_Mukhtar
Active Contributor
0 Kudos

hi,

APQI table , Look in for GROUPID field

Regards

0 Kudos

Hi,

But the prog id is not getting updated.Its empty for the session id I am looking for.

Regards,

Pooja

0 Kudos

I think if the KEEP = ' ' in BDC_OPEN_GROUP FM, the session gets cleared from SM35, so for that sessions PROGID will be blank.

So in BDC program parameter KEEP = space, PROGID in APQI table will be blank.

correct me if i am wrong.

Former Member
0 Kudos

In sm35 for every session one QID is attached with it. With this QID goto table APQI and find out the GROUPID and PROGID.

Former Member
0 Kudos

Hi,

Based on Queue Id given for session, pass it in APQI table to the field QID and get group_id and progid.

Rgds.,

subash

Former Member
0 Kudos

Thanks all for their valuable answers.

Regards,

Pooja.