CA Service Management

  • 1.  Insert a form in url.

    Posted Jul 24, 2017 01:52 PM

    Hello All, 

     

    I want to insert a form in the url.

     

    For exemplo, in this url : @{tenant.alt_phone}?OP=SEARCH+FACTORY=cr+SKIPLIST=1+QBE.EQ.id=@{id}, the user is able to open the request details windows, but I need that url call other form (z_xx.htmpl). 

     

    Is it possible? 

     

    Thanks.

     

    (I'm using CA SDM 12.9)

     



  • 2.  Re: Insert a form in url.

    Posted Jul 24, 2017 05:33 PM

    Hello,

     

    I dont know if i understand well but you could try something like this:

    http://localhost/CAisd/pdmweb.exe?OP=SEARCH&HTMPL=<<YOUR HTMPL FORM>>

    or if you need to filter something in the form you can use:

    http://localhost/CAisd/pdmweb.exe?OP=SEARCH&HTMPL=<<YOUR HTMPL FORM>>&FACTORY=cnt&QBE.EQ.<<ATTRIBUTE TO FILTER>>=<<VALUE>>

     

    Example:

    http://localhost/CAisd/pdmweb.exe?OP=SEARCH&HTMPL=list_cnt.htmpl&FACTORY=cnt&QBE.EQ.userid=servicedesk

     

    Hope this help

     

    Regards,

    Yonatan Sosa Sanchez



  • 3.  Re: Insert a form in url.

    Posted Jul 25, 2017 07:07 AM

    Hi,

    Yonatan is right but I want to add a little addition, if you want to open list form,

    you can simply specify it: +HTMPL=<form_name>.htmpl,

    but if you want to open detail form using SEARCH OP, you need to add: +SKIPLIST=1+HTMPL=<form_name>.htmpl.