- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2016 07:21 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-13-2016 12:17 AM
// global scope returns Java String
// app scopes return JavaScript String
gs.getSessionID();
// OR
// global scope only - Java String
gs.getSession().getSessionID();
To show this in the UI to a user:
Display business rule:
g_scratchpad.user_session_id = gs.getSessionID();
UI Action - Client
alert('Your session ID is: ' + g_scratchpad.user_session_id || 'Unknown');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2016 07:24 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2016 10:34 AM
Hi Manoj,
Here you go.
gs.info(gs.getSession()); //Accesses the GlideSession Session ID.
Please check section 5.14 for more info here.
Please elaborate your question further in case this doesn't answer your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2016 09:39 PM
By pressing a button in computer form i need to show the session ID of the current user in alert message.
i need to access the session ID in client side script,.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-12-2016 11:47 PM
didn't the answer from Pradeep help you out?