OMBPlus report definition syntax "rule action" on a data_rule in a map

Hello

I'm trying to make sure that all the rules given in the tables of my maps are set to 'REPORT' and want to use OMBPlus for this but I can't find the proper syntax to do this. This is what seems logical to me at this time to retrieve the current value:

OMBRETRIEVE MAPPING '$mapName' DATA_RULE '$ruleName' OPERATOR '$tbl' GET PROPERTIES (RULE_ACTION)

It makes me:

OMB02933: Error getting child object of the type DATA_RULE with 1855 name: MMM1034: DATA_RULE property does not exist.

I also tried the reverse:

OMBRETRIEVE MAPPING '$mapName' OPERATOR '$tbl' DATA_RULE '$ruleName' GET PROPERTIES (RULE_ACTION)


also gives an error.


Does anyone know the correct syntax?


Thank you

Eric.

To answer my own question and anyone else looking for the correct syntax, this is what I came with:

# some variables for name mapping ($mapName) settings and scoreboard operator target ($tgttbl) in the mapping took place before these lines

define the rules [OMBRETRIEVE '$mapName' OPERATOR '$tgttbl' DATA_RULES GET from MAPPING]

foreach rule $rules {}

OMBRETRIEVE MAPPING '$mapName' OPERATOR '$tgttbl' DATA_RULES '$rule' GET PROPERTIES (RULE_ACTION)

MAPPING of the OMBALTER '$mapName' CHANGE the VALUES of PROPERTIES (RULE_ACTION) DATA_RULES '$rule' OPERATOR '$tgttbl"("REPORT")

}

REPORT can be replaced by IGNORE or BR_MOVE_TO_ERROR, according to the necessary RULE_ACTION.

Tags: Business Intelligence

Similar Questions

  • Reports of the rule properties

    We are looking for a way to generate a report that securities specific rules, the evidence of these rules and the source of these rules in a table.

    Ideally, we are looking for a way to generate a report for every rule that has the following comlumns:
    [Rule ID], [rule name,] [rule Source], [the rule definition], [Custom Property1], [Custom Property2], [rule as shown in rule browser]

    I know that a custom property report can display custom properties added to rules, but the properties of the rule of the rule's properties editor and the actual evidence of the rules do not appear in the report.

    OPM has a function to generate such a report?

    Thank you
    Isamu Minami

    There is nothing out-of-the-box in OPM is going to do.

  • Exception of Java in hand/Menu/Reporting Tools/XML Publisher report definition

    Hello

    We know this error:

    The Java Exception: java.lang.NoSuchMethodError: oracle.xml.parser.schema.XSDBuilder.build (Ljava/io/InputStream; Ljava/net/URL ;) Loracle/xml/parser/schema/XMLSchema; : during the com.peoplesoft.pt.xmlpublisher.PSXPXsdUtils.getLevel0ColNames call. PSXPRPTDEFN_WRK (2 763). FUNCLIB. Name: GetBurstFieldValues of FieldFormula PCPC:3211 statement: 48
    Called from: PSXPRPTDEFN_WRK. FUNCLIB. FieldFormula name statement: SetBurstFieldValues: 81
    Called from: PSXPRPTDEFN_WRK. FUNCLIB. FieldFormula name: LoadReportDefn statement: 660
    Called from: PSXPRPTDEFN_WRK. FUNCLIB. FieldFormula name: SelectReportDefn statement: 744
    Called from: PSXPRPTDEFN. GBL. Postgeneration statement: 36 error Java noted was launched with a call for a given method.

    It is if I add a new value in the report definition (8.5 Peoplesoft CRM): no customization in this

    Thanks in advance...

    Just saw this doc on MOS
    E-BI/XMLP: error 'java.lang.NoSuchMethodError"received when creating or opening a report definition [1077734.1 ID]
    indicating the xmlparserv2 - 904.jar should be removed from the the classpath and PS_HOME\classes resp.

    See the doc of MOS for the detailed steps to solve your problem.

    Kind regards

    Halin

  • Where the report definition files are stored?

    Hi guys

    I found after I deployed a third party plug-ins, the report definition files (files *.) SQL) inside the jar file is not found under oracle home.

    But for the host target pre-installed , I find both of the file:
    for the definition of target file:
    +/U01/app/Oracle/OracleHomes/agent10g/SYSMAN/Admin/metadata/host.XML+
    for the report definition file:
    +/U01/app/Oracle/OracleHomes/oms10g/SYSMAN/Admin/emdrep/SQL/core/latest/targetTypes_sql/host.SQL+

    I ran 'grep' and 'find' in order to get the file but failed, it's just the way it works? If not after the deployment where are the *.sql file stored?

    Thanks in advance for any answers.

    When you import the plug-in, its content and are put in a table of repository. So when you go to exploit on the plugin, you don't need to join the file system of an individual WHO (which you might have several), you only need access to the repository.

    The best way to get to one of the report files is to export the plug-in and unjar the MPA, he gets put in. The naming of the files will be a little difficult to understand which is the file you want, but they will all be there...

  • Error: Not found Report Definition

    Hello world

    I created as a result of a simple program for operation getReportDefinition for BI publisher web services.
    package bip_webservices;
    import com.oracle.xmlns.oxp.service.PublicReportService.ItemData;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportResponse;
    import com.oracle.xmlns.oxp.service.PublicReportService.ParamNameValue;
    import com.oracle.xmlns.oxp.service.PublicReportService.ReportDefinition;
    import com.oracle.xmlns.oxp.service.PublicReportService.ScheduleRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.DeliveryRequest;
    import com.oracle.xmlns.oxp.service.PublicReportService.EMailDeliveryOption;
    
    import  java.io.FileOutputStream;
    import  java.io.OutputStream;
    import java.net.MalformedURLException;
    import java.rmi.RemoteException;
    import  java.util.Calendar;
    import javax.xml.rpc.ServiceException;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import org.apache.axis.encoding.XMLType;
    import org.apache.axis.encoding.ser.BeanDeserializerFactory;
    import org.apache.axis.encoding.ser.BeanSerializerFactory;
    import  javax.xml.namespace.QName;
    import  javax.xml.rpc.ParameterMode;
    import  java.net.URL;
    
    
    public class BIP_GetReportDefinition{
        
        public static void main(String[] args) throws ServiceException, MalformedURLException, RemoteException{
         try{
            final String bipEndpoint = "http://localhost:9704/xmlpserver/services/PublicReportService?wsdl";
            final String bipNamespace = "http://xmlns.oracle.com/oxp/service/PublicReportService";
            final String xdofile = "D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo";
                    
            Service service = new Service();
            Call call = (Call) service.createCall();
            call.setTargetEndpointAddress(new URL(bipEndpoint));
     
            service = new Service();
            call = (Call) service.createCall();
            call.setTargetEndpointAddress(new URL(bipEndpoint));
     
            System.out.println("BEGIN TESTING getReportDefinition");
     
            // register the ReportDefinition class
            QName reportDef = new QName(bipNamespace, "ReportDefinition");
            call.registerTypeMapping(ReportDefinition.class, reportDef,
                            BeanSerializerFactory.class, BeanDeserializerFactory.class);
     
            // register the ParamNameValue class
            QName nmvals = new QName(bipNamespace, "ParamNameValue");
            call.registerTypeMapping(ParamNameValue.class, nmvals, BeanSerializerFactory.class, BeanDeserializerFactory.class);
     
            call.setOperationName(new QName(bipNamespace, "getReportDefinition"));
            call.addParameter("reportAbsolutePath", XMLType.XSD_STRING, ParameterMode.IN);
            call.addParameter("userID", XMLType.XSD_STRING, ParameterMode.IN);
            call.addParameter("password", XMLType.XSD_STRING, ParameterMode.IN);
            call.setReturnClass(ReportDefinition.class);
     
            // issue the request
            ReportDefinition reportDefn = (ReportDefinition) call.invoke(
                new Object[] { xdofile, "administrator", "Administrator"});
     
            System.out.println("Report Definition Returns with \n Default Output Format = " + reportDefn.getDefaultOutputFormat());
            ParamNameValue params [] = reportDefn.getReportParameterNameValues();
     
            if (params != null) {
                for (int i = 0; i < params.length; i++) {
                    System.out.print("Parameter " + params.getName() + ":");
    if (params[i].getValues() != null) {
    for (int j = 0; j < params[i].getValues().length; j++)
    System.out.print(" " + params[i].getValues()[j]);
    } else
    System.out.print(" null");
    System.out.println(" - multiple values? " + params[i].isMultiValuesAllowed());
    }
    }
    System.out.println("END TESTING getReportDefinition");
    }catch(Exception e){
    e.printStackTrace();
    }
    }
    }


    When I try to run the above program, it gives OperationFailedException as "Report definition not found"

    At BI Publisher Server, it shows following error log
    [110509_031712796][java.lang.String][EXCEPTION] oracle.apps.xdo.servlet.CreateException: Report definition not found:D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo
            at oracle.apps.xdo.servlet.ReportException.fillInStackTrace(ReportException.java:124)
            at java.lang.Throwable.<init>(Throwable.java:196)
            at java.lang.Exception.<init>(Exception.java:41)
            at oracle.apps.xdo.servlet.ReportException.<init>(ReportException.java:36)
            at oracle.apps.xdo.servlet.CreateException.<init>(CreateException.java:18)
            at oracle.apps.xdo.servlet.ReportRepository.getReport(ReportRepository.java:79)
            at oracle.apps.xdo.server.impl.DefaultServerSession.getReport(DefaultServerSession.java:255)
            at oracle.apps.xdo.webservice.PublicReportServiceImpl.generateReportDefinition(PublicReportServiceImpl.java:503)
            at oracle.apps.xdo.webservice.PublicReportService.getReportDefinition(PublicReportService.java:267)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
            at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
            at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
            at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
            at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
            at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
            at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
            at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
            at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
            at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:351)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
            at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
            at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
            at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
            at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
            at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
            at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
            at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:595)
    While when you try to run Java IDE, it shows the following error log.
    AxisFault
     faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
     faultSubcode: 
     faultString: oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReportDefinition Failure: Due to oracle.apps.xdo.servlet.CreateException: Report definition not found:D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo
     faultActor: 
     faultNode: 
     faultDetail: 
            {}oracle.apps.xdo.webservice.exception.OperationFailedException:null
            {http://xml.apache.org/axis/}hostname:mildh0228
    
    oracle.apps.xdo.webservice.exception.OperationFailedException: PublicReportService::generateReportDefinition Failure: Due to oracle.apps.xdo.servlet.CreateException: Report definition not found:D:/OracleBIP/xmlp/XMLP/Users/~administrator/FCPBReports/Report1/Report1.xdo
            at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
            at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
            at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
            at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1318)
            at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
            at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
            at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:206)
            at oracle.xml.jaxp.JXSAXParser.parse(JXSAXParser.java:292)
            at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
            at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
            at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
            at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
            at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
            at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
            at org.apache.axis.client.Call.invoke(Call.java:2767)
            at org.apache.axis.client.Call.invoke(Call.java:2443)
            at org.apache.axis.client.Call.invoke(Call.java:2366)
            at org.apache.axis.client.Call.invoke(Call.java:1812)
            at bip_webservices.BIP_GetReportDefinition.main(BIP_GetReportDefinition.java:71)
    PS: I spoke [http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416/bip_webservice_101331.htm#CBADBFAF] for the above program.

    Please help solve my problem above if you have an idea. Thank you!

    the xdofile variable is incorrect. You do not provide the way to access on the disk, but the root, for example ' / HR Manager/employee salary report/employee salary Report.xdo.

    Concerning

    Tim

  • Rule action - attachment

    Hello

    I created a rule with action by electronic mail. I want to attach a pdf file.

    The PDF file is located at \\Server1\test\test.pdf

    I don't know how to configure these settings:

    -mail.attachement

    -mail.attachement.file.name

    -mail.attachement.mime.type

    Could you please help me.

    Thank you and

    Best regards

    Philipp

    See if this community article helps

    http://communities.quest.com/docs/doc-14337

    Especially the 2nd example "attachment PDF.

    Golan

  • Guests report in DRS-rules

    Hello

    We are currently using DRS for the distribution of Windows VMs on specific hosts in our groups. These hosts are grouped into a "Windows Hosts licensed" DRS group in each cluster.

    For our license management, I need to declare the current number of hosts (and host) attributed to these groups of DRS each month.

    As the environment is more and more bigger I want to automate this task by using a regular report.

    How can I get a list of relevant hosts including physical processors per cluster and a total number of CPU?

    We use vSphere 5.1 and PowerCLI does not seem to offer much for DRS-groups out of the box.

    I just need to know how to get the list hosts, I can do anything around this (adding PSModule, connection to vVenter, report by mail, etc.) by myself

    Any help appreciated.

    Hi Daniel,.

    right, PowerCLI does not offer a large part of the box.

    But there is a module, you can import:

    http://www.lucd.info/2015/01/22/drsrule-DRS-rules-and-groups-module/

    Who should help ;-)

    Tim

  • can a column of 'link' (classic) report trigger a dynamic action?

    In order to avoid a complete package and following flicker,

    can the link associated with a column of the classic report

    somehow trigger a dynamic action?

    Something along the lines of

    1. run few PL/SQL (some parameter passing along)
    2. refresh a page region to reflect the changes brought about by the (1)

    In practice, I have a page that emerges already, master/detail

    with the need to manage another set of detail records.

    I can collect a bunch of fields that are not related to the db.

    and generate an insert + update via a button 'Add '.

    Then the report containing the details is updated

    provide visual feedback that a new record has been added

    Indeed, with a column 'delete '. The integrated link is

    currently a javascript that saves the underlying m and

    Removes the secondary details, but it involves a shipment

    and refresh the entire page. It can be avoided?

    (running apex 4.2.1)

    You can use the onchage event to create your dynamic action. Make sure that there is a hidden page element (value not protected). From your link to classic report column, set the value of the page element hidden by using the JavaScript API $s () that will trigger the dynamic action of the onchange event.

    javascript:$s('P1_HIDDEN_PKEY_ID',#ROW_PKEY#);
    

    Thank you!

    JMcG

  • Image coding in XML report definition

    A number of reports, I have the report in XML format definition. These files contain embedded images.

    How can I retrieve the xml image files. It looks like not the strings for images are not base16 or base64-coded?

    Work with something like that?

    
    
      
      ]]>
      
      
        
        
      
      
      
    FF8DFF0E 0001A464 94640010 10100006 00060000 FFBD0048 0001B0C0 E0C0A001 E0D0E021 11013181 82A18161 61811332 52D182A3 33D3C393 33837304 84C5E404 44755473 8305D615 75F52676 8676E3D4 17970746 87C55676 36101121 21815181 F2A1A1F2 36248324 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 36363636 3636FF4C 102A0000 [...] D29681A8 4EB94557 F3D8D588 912F1FCE A2478278 4E157FE8 D3B2F257 A1906D14 A809D102 9F646EFF 007CA66A B08C98EF 2E5344BB 4978EEAD 55093F75 6A4E8D29 345ECCA0 4F537A2C 9CB424CB 8DDE0D7D 53D4D002 D3E32E6D 1942F70F 5D29740C 7CF15A56 1A469E72 F449A09D 918DE7CF 5F9F877A 17106FEF 474C484E 6F41C067 0D1338AF 1D06311A 4E6608F0 F4C40540 859FBFE7 579924E1 495C31FF 9D
    <%@ page language="java" import="java.io.*" errorPage="/rwerror.jsp" session="false" %> <%@ page contentType="text/html;charset=ISO-8859-1" %> Your Title ]]>

    The image data are encoded hexadecimal (base16) but the hexadecimal digits are reversed compared to the sequence of bytes.
    For example, the first eight bytes in the source are:

    FFD8FFE0 00104A46
    

    but appears as

    FF8DFF0E 0001A464
    

    in the XML file.

    You will need a small program to read the file, extract the hexadecimal binary stream, treat it and write the data to a file.

    PL/SQL example (tested on version 11.2.0.2 db):

    DECLARE
    
     fid     utl_file.file_type;
     len     PLS_INTEGER := 1024;
     buf     RAW(512);
    
     module_name VARCHAR2(260) := 'MODULE1';
     dir_name    VARCHAR2(30) := 'TEST_DIR';
    
    BEGIN
    
      for r in (
        /* extract all image elements */
        select img_name
             , regexp_replace(img_data, '\s+') as img_data
        from xmltable('//body/image'
              passing xmltype(bfilename(dir_name, module_name||'.xml'), nls_charset_id('WE8MSWIN1252'))
              columns img_name varchar2(30) path '@name'
                    , img_data clob         path 'binaryData'
             )
      )
      loop
        /* output file */
        fid := utl_file.fopen(dir_name, module_name || '_' || r.img_name || '.jpg', 'wb', 32767); 
    
        for i in 0..trunc((dbms_lob.getlength(r.img_data) - 1 )/len)
        loop
    
          /* read 1k of hex data and convert to binary */
          buf := hextoraw(
                   regexp_replace(
                     dbms_lob.substr(r.img_data, len, i*len + 1)
                   , '(.)(.)'
                   , '\2\1'
                   )
                 );
    
          utl_file.put_raw(fid, buf);
    
        end loop;
    
        utl_file.fclose(fid);
    
      end loop;
    
    END;
    /
    
  • Apex 4.0 interactive report row view dynamic action "after Refresh.

    Hello

    It seems that interactive report view row do not trigger the event "after refresh.
    I have not tested other events.

    I have taste.
    https://Apex.Oracle.com/pls/OTN/f?p=40323:76

    There is a dynamic action that show the alert by region "after updating' event.

    When you see a row, the alert is not displayed.
    Change record show no alert ether.

    Is it bug or missing feature?

    Kind regards
    Jari

    Hi Jari,

    I consider this a bug/feature missing as well. I filed bug # 10376989.

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Interactive reports - expansion of Menu Actions does not fit in IE?

    Our graphic designer (bless his heart) wants me to precede the image of the menu Action (green machine) with the word "Advanced." The only way I could see to do is to copy the image, enlarge and add the word.

    It displays fine in FireFox, but when I run it in Internet Explorer, the right side of the image is not completely displayed. I don't know if it's because I have buttons displayed to the right of the search box or not.

    [It looks like this | http://farm4.static.flickr.com/3603/3326143958_ec8b1e4a38_o.jpg]

    I used the same technique to "search for:" on the finder (i.e. a magnifying glass) and have no problem.

    Suggestions?

    Thank you

    Stew

    I don't see the width settings in the CSS it would affect

    Stew

    What I saw today is the width = "55" attribute on the cell that contains the Image of the Menu actions. IE (6 and, contrary to my original post, 7) is to limit the width of the cell 55 pixels. The HTML 4.01 specification says this attribute specifies a width recommended for the cell, and the other browsers it increase beyond this size when the precepts content, but IE seems to take up.

    As it is in the IR HTML generated by APEX, and this markup is such a rule CSS selector to replace, it would need to be adjacent brothers or type attribute not supported by IE6, Javascript is the only way to tackle the problem.

    To stick to the approach on the image that you have proposed, the following deletes the specified width of the DOM:

    $x_UpTill("apexir_ACTIONSMENU", "TD").setAttribute("width", null);
    

    As I indicated above, I would have preferred an approach that got the prefixes on the page in the form of actual text, i.e. in my Javascript amateurism:

    var irSearchMenuCell = $x_UpTill("apexir_SEARCH_ICON", "TD");
    var irActionsMenuCell = $x_UpTill("apexir_ACTIONSMENU", "TD");
    
    var irSearchMenuLabel = document.createElement("td");
    irSearchMenuLabel.className = "apex_finderbar_middle";
    irSearchMenuLabel.setAttribute("rowSpan", "3");
    var irSearchMenuLabelText = document.createTextNode("Search:");
    irSearchMenuLabel.appendChild(irSearchMenuLabelText);
    irSearchMenuCell.parentNode.insertBefore(irSearchMenuLabel, irSearchMenuCell);
    
    var irActionsMenuLabel = document.createElement("td");
    var irActionsMenuLabelText = document.createTextNode("Advanced:");
    irActionsMenuLabel.appendChild(irActionsMenuLabelText);
    irActionsMenuCell.parentNode.insertBefore(irActionsMenuLabel, irActionsMenuCell);
    irActionsMenuCell.setAttribute("width", null);
    

    the results are visible here. It would be less verbose in jQuery and there may be calls from current API of APEX who can shorten, but they don't jump off the docs to me. It's just the race in the footer: If this behavior is desired on IRs all together a request then a script and separate page template mods to call it are in order.

  • E-mail rule action

    I am currently having foglight send an email with the following body (see below).  I created an emailBody on the rule variable and added the text below.  And all the variables listed in the body vary rule as well.  I get errors when trying to save this... .as planned.  There are a lot of special characters in the body and MI don't know how to escape to come through in the email they have them while still getting the values for the variables.

    Hope that makes sense...

    #MAXIMO_EMAIL_BEGIN
    LSNRACTION = CREATE
    ;
    LSNRAPPLIESTO = SR
    ;
    TICKETID = & AUTOKEY &
    ;
    CLASS = INCIDENT
    ;
    classstructureid = 980004
    ;
    REPORTEDSEVERITY = @severity
    ;

    Eighty = Foglight

    ;

    SUMMARY = @ruleName

    ;

    DESCRIPTION = @message

    ;

    HOST = @hostName

    ;

    IPADDRESS = @ip

    ;

    NOM_AGENT = @agentName

    ;

    INSTANCE = @instanceName

    ;

    REQUEST = NULL

    ;

    ALERTID = @id

    ;

    ALERTURL = @url

    ;

    #MAXIMO_EMAIL_END

    Sorry I did not answer back... I realized my question of departure Friday, it was just as you would expect I have configured in Expression and he should have summer set to the message.  Thank you!! I have a second question now, but I'll start a new discussion

  • DRM: Reported statement syntax

    Team,

    Please bear with me while I try to explain to my business needs.

    Currently I have a CostCenter in DRM which is irregular hierarchy consisting of 10 levels. There is a need of business to create a symmetrical export of Parent/child to generate reports that only consists of 3 levels.

    That's why I want to do the following:

    Create a derived custom.prop1 called "Reporting_Flag".

    And another

    I would then go out through the tag of the Parent hierarchy and a child (with a ' 1' for Reporting_Flag) in the SAME line with the hierarchy.

    For example, a Parent could be level 2 and a child level 7, so I need to shoot those export in a format of parent/child through the hierarchy.  How can I do this? Is this possible?


    Please let me know if you need more details, thank you!

    If (Equals (Integer, varValeurProp (Core.Level), 1), zero,

    ArrayItem (FlipList (ListRelatedNodesWith (Ancestors, Equals (String, PropValue (Custom.Reporting_Flag), 1) yesterday, 0), [Comma]), [Comma], 1)

    )

    If any will be the parent to the TopNode

    Thnaks

    Denzz

  • All of the Images which the different Ratio to a report customized with an action of cultures

    Hi all

    I'm new to Photoshop. I have been struggeling for a few days with this problem...

    1. I have 100 Images with different ration.
    2. I would like to define a custom target ratio.
    3. Then, I want to crop the images, which do not have the target ratio.
    4. These Images must be croped aligned in the center of the image (if the height is too large, the upper part and the lower part of the image would lose the same amount of pixels)
    5. I can interpolate the resolution during this operation to a standard custom resolution if it is different?
    6. Finally I would like to create an action/batch of steps 1 to 5, so that all images are processed automatically.

    I would apriciate all sorts of help a lot!

    Thank you very much

    Save a preset size for truncation tool, then call him upwards in action. Add layers of resizing based on the percentage, when necessary. You still have to individually for each image, but have some practical actions could make it faster. for anything else, you need scripts, which is a whole other story...

    Mylenium

  • Syntax of action Script3

    Hi all

    I have a problem of AS3 syntax:

    I need to refer to a field of the object that is stored in a string variable:

    private void setField (Obj:Object, FieldName, value: String) {}
    Here, I need to set the name of the field in Obj to value...
    }

    No idea how to do?






    Sorry to bother him...

    found the solution:

    private void setField (Obj:Object, FieldName, value: String) {}
    Obj [fieldName] = value;
    }

Maybe you are looking for