Get exData body of a static text

Hi experts,
I've got a static text as follow (xml source)
        <draw minH="20mm" name="Text" w="190mm" x="0.6477mm" y="201.971mm">
            <ui>
               <textEdit>
                  <margin/>
               </textEdit>
            </ui>
            <value>
               <exData contentType="text/html">
                  <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xfa:APIVersion="2.5.6290.0"><p style="text-align:justify;font-family:Arial;text-decoration:none">Il sottoscritto<span style="xfa-spacerun:yes"> </span</body>
               </exData>
            </value>
         </draw>
I need to change the body formatting dynamically.
I've tried with exData.saveXML() function but this returns
<?xml version="1.0" encoding="UTF-8"?>
<exData contentType="text/html"/>
how can I get the body xml?
Best regards,
Dariush

I used this:
  Text1.value.exData.saveXML("pretty")
It returned this:
<?xml version="1.0" encoding="UTF-8"?>
<exData contentType="text/html" xmlns="http://www.xfa.org/schema/xfa-template/3.5/">
   <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/"><p style="text-decoration:none;letter-spacing:0in">This is a<span style="xfa-spacerun:yes"> </span><span style="font-weight:bold;text-decoration:underline">test<span style="xfa-spacerun:yes"> </span></span></p></body>
</exData>
The body tag has the formatting and the value that is in teh text object.
Are you not seeing the somethig similar?
Paul

Similar Messages

  • Bold Static Text in Email Body.

    dear sir,
    i have an email option in my application ,
    I need Some Static Text Bold In Body . i am using <b></b> But It's not Working .How Can I Bold Static Text.
    DECLARE
    l_id number;
    to_add varchar2(1000):=:P1_TO;
    from_add varchar2(1000);
    l_body varchar2(4000):=:P1_DESCRIPTION;
    l_sub varchar2(1000):=:P1_SUBJECT;
    l_regd varchar(100);
    I_isue_dte date;
    BEGIN
    select email_id into from_add from user_mas where user_id=:app_user;
    select user_name into l_regd from user_mas where user_id=:app_user;
    l_id:=APEX_MAIL.SEND(
            p_to        => to_add, -- change to your email address
            p_from      => from_add,
            p_body      => '<b>Issue Information</b>'||''||chr(13)||chr(10)||chr(13)||chr(10)||
                                 '<b>Issue Title</b>'||':'||l_sub||CHR(13)||chr(10)||
                                  '<b>Issue Open Date</b>'||':'||I_isue_dte||''||chr(13)||chr(10)||CHR(13)||chr(10)||
                           <b>'Most Recent Comment</b>'||':'||''||chr(13)||chr(10)||
                           l_body||chr(13)||chr(10)||''||CHR(13)||chr(10)||'Regards'||chr(13)||chr(10)||''||l_regd||CHR(13)||chr(10)||CHR(13)||chr(10)||'<b>Please do not reply to this email.If you wish to update the call.please login to the issue Management.</b>',
      P_subj      => I_case ||' Issue '||l_sub);
    COMMIT;
    apex_mail.push_queue(
    P_SMTP_HOSTNAME => '102.111.0.9',
    P_SMTP_PORTNO => 25);
    commit;
    END;How can i do this.
    Vedant

    I would build your email something like this:
    DECLARE
    l_id number;
    to_add varchar2(1000);
    from_add varchar2(1000);
    l_body CLOB;
    /* I would add an l_body_html and create the body of my Email message here and feed it to p_body_html so that
    you can have a reply for folks with and without html browsers.
    l_body_html CLOB;
    /* You need to make sure if you have l_body and l_body_html that they are the same format */
    l_sub varchar2(1000);
    l_regd varchar(100);
    I_isue_dte date;
    l_description varchar2(4000);
    BEGIN
    l_description := :P1_DESCRIPTION;
    to_add := :P1_TO;
    l_sub := :P1_SUBJECT;
    l_body := 'Please use an Email client that uses HTML to view this message';
    select email_id into from_add from user_mas where user_id=:app_user;
    select user_name into l_regd from user_mas where user_id=:app_user;
    /* HTML EMAIL SETUP - HTML HEAD BODY */
    l_body_html := '<html>';
    l_body_html := l_body_html ||'<head>'||utl_tcp.crlf;
    l_body_html := l_body_html ||'</head>'||utl_tcp.crlf;
    l_body_html := l_body_html ||'<body>'||utl_tcp.crlf;
    /* END HTML EMAIL SETUP - HTML HEAD BODY */
    /* NOTE THAT l_body_html just keeps getting the lines added to it */
    /* here is how I would setup your subject */
    l_body_html := l_body_html || '<b>Issue Information</b>'||utl_tcp.crlf;
    l_body_html := l_body_html || '<b>Issue Title</b>:'|| l_sub || utl_tcp.crlf;
    l_body_html := l_body_html || '<b>Issue Open Date</b>:'|| I_isue_dte || utl_tcp.crlf;
    l_body_html := l_body_html || '<b>Most Recent Comment</b>:'|| l_description || utl_tcp.crlf || utl_tcp.crlf;
    l_body_html := l_body_html || 'Regards '|| l_regd || utl_tcp.crlf || utl_tcp.crlf;
    l_body_html := l_body_html || '<b>Please do not reply to this email.If you wish to update the call.please login to the issue Management.</b>'|| utl_tcp.crlf;
    l_id:=APEX_MAIL.SEND(
            p_to        => to_add, -- change to your email address
            p_from      => from_add,
              p_body      => l_body,
            p_body      => l_body_html,
            P_subj      => I_case ||' Issue '||l_sub);
    COMMIT;
    apex_mail.push_queue(
    P_SMTP_HOSTNAME => '102.111.0.9',
    P_SMTP_PORTNO => 25);
    commit;
    END;

  • How to get file name and set it as static text in a dialog

    Hi,
    I m new to InDesign Programming.
    I have a menu that creates a dialog with different controls in it.
    The dialog will appear only if there is an open file. I need to display the name of the open file as a static text in the dialog. I know to get the name of the current file but don't know how to pass this each time the dialog is opened.
    Can someone help me in doing this?
    I m using InDesign CS3 in MAC OS.
    Thank You.

    those are the methods, but you can't use getCharacterEncoding(), actually, cuz it seems it's not necessarily filled in.. or at least that might be on some servers only, like Tomcat 4. As for encodings, you need to do a search for character encoding names and use the appropriate one.

  • Getting Dynamic Text To Act Like Static Text

    Hi, need help.
    I currently have 7 text/symbols that each move to the right
    when a button beneath expands in a mouseover.event.
    Working fine.
    With one exception: I need to set the text value of that text
    dynamically using loadVars (the text is dates that vary).
    No problem, I can do that with dynamic text, except for a few
    somewhat ugly problems.
    Problem 1 - I want the text just to display. The dynamic text
    gets the I-Beam mouse cursor.
    Problem 2 - Dynamic text lets the user select some or all of
    the text, which then shows in highlighted color.
    I don't want the user to have any interaction with the text,
    and I'd like to have the "hand" mouse pointer over it, which
    carries through from the button underneath, just like the static
    text currently does.
    I've tried the label component, but when you move it, it
    evaluates the HTML that sets the color too slowly, so you only see
    the start and end points. I've tried on (load) and on (draw), and
    the text looks like it's taking a huge hop from starting point to
    ending point, instead of moving gracefully across the real estate
    (default is black, html makes it white).
    Any idea how I can get text to move, to format, to get its
    text at startup and still look like and act like it's the text on
    top of a button?
    I'd very much appreciate any help!
    Thank you. Sign me stymied! :-)
    Alan Arthur Katz

    Problem 1 and 2: Set the textfields to not be selectable in
    the Properties panel. If that's not a solution, say a little more
    about how you have it pieced together.

  • The footer(Static Text) is getting overlapped on graph in OBIEE11g

    Hi all,
    Im using OBIEE11.1.1.6.0. when export a report into excel footer(static text) is getting overlapped on the graph.
    Some reports was exporting fine..bust most reports do not.
    How can fix this error..Pls help me.
    Rehargs
    944656
    Edited by: 944656 on Feb 6, 2013 10:52 PM
    Edited by: 944656 on Feb 18, 2013 5:18 AM

    Can u share the screen shot of this?

  • Static text in ALV Report

    Hi,
    I have a requirement to create an ALV report which has to display some static text on each page. In the format below, the line item texts and sub total texts will be the same for each page. Each page displays data for one company code. The company code should be displayed on the top of page.
    Line Items    Sub totals          Amounts
    Line item 1                              Amt1
    Line item 2                              Amt2
    Line item 3                              Amt3
                            Sub total          1-3
    Line item 4                              Amt4
    Line item 5                              Amt5
                            Sub total        1-5           
                                                 Total
    1. How to display the same item texts on each page? Can I use text symbols to avoid hard coding?
    2. How do I get sub totals?
    3. Display company code on top of page according to the viewed page?
    any sample code greatly appreciated.
    Thanks,
    MJ

    Hi,
    I have a requirement to create an ALV report which has to display some static text on each page. In the format below, the line item texts and sub total texts will be the same for each page. Each page displays data for one company code. The company code should be displayed on the top of page.
    Line Items                       Amounts
    Line item 1                        Amt1
    Line item 2                        Amt2
    Line item 3                        Amt3
    Sub total                             1-3
    Line item 4                         Amt4
    Line item 5                         Amt5
    Sub total                            1-5           
       Total                               1-5
    1. How to display the same item texts on each page? Can I use text symbols to avoid hard coding?
    2. How do I get sub totals?
    3. Display company code on top of page according to the viewed page?
    any sample code greatly appreciated.
    Thanks,
    MJ

  • Displaying user selection from drop down list in static text on master page

    Hello,
    I am using LC 7.0 at workk and I have hit a road block.
    I have a drop down list at the top of the form. Once the user makes a selection, I want to take that value and paste it in static text located on the master page. I can't seem to get it to work.
    Please help!!!

    Hi,
    Place the Drop Down list on form
    Place text object(s) on master page
    here is the script to display the value and/or text of drop down
    Script will be on Drop Down list events
    Calculate event to display value of DD - FormCalc
    form1.pageSet.Page1.StaticText1.rawValue = this.rawValue;
    Change event to display Text of DD - JavaScript
    form1.pageSet.Page1.StaticText2.rawValue = xfa.event.newText;
    SAVE the form as dynamic pdf.
    Hope this will help.
    Thanks,
    Raghu.

  • Copy static text from one MIF documents to other MIF document

    Hi All,
    I'm trying to copy the text frames and their contents from one document to other document.
    I"m following the bellow steps..!
    1. Open Template1.mif by F_ApiSimpleOpen()
    2. Create new document called "Template2.mif" using "F_ApiCustomDoc"
    3. Import the required formats by
    F_ApiSimpleImportFormats(Template2,Template1,FF_UFF_COLOR |FF_UFF_COMBINED_FONTS |FF_UFF_COND |FF_UFF_DOCUMENT_PROPS |FF_UFF_FONT |FF_UFF_MATH |FF_UFF_PAGE |FF_UFF_PGF |FF_UFF_TABLE |FF_UFF_VAR))
    4. Read the text frames from "Template1" and create new text frame in Template2
         pgfId = F_ApiGetId(FV_SessionId, Template1, FP_FirstFlowInDoc);
         while (pgfid) {
         //     create a new text frame in Template2
              tFrameId = F_ApiNewGraphicObject(Template2, FO_TextFrame, pFrameId);
              objGraphicId = F_ApiGetId(Template1, pgfId, FP_FirstTextFrameInFlow);
         //assigning the properties of text frames
              propspdf = F_ApiGetProps(docIdfrom, objGraphicId);
              F_ApiSetProps(docIdto, tFrameId,&propspdf);
    Till this step, it is working as expected.
    Next I need to read the paragraphs of each text frame and put only static text available in the TEXT FRAMES OF Template1 in newly crated TEXT FRAMES of Template2. But ignore the variables in the text frames.
    I tried to work with the following piece of code
         doc2PgfId = F_ApiGetId(docIdfrom, objGraphicId, FP_FirstPgf);
         doc1PgfId = F_ApiGetId(docIdto, tFrameId, FP_FirstPgf);
         while (doc2PgfId && doc1PgfId)
                   F_ApiDeallocatePropVals(&propspdf);
                   tispdf = F_ApiGetText(docIdfrom, doc2PgfId, FTI_String|FTI_PgfBegin|FTI_PgfEnd);
                   tisspdf = F_ApiGetText(docIdto, doc1PgfId, FTI_String);
                   n=tispdf.len;
                   n1=tisspdf.len;
                   for(i=0; i<tispdf.len;i++){
                         ti = &tispdf.val[i];
                         tiT = &tisspdf.val[i];
                         //compare the text type and handle each text item appropriately
                         switch(ti->dataType){
                         //handle normal free flowing text
                          case(FTI_String):
                           //F_ApiAlert("In String", FF_ALERT_CONTINUE_NOTE);
                           tr.beg.objId = pgfId;
                           tr.beg.offset = ti->offset;
                           trT.beg.objId = tr.beg.objId;
                           trT.beg.offset = tr.beg.offset;
                        F_ApiDeallocatePropVals(&props);
                        props = F_ApiGetTextProps(docIdfrom, &tr.beg);
                        F_ApiSetTextProps(docIdto, &trT.beg,&props);
                        name1=(StringT)ti->u.sdata;
                        textLoc=F_ApiAddText(docIdto, &trT.beg,name1);
            //textLoc.objId = pgfId1;
            //textLoc.offset = textLoc.offset;
            //if the text string is a part of a variable then
            //it would have been taken care of so ignore it
            break;
           case(FTI_PgfBegin):
                      pgfId = ti->u.idata;
                      pgfId1 = tiT->u.idata;
                      propspdf = F_ApiGetProps(docIdfrom, pgfId);
                      F_ApiSetProps(docIdto, pgfId1,&propspdf);
                       break;
           case(FTI_PgfEnd):
                 pgfId = 0;
                 pgfId1= 0;
                 textLoc.offset=0;
                 bPgfalive = False;
                 break;
         //Get ID of next pgf in frame
    where am I going wrong? Is there any simple way of doing it?
    How do I go ahead with this? Please help..!
    Thanks,
    Basav

    Hi Michael,
    Thanks for quick reply..!
    There was a piece of code which validates whether the text frame I needed exists or not. I intentionally removed so as to not to confuse the reader.
    Let me give you a clear picture that what I want to do..!
    I've a MIF file and XML file that has the details of text frames and its contents in the MIF. XML looks like
    <?xml version="1.0" encoding="UTF-8"?>
    <MyProjectXML>
    <TextFrame frame="fr18111dd"><P>Basava</P></TextFrame>
    <TextFrame frame="fr224362cc"><P>Prabhu</P></TextFrame>
    <TextFrame frame="fr2547"><P>5 Year Performance (US Dollar)</P></TextFrame>
    </MyProjectXML>
    My MIF file has more than 50  named text frames. Some of them are in XML file, like - fr18111dd, fr224362cc,fr2547. These text frames have the static text,variables and tables. [ Tables I've kept it aside to work later for now]
    What I need -
    Need a MIF file that has frames available in XML file and replace the variables with the values given in <P> tag and keep the static text as it is.
    I'm trying the other way now, Open the MIF file and delete all the text frames except the frames mentioned in the XML file and save as new file.
    Let me know if I'm doing anything wrong here..! That will save my time and effort.
    Am I clear on my query? and what I wanted to achive ? Let me know otherwise..!
    Thanks,
    Basav

  • Xfa.host.setfocus -- to an object e.g. picture or static text etc?

    I can get the setfocus to target another input field - but can work out how (or if it can) to get it to focus the screen to an image or static text component.
    The path selecton tool in the script panel just stays that impassive red circle
    issue arises as selections from radio group opens largish subform with focus set to it's first field - and given layout radio list is lost out the top of the screen (as it were) so we put in a "made the wrong choice? click here to go back" style of button on the top of each subform -
    as the radio button selection displays the subfields using the radiobuttons as the target does not work (get into an event loop)
    so we need something else to target off the go back - i was hoping the title graphic image or static text but cant work it out
    i though the documentation said focus could do images but i cant get it to,
    thanks for any pointers/code line

    Hi,
    I don't think you can focus on static objects (static text, static images).
    I think the down and dirty workaround is your best option. Maybe make the button very small (0.01in) and you can always place a static image (icon) over it to mask the button.
    N.

  • Static Text in flash 8 disappears

    Here's a weird one for you. I have a site built in flash 8
    with some static
    text in there. It's in Verdana, no Kern set on it and is
    Anti-Aliased for
    animation, whilst this appears to work on every test machine
    and clients
    machines we've had reports from 2 users that the Static text
    doesn't appear
    at all. None of the text is sitting under masks or any other
    object, the
    dynamic text appears to be displaying just fine. They've
    installed the
    latest flash version and are running on IE6.
    I've searched through google groups and have found a couple
    of things that
    sound similar but it appears that they just changed the text
    to use the
    device fonts. I really don't want to have to do that if I can
    help it,
    especially as this in theory should be working. Anyone else
    had a problem
    like this, is there a bug in Flash for certain
    configurations?
    Thanks
    James

    Hey Tom,
    No, I understand what you're saying. Originally, I did embed
    the non-system font and used it on all of my static text. It worked
    great for me in both IE and Firefox, both local and live. However,
    my clients weren't getting any text at all and I have no idea why
    (they tried it on both IE and Firefox). I'm not sure what the
    differences in our browsers are as they are the same versions.
    Maybe they have special settings set up?
    As an experiment, I'm going through and changing my static
    text from the embedded font to a system font. I did one section of
    the site, made it live, and asked the client to test and see if
    they could see text. They said they could. So, for some reason
    their browsers aren't liking the original embedded font I used. As
    I said in an earlier post, I know my original font embed worked
    because I tested it on a computer that didn't have the font
    installed. So, I don't know where the problem lies for the client.
    The client has an important meeting in 2 weeks and needs to
    present what I've made so far. So, until I can figure out what's
    going on with the client's browsers, I'm opting to change the font
    over to a system font and do away with the embedded font for the
    time being.
    However, you said:
    quote:
    If the text field is static, you need do nothing more than
    choose a non-device font.
    Do you mean I don't need to embed a font for static
    text?

  • Howto add static text in xsl stylesheet

    Hi,
    I'am having problems trying to write a static text to a fixed length file using the file adapter.
    I'am using the FlatStructure sample provided.
    When I run the sample, there's no problem... But when I remove the mapping from tns:State <-> fix:State (in addr1Toaddr2.xsl) and change the fix:State to a static text (Set Text option in right mouse popup menu) then this text will NOT show up in the written fixed length file.
    My addr1Toaddr2.xsl looks like this:
    <?xml version="1.0" encoding="windows-1252"?>
    <?oracle-xsl-mapper
    <!-- SPECIFICATION OF MAP SOURCES AND TARGETS, DO NOT MODIFY. -->
    <mapSources>
    <source type="XSD">
    <schema location="file://D:/OraBPELPM_2/integration/bpelpm/orabpel/samples/tutorials/121.FileAdapter/FlatStructure/address-csv.xsd"/>
    <rootElement name="Root-Element" namespace="http://xmlns.oracle.com/pcbpel/demoSchema/csv"/>
    </source>
    </mapSources>
    <mapTargets>
    <target type="XSD">
    <schema location="file://D:/OraBPELPM_2/integration/bpelpm/orabpel/samples/tutorials/121.FileAdapter/FlatStructure/address-fixedLength.xsd"/>
    <rootElement name="Root-Element" namespace="http://xmlns.oracle.com/pcbpel/demoSchema/fixedLength"/>
    </target>
    </mapTargets>
    <!-- GENERATED BY ORACLE XSL MAPPER 1.0 AT [WED MAY 18 11:29:24 CEST 2005]. -->
    ?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://xmlns.oracle.com/pcbpel/demoSchema/csv" xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd" xmlns:fix="http://xmlns.oracle.com/pcbpel/demoSchema/fixedLength" xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap" xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20" xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" xmlns:ora="http://schemas.oracle.com/xpath/extension" xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc" exclude-result-prefixes="xsl xsd tns nxsd fix ldap xp20 bpws ora orcl">
    <xsl:template match="/">
    <fix:Root-Element>
    <xsl:for-each select="/tns:Root-Element/tns:Address">
    <fix:Address>
    <fix:Name>
    <xsl:value-of select="tns:Name"/>
    </fix:Name>
    <fix:Street>
    <xsl:value-of select="concat(tns:Street1,' ',tns:Street2)"/>
    </fix:Street>
    <fix:City>
    <xsl:value-of select="string('C2345678901')"/>
    </fix:City>
    <fix:State>
    <xsl:text disable-output-escaping="no">D2345678901
    </xsl:text>
    </fix:State>
    <fix:Country>
    <xsl:value-of select="string('E234567')"/>
    </fix:Country>
    </fix:Address>
    </xsl:for-each>
    </fix:Root-Element>
    </xsl:template>
    </xsl:stylesheet>
    Note:
    The construct "<xsl:value-of select="string('E234567')"/>" is my 'patch'to write a static text.
    Can you tell me what I'am doing wrong? Or is this a bug...
    greetings,
    Jan.

    Hi ,
    I am assuming you are using Oracle JDeveloper XSL Mapper for designing the XSL. Currently , our XSL Mapper has a limitation due to that whenever you add any static text to target node in mapper, it adds an extra "\n" with that static text. And so our Native format translator doesn't find the definition for that and that's why it doesn't get printed in the file.
    Workaround [although little painful] is remove those extra "\n" after you finish your XSL design.
    We are working to fix this issue asap.
    HTH.
    Thanks,
    Rakesh

  • Query on static text files upload ? Please reply

    Hi all,
    We have some doubts in uploading static text files in RAR 5.3 version. Can anybody please clarify at the earliest?
    1) Can we prepare the SoD rule set in the static text files (as provided by SAP during installation)
    till Action (t- code) level conflicts and upload the same. After that cam we add/change the
    authorization objects manually as per the business requirement? Whether this is possible?
    Does a small SPACE in the text file will impact the rule set uploading?
    2) If we are configuring the rule set manually i.e when we are assigning t-codes to the functions,
    we believe the authorization objects will gets picked up automatically from the back end system for that particular t-code and the object values can be edited as per the SoDs of the business requirement? Is our understanding correct?
    If this is true, refer to question 1 whether we will get the authorization objects in case of
    uploading the text files (Business process, Funcitons, rule set,action level) only at action
    level?
    3) Once if we have used the text files for uploading the rule set can we edit them manually i..e disabling the t-codes from function, deleting the risk ids etc.,. ORELSE even the changes has to be made in the text files and upload again replacing the existing rule set whenever there are changes in the SoD rule set?
    Thanks and Best Regards,
    Srihari.K

    Dear Srihari,
    1) Can we prepare the SoD rule set in the static text files (as provided by SAP during installation)
    till Action (t- code) level conflicts and upload the same. After that cam we add/change the
    authorization objects manually as per the business requirement? Whether this is possible?
    Ans - Theoratically we can prepare our own text files in the same format as provided by SAP. Till action level it is not so difficult. Difficulty rises when we create permission files. This is near to impossible to create exact copy of SPA authorization objects and values due to human error. So it is advisable to upload SAP standard for sap specific analysis and at the same time we can keep org levle ruleset and risks. We do it by doing it in GRC manually( Create business process, function id, risks and generate rul sets) - that is better practice.
    Does a small SPACE in the text file will impact the rule set uploading?
    2) If we are configuring the rule set manually i.e when we are assigning t-codes to the functions,
    we believe the authorization objects will gets picked up automatically from the back end system for that particular t-code and the object values can be edited as per the SoDs of the business requirement? Is our understanding correct?
    If this is true, refer to question 1 whether we will get the authorization objects in case of
    uploading the text files (Business process, Funcitons, rule set,action level) only at action
    level?
    Ans - As far I know the text file should be in exact format if we want to create custom files.
    3) Once if we have used the text files for uploading the rule set can we edit them manually i..e disabling the t-codes from function, deleting the risk ids etc.,. ORELSE even the changes has to be made in the text files and upload again replacing the existing rule set whenever there are changes in the SoD rule set?
    We have to change it in GRC manually.
    From your question what I could get is that you want to do it according to your business scenario. Better if you collect data(as you will even do in case of text files) and configure it manually.
    Regards,
    Sabita Das

  • Which java keyword cannot be used inside the body of a static method?

    Which java keyword cannot be used inside the body of a static method, but may be used without problems in a non-static method?

    But javac doesn't complain. So I was not partially wrong -- I was completely wrong.It's still better not to use the "this", though. When you explictly reference a static member via an instance reference (theFoo.bar or this.bar, as opposed to Foo.bar) the JLS requires a check that the reference is non-null. Clearly "this" is always non-null, but javac still puts in half of the check. Take the simple class public class Test {
        static int field;
        public void setField(int i) {this.field=i;}
        public void staticSetField(int i) {field=i;}
    } and observe the bytecodes produced: $ javap -c Test
    Compiled from "Test.java"
    public class Test extends java.lang.Object{
    static int field;
    public Test();
      Code:
       0:   aload_0
       1:   invokespecial   #1; //Method java/lang/Object."<init>":()V
       4:   return
    public void setField(int);
      Code:
       0:   aload_0
       1:   pop
       2:   iload_1
       3:   putstatic       #2; //Field field:I
       6:   return
    public void staticSetField(int);
      Code:
       0:   iload_1
       1:   putstatic       #2; //Field field:I
       4:   return
    }The JIT will get rid of it, but you may as well avoid the waste in the first place. (And if you really do want to check that the reference is non-null, do the check explicitly so that maintainers know it's intentional).

  • [OBIEE 11g]Can "Static Text" use parameter like "Narrative"?

    We need to add some notes to a report and need get text from one column of result. I know we can use @1 to get the 1st column in Narrative, but in Static Text it fails. Does Static Text support that?
    We need this because in 11g, "HTML markup" broken in Narrative.

    Hi,
    No it will not support.Even in 10g we cannot show column values using @columnnumber or @{presentationvariable} in static text.
    Narrative view support sin both versions.
    Regards,
    Srikanth

  • Branding and static text in detail nav.

    I have a requirement to add some static text at the bottom of the detailed navigation in the portal.  I accomplished this by creating a static HTML page in KM, creating an iView that points to that document, and assigning that iView to the Detailed Navigation of my page.  The problem is, the role that contains this will be widely assigned across the company, which means it will fall under several different brands.  No single background color of the static HTML would look good across all brands, so I'm not sure what to do.
    First of all, is this the proper way to get the text there?  Secondly, what do I need to do to solve the branding issue?

    Hi Kevin,
    You can use dynamic navigation iviews for the purpose.
    Create an iview with the text you want to display below detailed navigation.
    Then add this iview to dynamic navigation area of the page.
    (For Assigning Dynamic Navigation iViews check the below link)
    Now when that page is shown in the portal,the associated dynamic navigation iview content
    (i.e, ur static text)will be seen in the navigation panel(below detailed navigation).
    Hope it is clear.For more info check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/32/66c53e5ae84d3be10000000a11405a/frameset.htm
    Regards,
    Santhosh

Maybe you are looking for

  • SetStringProperty in JMS receiver adapter doesn't work

    I want to set a property in the RFH2-header to my MQ-message but it doesn't work. I try to do this by setting the additional JMS Parameter "JMS.Message.method.setStringProperty" but nothing happens in the resulting MQ-message. The resulting MQ-messag

  • BT Infinity - service degraded following outage. ...

    Dear All I experienced an outage on Sunday lasting from sometime on Sunday afternoon all the way through until the early hours of Monday morning.  Flashing orange light on BT Home Hub 5 router. Prior to last Sunday - my download speed was 41Mb and my

  • Syncing photos from 2 computers

    From a 24" iMac i have synced photos in a folder to ATV. Now i would like to sync photos from Aperture to ATV from a second computer, a MacBook Pro. However, i cannot even find how to sync any photos from the second computer. Both OSX and iTunes are

  • How can I edit a website that someone else did with iWeb?

    A friend of mine she has a website that her ex-husband did with iWeb. Now she wants me to edit it. How can I do this in iWeb?

  • Keychain access - deny

    When I checked the "Show password" box for one thing listed in my Keychain access, I accidentally selected "Deny" and now it won't show me the password.   Is there a way I can undo this? Thanks