Modify style elements ...

hi,
I'd ideally like to modify a style -
(a) to rename - e.g. Heading1 to HeadlineCopyText
(b) to add more elements
any ideas on if this is possible?
clearly would require modify db table content - is this
possible for a single style?
thanks
kev

You can define your own styles and override the Portal styles by using the unstructured UI template feature. The names and element list of the Portal styles cannot be modified.
Regards,
Jerry
PortalPM

Similar Messages

  • SSI Validation Error: doc type does not allow styles element in body of page

    When I validate my index page with wc.org, I get 2 errors regarding having styles elements h1-h6 in the body vs the head of the page.  My Nav and Footer are SSIs and I have used styles h1-h6 on them.
    Q.  Should I delete the h1-h6 styles from the beginning code of the Nav.htm and Footer.htm?
    Q.  If I delete that code, will they use the styles.css inserted in the head code of each pate?
    Thanks.

    The problem is this block of code belongs in the Head of yoru page, not in a TD  in the Body!  And you also have it below in the Footer.  So now I understand better yoru 2 original quesitons.  Yes, but htis code only in the Head of the page and it will work for the entire page, even for html inserted via Includes.  So remove this style block from all yoru Includes unless some fo them are designed to write into the Head of the page only.
    <style type="text/css">
    <!--
    h1 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-weight: bold;
         color: #008000;
    h2 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-style: italic;
         font-weight: bold;
         color: #E3372E;
    h3 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-weight: bold;
         color: #AB003C;
    h4 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 16px;
         font-style: italic;
         font-weight: bold;
         color: #E62B86;
    h5 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 14px;
         font-style: italic;
         font-weight: bolder;
         color: #E3372E;
    h6 {
         font-family: Arial, Helvetica, sans-serif;
         font-size: 18px;
         font-weight: bold;
         color: #AB003C;
    -->
    </style>
    Or even better would be to put this into an external style sheet that
    all your pages can call (not the Includes, just the "real" pages!
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Modify Style on Custom Attributes

    I have several custom attributes defined in a page group. I would like to be able to specify the font, color, etc for these custom attributes.
    Therefore, I created a new style in the same page group and did the following:
    1) Go into Navigator and select edit next to the new style
    2) Go to the 'Properties' tab
    3) Select 'Items' under Style Element Type
    4) Select any of the custom attributes in the Style Elements Properties box.
    Unfortunately, at this point I get no options such as font, color, etc. There is only the color selector grid and an 'Apply' button.
    I believe I should be able to edit the style for a custom attribute. Is this a bug, "feature", or operator error?

    I haven't seen this problem before. You should get fields for Color, Font Decoration, Font Face, Font Size, and Font Style. (I'm assuming you're using Portal Release 2).
    Please report the problem to Oracle Support.
    Regards,
    Jerry
    PortalPM

  • Style Elements - defining your own ?

    hi,
    I have a list of typography elements to define styles
    for - can map most to 'heading1', 'heading2', 'Portlet
    Header', etc. style elements in the portal style.
    however, to make more meaningful names for our site -
    e.g. 'Content Header', 'copy text' etc - would be
    useful to define our own style elements (while still
    utilising the portal's 'edit style' page - don't want
    to have to resort to our own css style sheets).
    I have used item attributes to force new elements on
    the Item Element Type - and this will work (exposes
    our own defined style elements in the style sheet, and
    allows our own naming system).
    question is - are there any other ways of achieving
    this? has anyone else done something similar?
    also - can we rename 'heading1','heading2' etc to
    our own more meaningful names?
    also - anyone else think it would be useful to be
    able to specify pixels as well as point for font
    size?
    thanks
    kev

    That has nothing to due with C's enum construct.
    No there isn't. I think it will be in the next
    version.
    Have a look here how to make one:
    http://developer.java.sun.com/developer/Books/effective
    ava/Chapter5.pdfic, so iz it something like generics?

  • How to modify array elements from a separate class?

    I am trying to modify array elements in a class which populates these fields by reading in a text file. I have got mutator methods to modify the array elements and they work fine in the same class.
    public class Outlet {
         private Outlet[] outlet;
         private String outletName;
         private int phoneNumber;
         private int category;
         private int operatingDays;
    static final int DEFAULT = 99;
         public void setPhoneNumber(int newPhoneNumber) {
              phoneNumber = newPhoneNumber;
         public void setCategory(int newCategory) {
              category = newCategory;
         public void setOperatingDays(int newOperatingDays) {
              operatingDays = newOperatingDays;
    public static void readFile(Outlet[] outlet) throws FileNotFoundException {
              Scanner inFile = new Scanner(new FileReader("outlets.txt"));
              int rowNo = 0;
              int i = 0;
              String outletValue;
              while (inFile.hasNext() && rowNo < MAXOUTLETS) {
                   outlet[rowNo] = new Outlet();
                   outletValue = inFile.nextLine();
                   outlet[rowNo].setOutletName(outletValue.toUpperCase());
                   outlet[rowNo].setPhoneNumber(DEFAULT);
                   outlet[rowNo].setCategory(DEFAULT);
                   outlet[rowNo].setOperatingDays(DEFAULT);
              inFile.close();
         public static void displayUnassignedOutlets(Outlet[] outlet) {
              int i = 0;
              System.out.println("Showing all unassigned Outlets");
              System.out.println(STARS);
              for (i = 0; i < MAXOUTLETS; i++ ) {
                   if (outlet.getCategory() == DEFAULT) {
                   System.out.println("\nOutlet Number: " + (i + 1) + "\t" +
                             outlet[i].getOutletName());
    Now in the other class that I want to modify the array elements I use the following code but I get an error that "The expression type must be an array but a Class ' Outlet' is resolved".
    So how can I modify the array elements? What do I have to instantiate to get the following code to work?
    public class Franchise {
         private Franchise[] franchise;
         public Outlet[] outlet;
         public static void createFranchise(Franchise[] franchise) throws FileNotFoundException {
              Scanner console = new Scanner(System.in);
              int choice = -1;
    ++++++++++++++++++++++++++++++++++++
              Outlet outlet = new Outlet();
              Outlet.readFile(outlet.getOutlet());
    ++++++++++++++++++++++++++++++++++++
              boolean invalidChoice = true;
              while (invalidChoice) {
              System.out.println("\nCreating a New Franchise...");
              System.out.println(STARS);
              System.out.println("Please select an outlet from the list below");
              Outlet.displayUnassignedOutlets(outlet.getOutlet());
              choice = console.nextInt();
              if (choice < 0 || choice > 10) {
                   System.out.println("Error! Please choose a single number between 1 and 10");               
              else {
                   invalidChoice = false;
              invalidChoice = true;
              while (invalidChoice) {
                   System.out.println("Please enter the Phone Number for this Outlet");
                   choice = console.nextInt();
                   String phone = new String();
              phone = new Integer(choice).toString();
                   if (phone.length() < 8 || phone.length() > 10) {
                        System.out.println("Error! Please enter 8 to 10 digits only");
                   else {
    +++++++++++++++++++++++++++++++++++++++
                        outlet[(choice - 1)].setPhoneNumber(choice);
    +++++++++++++++++++++++++++++++++++++++
                        invalidChoice = false;

    Hi Pete!
    Thanks for your comments. I have included my full classes below with their respective driver modules. Hope this helps out a bit more using the code tags. Sorry, it was my first posting. Thanks for the heads up!
    import java.util.*;
    import java.io.*;
    public class Outlet {
         public Outlet[] outlet;
         private String outletName;
         private int phoneNumber;
         private int category;
         private int operatingDays;
    //     private Applicant chosenApplicant;
         static boolean SHOWDETAILS = false;
         static final String STARS = "****************************************";
         static final int MAXOUTLETS = 10;
         static final int DEFAULT = 99;
         public Outlet[] getOutlet() {
              return outlet;
         public String getOutletName() {
              return outletName;
         public int getPhoneNumber() {
              return phoneNumber;
         public int getCategory() {
              return category;
         public int getOperatingDays() {
              return operatingDays;
         public void setOutletName(String newOutletName) {
              outletName = newOutletName;
         public void setPhoneNumber(int newPhoneNumber) {
              phoneNumber = newPhoneNumber;
         public void setCategory(int newCategory) {
              category = newCategory;
         public void setOperatingDays(int newOperatingDays) {
              operatingDays = newOperatingDays;
         public Outlet() {
              outlet = new Outlet[10];
         public static void readFile(Outlet[] outlet) throws FileNotFoundException {
              Scanner inFile = new Scanner(new FileReader("outlets.txt"));
              int rowNo = 0;
              int i = 0;
              String outletValue;
              while (inFile.hasNext() && rowNo < MAXOUTLETS) {
                   outlet[rowNo] = new Outlet();
                   outletValue = inFile.nextLine();
                   outlet[rowNo].setOutletName(outletValue.toUpperCase());
                   //System.out.println(rowNo % 2);
              //     if (rowNo % 2 == 0) {
                   outlet[rowNo].setPhoneNumber(DEFAULT);
                   outlet[rowNo].setCategory(DEFAULT);
                   outlet[rowNo].setOperatingDays(DEFAULT);
    //               System.out.println("Outlet Name+++++++  " + rowNo + "\n" + outlet[rowNo].getOutlet());               
                   rowNo++;
         //          System.out.println(rowNo);
              if (SHOWDETAILS) {
                   if (rowNo > 6) {
                        for (i = 0; i < rowNo; i++ ) {
                             System.out.println("\nOutlet Name+++++++  " + (i + 1) + "\t" +
                                       outlet.getOutletName());
              inFile.close();
         public static void displayAllOutlets(Outlet[] outlet) {
              int i = 0;
              System.out.println("Showing All Outlets");
              System.out.println(STARS);
              for (i = 0; i < MAXOUTLETS; i++ ) {
                   System.out.println("\nOutlet Number: " + (i + 1) + "\t" +
                             outlet[i].getOutletName());
         public static void displayUnassignedOutlets(Outlet[] outlet) {
              int i = 0;
              System.out.println("Showing all unassigned Outlets");
              System.out.println(STARS);
              for (i = 0; i < MAXOUTLETS; i++ ) {
                   if (outlet[i].getCategory() == DEFAULT) {
                   System.out.println("\nOutlet Number: " + (i + 1) + "\t" +
                             outlet[i].getOutletName());
         public static void main(String[] args) throws FileNotFoundException {
              Outlet start = new Outlet();
              Outlet.readFile(start.getOutlet());
              Outlet.displayUnassignedOutlets(start.getOutlet());
    ================================
    So in the below Franchise class, when I specify:
    outlet[(choice - 1)].setPhoneNumber(choice);
    I get the error that an array is required but the class Outlet is resolved. Any feedback is greatly appreciated!
    import java.io.FileNotFoundException;
    import java.io.PrintWriter;
    import java.util.*;
    public class Franchise {
         private Franchise[] franchise;
         public Outlet[] outlet;
         static final int MAXOUTLETS = 10;
         static final int DEFAULT = 99;
         static boolean SHOWDETAILS = false;
         static final String STARS = "****************************************";
         static final double REGHOTDOG = 2.50;
         static final double LARGEHOTDOG = 4;
         static final int SALESPERIOD = 28;
         static final int OPERATINGHOURS = 8;
         public Franchise[] getFranchise() {
              return franchise;
         public Franchise() {
         public static void createFranchise(Franchise[] franchise) throws FileNotFoundException {
              Scanner console = new Scanner(System.in);
              int choice = -1;
              //franchise[i] = new Franchise();
              Outlet outlet = new Outlet();
              //outlet[i] = new Franchise();
              Outlet[] myOutlet = new Outlet[10];
              Outlet.readFile(outlet.getOutlet());
              boolean invalidChoice = true;
              while (invalidChoice) {
              System.out.println("\nCreating a New Franchise...");
              System.out.println(STARS);
              System.out.println("Please select an outlet from the list below");
              Outlet.displayUnassignedOutlets(outlet.getOutlet());
              choice = console.nextInt();
              if (choice < 0 || choice > 10) {
                   System.out.println("Error! Please choose a single number between 1 and 10");               
              else {
                   invalidChoice = false;
              //System.out.println(j);
              invalidChoice = true;
              while (invalidChoice) {
                   System.out.println("Please enter the Phone Number for this Outlet");
                   choice = console.nextInt();
                   String phone = new String();
                  phone = new Integer(choice).toString();
                   if (phone.length() < 8 || phone.length() > 10) {
                        System.out.println("Error! Please enter 8 to 10 digits only");
                   else {
                        outlet[(choice - 1)].setPhoneNumber(choice);
                        invalidChoice = false;
              invalidChoice = true;
              while (invalidChoice) {
                   System.out.println("Please enter the category number for this Outlet");
                   choice = console.nextInt();
                   if (choice < 1 || choice > 4) {
                        System.out.println("Error! Please choose a single number between 1 and 4");
                   else {
                        outlet.setCategory(choice);
                        invalidChoice = false;
              invalidChoice = true;
              while (invalidChoice) {
                   System.out.println("Please enter the Operating Days for this Outlet");
                   choice = console.nextInt();
                   if (choice < 5 || choice > 7) {
                        System.out.println("Error! Please choose a single number between 5 and 7");
                   else {
                        outlet.setOperatingDays(choice);
                        invalidChoice = false;
    //          Applicant chosenApplicant = new Applicant();
         //     Applicant.readFile(chosenApplicant.getApplicant());
              //Applicant.checkCriteria(chosenApplicant.getApplicant());
         //     System.out.println("This Franchise has been assigned to : " +
              //          chosenApplicant.displayOneEligibleApplicant());
              Outlet.displayUnassignedOutlets(outlet.getOutlet());
         public static void main(String[] args) throws FileNotFoundException {
              Franchise start = new Franchise();
              Franchise.testing(start.getFranchise());
              //Franchise.createFranchise(start.getFranchise());
              //Franchise.displaySalesForcast();
              //Franchise.displayAllFranchises(start.getOutlet());

  • How do I programmat​ically modify array element sizes?

    Hi All,
    I have a quick question about modifying the size of array elements. Hopefully someone can help, because I am at a dead end!
    I am logging some intensities from a Fibre Array using a camera. For calibration of the system, I acquire an image from the camera, click points on the image to divide it into areas of interest. I overlay my image with a grid showing the regions of interst - for example a 4x6 array. I then have to select the fibres - or ROIs - I want to log from.
    I have a cluster type-def ( a number and a boolean) to specify the fibre number and to turn logging from that fibre on/off. I overlay an (transparent) array of this typedef over my image to correspond with the regions of interest. So here's my problem - I want to modify the dimensions of the array so each control matches my ROI. I can resize the elements by rightclicking on the elements on the frontpanel, but can't find a way to do it programmatically. The Array Property Node>>Array Element>>Bounds won't 'change to write'...thats the first thing I tried.
    Its really only important that the elements align with my ROIs - so programmatically adding in gaps/spacings would also work for me...but again I can't figure out how to do this! I've attached a screenshot of part of my image with array overlaid to show you all exactly what my problem is.
    Thanks in advance for you help,
    Dave
    PS I am running Labview 8.6 without the vision add on.
    Solved!
    Go to Solution.
    Attachments:
    Array_Overlay.png ‏419 KB

    Here's my cheat (and cheap?) way If you want to get fancy and center the numeric and boolean indicators, you could add spacers on the north and west sides, too.
    Attachments:
    ClusterSpacer.vi ‏13 KB

  • Force modified style be applied to previously created docx files as well

    Hi friends
    new to word.
    i have about 30 .docx documents.
    inside one of them, i selected a word which it's font is bold & is red & then i goto styles and right click on Heading1 and click on "update heading1 to match selection"
    then i right click on heading1 and selected modify and in opened box, i selected following two options.
    but the problem is , when i open any other .docx documents which i had previously created, the Heading1 style is default settings & is not what i modified, so i have to repeat modifying Heading1 style in all previously created docx files.
    any workaround?
    thanks in advanced

    You could use a Document_Open macro in the relevant template to do the updating next time the documents are opened. However, you probably wouldn't want that macro to run every time the (updated) documents are opened and it wouldn't update any that haven't
    been opened (meaning they'd still show the old Style if sent to someone whose system doesn't have your template available).
    The other option is to use a macro that loops though all the documents in one go to do the updating. The problem then becomes one of identifying which documents your template applies to, so as to not update others. If they're all in one folder, with no other
    documents, that's easy enough but, if they're scattered across multiple folders amongst many other documents, having to open & check perhaps thousands of files could take even a macro a long time to do all the processing. To get an idea of what's
    involved see, for example, the code I posted at:
    http://www.eileenslounge.com/viewtopic.php?f=26&t=14499#p107602. That macro simply updates template paths after a server change.
    Cheers
    Paul Edstein
    [MS MVP - Word]
    that's great, thanks a lot. really helped me.

  • Need to replace/modify an element attribute

    Hi,
    I need to read an XML file and modify the value of an XML element attribute and write the modified element back to the file. This element is two levels deep in the heirarchy,
    currently i am reading all the children and modifying the value of this particular attribue and writing all the children back.
    Does anybody know of a method where we can do a replace operation on the Document rather than the lengthy process that i am currrently using??
    Thanks

    you might want to look at STX streaming transforms-
    http://www.xml.com/pub/a/2003/02/26/stx.html
    That seems a good match for a simple replace problem.
    Pete

  • Modify Transition element in work flow using for and not attributes to restrict access

    Hi,
    I have TFS 2013 for my premises and I am working on changing the work flow for TFS work item. I have created a work item as per requirement and it has 3 states
    Active, In Review and Closed in work flow. When developer creates a work item it is in Active state and later it is sent to In Review and then to close after successful review.
    My question is I want development team to be restricted to move the work item to Close state. At present when developer creates a new work item they see Active state. At this point they can not see any other states in the work item. Later they
    fill the details and after checkin they will put that work item to In Review state. At this point they can see Active and In Review states. When they save this work item and modify it again they see Close state as well. I want to design the Transition element
    in work flow in such a way then developers should not be able to see the Close state at all in a work item assigned to them. Only reviewer should be able to transit the work item from In Review to Close.
    I checked the for and not attributes in the transition element but I have no idea about correct syntax I should use to enforce the restriction. I would also like to mention here that I have no separate groups defined in my TFS server. Every
    one is a part of contributor's group. There is no specific group of reviewers and one developer reviews the code of another. I want to design the work flow in such a way that the developer who creates (or gets assigned) the work item should
    not be able to put their own work item in Close state but they should be able to close another developer's work item if that work item has his name in the reviewer's box.
    I have tried to simplify my question by elaborating it hope it is not complex to understand. Let me know if you want further clarification on this.
    Regards, Premal Acharya

    Hi Premal,
    For your scenario, seems the "for" and "not" attributes not are unavailable to make it happens. Because of the developers not in groups, and the same type of work items can be assigned to all the developers hence the attributes cannot
    be allow and deny users in the groups concurrently. Please check the
    page for more information about transition xml element.
    Based on your situation, you can separate the development group and test group. Then you can only allow test group to change the state.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • CS5 file hanging CS6 when modifying styles

    Windows 7, InDesign CS6 8.01
    I was working on a file of about 91 pages with a lot of tables in CS5 last week. We just got updated to CS6 this week, and the file seemed to be working fine. I decided I wasn't happy with the look of the tables, so I went in to the table style, changed the colour of the row fills, and as soon as I clicked on "Preview" I got the spinning blue circle. Only way out was to end program.
    Since then I have tried the following:
    * Change colour without previewing (hangs)
    * Re-import CS5 document into CS6, try again (hangs)
    * Open file in CS5 on another computer (as it was uninstalled on mine) and try the same thing (fine)
    * Export it out to IDML from CS5, and import that into CS6 (fine). Try changing style (hangs)
    * Try changing the colour of a font in a paragraph style (hangs)
    * Try changing the font of a paragraph style (fine)
    * Open the CS6 document that was casuing all the trouble on another machine with CS6 (doesn't display, then hangs)
    * Open the CS5 IDML on the other computer (fine) then try the table style change (hangs)
    * On the original computer, re-import the table styles from a previous version (fine) then attempt change (hangs)
    * Duplicate the table style, change the colour in the style (fine, but not applied to anything), then delete original style, replacing with new one (hangs)
    I'm at a loss here, as my usual solution to weirdness is to go the IDML route as I thought that re-built the file anew. Doesn't seem to want to play along though.
    Any suggestions?

    Thanks for your reply Peter. I hadn't thought about the tagged text route, probably because I've never had a use for tagged text!
    I gave it a go, exporting the whole of the troublesome section as tagged text. Placing it back in to a new InDesign document with automatic text flow on, I got the same crash/spinny-wheel-causing-me-to-end-task. I tried it again, but this time turned off autoflow and did it page by page, noting the point that it would crash. Next time, I cut out the table that the crash would occur on when I got to it (the crash would happen as soon as I clicked the out port), pasted it on the side, made a note of where it went and continued to place the rest of the story without a hitch. I could change the table style in this document no problem.
    I pasted the troublesome table back in, tried to change the table style and got the crash. Right, getting somewhere.
    I opened up the previous template, and put back in the section that wasn't causing the problems (everything without the dodgy table). I could change the style fine. I then made a new document, and pasted only the bad table, figuring that it would crash when I went to change the style. However, I could change the table style just fine!
    So, figuring that it was all ok now, I copied the table, pasted it in with everything else, went to modify the style and... spinny ball.
    Finally, I converted the table to text, pasted it into the main document, and converted it back to a table. So far, so good. I'll update again if I run into any more problems.
    Realistically I could have set the thing again in the time it's taken me to troubleshoot this, but I'm a little scared that this happened at all with a document that works just fine in CS5!

  • DAV error while trying to modify an element with linked-image

    Hi,
    When I try to modify my item's image, I get the following error message :
    DAV: ORA-00001: violation de contrainte unique (PORTAL.WWDAV$PKPATH) (WWS-18026)
    Error in the API : Error while trying to update the element
    Anyone could help ?
    Thanks for your help,
    Best Regards,
    JC.Audard

    Welcome to the forums !
    Pl see if MOS Doc 360403.1 (Launcing Discoverer Plus Fails With Error "Oracle.Discoverer.Applications.Framework.Globalexceptionhandler.Execute Null" in Application.log File) is applicable in your case
    HTH
    Srini

  • 'Replace pages' not modifying form element positions - is there another way?

    PDF form design in InDesign, bring pdf into Acrobat to add field validation JS. All good.
    Modify form in InDesign, 'Replace pages' in Acrobat to get new design changes in without losing JS. 
    Good, except Acrobat won't bring across any altered positions of form elements, only non-form elements like text and images.
    Adding the JS to the PDF created by InDesign each time the form changes is time consuming.  Tried adding the JS in one go via "Edit All JavaScripts" but Acrobat won't retain. It seems to want each form field's JS added to it individually.
    Is there another way? Thanks.

    Gilad D (try67) wrote:
    That is exactly the point of the Replace Pages command. It replaces the underlying page while maintaining the objects on top of it in their place.
    If you want to insert a page with all of its objects in tact then you should delete the old page and then use the Insert From File command (under Tools - Pages) to add the new pages. I believe that will do what you're looking for.
    The 'Insert From File' I expected would lose any script I've applied to an element previously on the page, which would be totally understandable. I guess the form elements are in a tricky position, being both an intrinsic part of the design (InDesign) and Interactivity (Acrobat).

  • [newbie] Modifying Set elements

    Is it possible to modify elements inside a Set? Or is this something that should be avoided? I see that there is no set method in the interface.
    Thanks

    stefan.schulz wrote:
    cleanzero wrote:
    Is it possible to modify elements inside a Set? Or is this something that should be avoided? I see that there is no set method in the interface.It might be a good idea to remove an element from a Set before modifying it and add it again afterwards. Usually, hashCode() and equals() are used by a Set implementation to store an element for quick access (e.g., when invoking contains()). If either value changes, the Set might not be able to find the element although it's still in the set.Thanks Stefan,
    your answers are always really helpful.

  • Modify an element's key fields

    Hello,
    Before relaunching the wf, I need to set an element of type Image (ArchiveLink) to a value specified by the user (actually, I ask the user to fill the two key fields of this object type, through a popup window). So, the relaunched wf will have this element set to the new value.
    How can I modify these fields? Is this approach right?
    I appreciate your suggestions.
    Regards,
    Ivson

    Hallo,
    it is possible to change the key just try to use if you have for example a key with length 10 (you need to modify depending on your needs - object key and popup to read the new values:
    1.
    BEGIN_METHOD MODIFYOBJECTKEY CHANGING CONTAINER.                    
      object-key-number = '0000000009'.               
      swc_set_objectkey object-key.
    END_METHOD.         
    2. the other option would be SWW_OBJKEY_CHANGE
    Best Regards
    Tibor

  • Enhancement request: modifiable style for report highlighting

    Dear Apex Developers,
    I have investigated the way highlighting is done in reports. What I found is, that a span container is put around the text to be highlighted with the style attributes colr:red; font-weight:bold;.
    The red characters do not fit with the template I am using right now and I would like to change this to another color. I have found a solution, which locates all the spans within a page which have those particular style settings, but this doesnot function well with PPR.
    Anyway Javascript is not my favorite tool to solve these kind of problems, certainly not when the solution can be very simple.
    I would propose to use a class in Apex to highlight the matches with the search item. That way the class can be redefined using regular CSS mechanisms and no Javascript is needed.
    How about it? An enhancement for Apex 4.0? I would like so!
    greetings,
    Dirk Dral

    Hello Saleem,
    Almost all fields required for VAT reporting are available in standard tax report
    S_ALR_87012357 .
    You have to configure the layout from the selection screen as below
    regards
    pb

Maybe you are looking for