Clarity

Expand all | Collapse all

Query to get the portlet details with its NSQL query name

  • 1.  Query to get the portlet details with its NSQL query name

    Posted Mar 03, 2016 12:23 AM

    Hi,

    I need a query to get the portlet details with its used NSQL query name. I am not getting the link between the portlet and NSQL tables.

    Please advise.

     

    Thanks,

    Manisha



  • 2.  Re: Query to get the portlet details with its NSQL query name
    Best Answer

    Broadcom Employee
    Posted Mar 03, 2016 02:30 AM

    Hi Manisha,

     

    I don't think that way data is stored, the NSQL queries are stored in table CMN_GG_NSQL_queries and portlet details are stored in CMN_portlets.

     

    Here is a an example but this will only work if you have portlet code and query code same which is in case for out of box portlets and queries.

     

    select * from CMN_portlets a, CMN_GG_NSQL_queries b

    where a.portlet_code = b.query_code

     

    Regards

    Suman Pramanik



  • 3.  Re: Query to get the portlet details with its NSQL query name

    Posted Mar 03, 2016 08:14 AM

    Thanks !!



  • 4.  Re: Query to get the portlet details with its NSQL query name

    Posted Mar 03, 2016 03:25 AM

    You can check  this:

    Portlet Query

     

    NJ



  • 5.  Re: Query to get the portlet details with its NSQL query name

    Posted Mar 03, 2016 03:26 AM


  • 6.  Re: Query to get the portlet details with its NSQL query name

    Posted Mar 03, 2016 08:13 AM

    Thanks ! It helped.