Share this page 

Get the package name (this howto is deprecated)Tag(s): DEPRECATED


integer i
ContextKeyword lcx_key
String ls_name[]

this.GetContextService("Keyword", lcx_key)
lcx_key.GetContextKeywords("com.sybase.jaguar.component.name", ls_name)

IF UpperBound(ls_name) = 1 THEN
    // extract the package name without the component name
    i = POS(ls_name[1], "/")
    zis_packageName = MID(ls_name[1], 1, i - 1)
ELSE
    zis_packageName = "?"
END IF

zis_componentName = ls_name[1]