Application Development and Automation 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: 
Read only

To find program name by using session ID or name?

Former Member
0 Likes
2,008

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.

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
Read only

former_member585060
Active Contributor
0 Likes
1,279

Try Table APQI

GROUPID = Session Name

PROGID = Program name created session

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

Read only

Mohamed_Mukhtar
Active Contributor
0 Likes
1,279

hi,

APQI table , Look in for GROUPID field

Regards

Read only

0 Likes
1,279

Hi,

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

Regards,

Pooja

Read only

0 Likes
1,279

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.

Read only

Former Member
0 Likes
1,279

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

Read only

Former Member
0 Likes
1,279

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

Read only

Former Member
0 Likes
1,279

Thanks all for their valuable answers.

Regards,

Pooja.