MSS Personal actions How to Limit the reasons

Sort:
You are not authorized to post a reply.
Author
Messages
omer
New Member
Posts: 3
New Member

    Hi

    Does anyone know how to Limit the reasons that are displayed on the perosnal action page to a sub set?

    I know they code are extratced by a DME call in paactionssdv.js

    function GetPcodes(selectValue)
    {
     if(pCodes.length && lastPcodeSelect==selectValue)
      Perform(pCodes)
     else
     { 
      pCodes = new Array();
      lastPcodeSelect = selectValue
      var object   = new DMEObject(authUser.prodline,"PCODES")
       object.out  = "JAVASCRIPT"
       object.index = "pcoset1"
       object.field = "code;description"
       object.key = String(selectValue);
       object.cond  = "Active";
       //object.select = "CODE="+'JOB'
       object.max = "600"
       object.debug  = false;
       //object.sortasc = "description"
      DME(object,"jsreturn")
     }
    }

    Can i put somehting like //object.select = "CODE="+'JOB' to limit the code extracted.

    Any help will be appreciated.

    Jay Riddle
    Veteran Member
    Posts: 191
    Veteran Member
      Yes although the // stands for a comment so you would want to remove that. Also you might as well just put in "CODE=JOB" instead of "CODE="+'JOB'.
      omer
      New Member
      Posts: 3
      New Member
        Thanks it works!!!;
        One more question I know you cant use "like" in object.select statement, is there a work around for that?
        omer
        New Member
        Posts: 3
        New Member
          Oh i got it
          this works for me

          object.select = "CODE^~"+"A"
          You are not authorized to post a reply.