How to change dynamically style in smartforms

Dear All,
          I had a requirnment to select different styles in smartforms depending on some condition, can u plz suggest me any solution for this.Thanking you.
With best regards
Gaurav Lashkari

Hi,
Goto Transaction smartform.
Place radio button on style, then give <b>style name</b> and
create it.
In paragraph format right click and create node.
Give some name it wil create a node.
Double click on that node than u can
change your style by using font tab.
You can create any number of node.
Save and activate.
Then in your smartform->form attributes->output options
Give your <b>style name</b>.
Then place the cursor on the text to be modified and
select your style from paragraph format.
Thanks.

Similar Messages

  • How to create Dynamic Window in Smartforms

    Hi all,
    Could you please help me out on how to create Dynamic Window in smartforms excluding Main Window.
    Thanks in Advance.
    Vinay.

    hi,
    Hi,
    1.If you are creating the Different windows for the Countries,then In conditions tab of window specify the Condition i.e.
    company -code = '2201'.
    2.Then that window can trigger ofr that condition.
    3.Other wise, if you are using the different layouts ,then write the condition in Print program and call that form .
    reward me if helpful.

  • How to change TEXT EDITOR in SMARTFORMS

    Dear All,
    How to change TEXT EDITOR in SMARTFORMS i am getting editor like Microsoft Word but i want the regular editor.
    I am using ECC 6.0 GUI 710
    thanks,
    RP

    Solution By Mr. Eitan Rosenberg is correct.
    Program Name: RSCPSETEDITOR
    Thanks a lot.
    Regards..........

  • How to change the language in smartform?

    hi
    how to change the language in smartform?

    Hi,
    U can't change the language in the smartform, the main language of the smartform is the language used to create it (so the language used for SAP log on.
    But u can translate it (by trx SE63) and if u need to print in a new language u have to indicate it when the smartform is called.
    U can transfer the language to be used for the print in the parameter CONTROL_PARAMETERS, like structure SSFCTRLOP, here u can indicate the language in the field LANGU.
    see this..
    Use transaction SE63, after activate your smartform, to translate.
    In the First Page of your Smart Forms click on Global Settings under that click Form Attributes
    now in the Right side screen Go to Subscreen Language Attributes.
    select the Radiobutton Translate To all Languages
    from the Translate subscreen out of three radio buttons.
    rewaards if useful
    regards,
    nazeer

  • How to change html style titles of a JTabbedPne at run time??

    hi,
    how to change html style titles of a JTabbedPne at run time??
    setTitleAt is not working...

    You can't change the canvas at runtime. But you can put the scrollbar on a stacked canvas and then show or hide that stacked canvas on different canvases.

  • How to change font size in smartform and set layout of smartform

    Dear abapers,
                           I want to change font size in smartform and also set the layout of smart form how can we do this.
                                                 Thank you sir.

    Hi,
    you can do it first you need to goto smartforms tcode there click on radiobutton 'Style'.
    Give any name and click on create. Right sideyou can find character format right click on it and create a node .A pop will raise gve a 2 characterlike z1 or a1 etc click on font tab gve size and font style and click on save and activate. Use this style in your smartform you can apply what ever styles created in styles you can use it in your smartform by that smartstyle name.
    When we create text in output options give your smart style name and click on general attributes . Select your text and apply the style what thse size it should be and what the font style it should be.
    Goto smartforms tcode and select formpainter in application bar set layout according to your requirement.
    Thanks,
    venkat

  • How to create dynamic window in smartform

    <i>HI Floks</i>
    my requirement is invoice smartform having few line items .i can print this line items with different categories with dynamically placed in smartfom. there how many items with in particular category print its self . how is it possible to printing .is it possible to print dynamic fields and window without changing driver program and structure .How to create dynamic window.
    any body knows reply me fast
    thanks in advance ,
    suresh

    Hi suresh,
        You can create all the windows, but if you go to specific window you will see different tabs like general attributes, output options and conditions. In that conditions tab, you can give condition. so based on that condition, that window will be printed.
    Dont forget to reward points if helpful.
    regards,
    Chandra.

  • How to display dynamic signature in Smartforms?

    Hi,
    Someone could help me in displaying dynamic signatures in SmartForms?. The signature is an attached file to the document. I already have the binary file but I don't know how to display this as an image in the Smartforms.
    Thanks in advance,
    Oliver
    Message was edited by: Oliver Vera
    Message was edited by: Oliver Vera

    Please give me the reply.
    I have an image content in one internal table.I want to display that image in the smartforms.
    plaese please.

  • How to change dynamic text on mouse click of an object

    Here is my Project File.
    I'm wanting to change dynamic text when an object is clicked.
    I created 3 dynamic text boxes under "Selected Colors" and gave them instance names of selected_roof_color, selected_trim_color and selected_wall_color.
    When the user clicks a color (ie Arctic White) and then clicks say the roof, I want the "Selected Color" to display "Arctic White" to the right of "Roof:". 
    The colorable areas on the building have been given instances of roof, walls and trim.
    I used this tutorial to change in the textbox underneath the colors when you mouse over a color.
    Thank you for your assistance.

    My first button color is Arctic White and it has an instance of arcticwhite.
    The actionscript for the Arctic White Button is:
    on (release) {
        _root.fillColor = 0xf3f5f4;
        _root.brush.gotoAndStop(1);
    The roof button has an instance of selected_roof_color and my dynamic text field where I want "Arctic White" to appear is given an instance of selected_roof_text.
    Using your suggestion, my main Actionscript now has the following
    roof.addEventListener(MouseEvent.CLICK,roof);
    function roof(e:MouseEvent):void{
    selected_roof_text.text="roof";
    Looks like I've still got something incorrect as the selected_roof_text isn't changing when I click a color onto the roof.
    Can you explain what the F in "roofF" is?  Is that a typo?

  • How to change the style of the main application window shell

    Hello,
    I am migrating my application from eclipse 3.x to eclipse 4.3 and I want to set the style of the main application window i.e. the shell that is created in application MTrimmedWindow in e4.
    Earlier we were doing it using
    IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
    configurer.setInitialSize(new Point(0, 0));
    configurer.setShowCoolBar(false);
    configurer.setShowStatusLine(false);
    configurer.setShellStyle(SWT.DIALOG_TRIM | SWT.RESIZE);
    But now in e4 application after reading some forum replies I got to know that custom renderer needs to be created for that.
    I created my own renderer extending WBWRenderer and as I wanted to change the style of shell I am overriding createWidget method.
    Now the problem is that if I am just creating a new shell in this createWidget method then it is not working. Might be because this method has a lot of other code also.
    So I copied all this code into my overridden method of createWidget & just changed the style of shell according to my need. Then this worked but for this I have to put some private methods also into my custom renderer class from WBWRenderer.
    SO my question is to confirm that if I am doing it in a right way?
    or is there any other mechanism to do this in a more efficient way?
    Thanks

    This can now be solved with a specific "persisted state" key flag, as documented in https://bugs.eclipse.org/bugs/show_bug.cgi?id=386951 . For example to realize a NO_TRIM window, add the key/value styleOverride/8, where 8 is the value if you get the numeric of
    int val = SWT.NO_TRIM;
    System.out.println(val);
    Hey Zugi: Liebe Grüsse! Master UIBK/2010

  • How to change the font in smartform?

    Hi
    I have a created a smartstyle, I want to use this to my smartform.
    Where I need to change?
    Plz help me

    Once you have created the Smartstyle go to your Smartform and in the Form Attributes->Output options give the name of your Smartstyle.
    Now you can use the paragraph and character formats defined in the Smartstyle in the text elements of your Smartform.
    Check this out for some more info .............
    Re: How create a Paragraph in Smartform?

  • How to change email subject in smartform?

    Dear experts!
    I have an action wich triggers smartform and sends it via email.
    In smartform (transaction smartforms) I can input some text in field "Description" and this text will be shown as e-mail subject. Also i can use ampersand (&) in this field to input the number of transaction from wich the action was launched.
    But I need to add to the e-mail subject the number of preceeding document, I can get it in the Initialization tab of Global definitions.
    How can I add this number (number of preceeding document) to the e-mail subject?
    Regards,
    Vladimir

    Hi,
      In your print program when you are calling the FM generated by smartform you need to pass some parameters. In that there is one parameter OUTPUT_OPTIONS. In that we have a field called TDTITLE. This field is nothing but your Mail subject. So you can change this parameter in your print program for the mail subject.
       Hope this heps you.
    Regards,
    Lakshmi.Y

  • How to change dynamically the Webservice URL

    Hi,
    I added a webservice to my projet from a WSDL.
    As my application needs to fire this webservice towards different servers, I set dynamically the URL in my code. Here is the problem. When I point to the initial server (the one I got the WSDL from), everything is fine. But when I want to fire the webservice toward another machine, my code is not taken into consideration and my application still communicates with the initial server !
    I have something like:
            URL url = null;
            StuffService stuffService = new StuffService(RIOT_url, new QName("http://web.stuff.com/", "StuffService"));
            Stuff stuffPort = stuffService.getStuffPort();
            try {
                url = new URL("http://localhost:3337StuffService/Stuff?wsdl");
            } catch (MalformedURLException ex) {
                Logger.getLogger(Page1.class.getName()).log(Level.SEVERE, null, ex);
                  //USE THE WEBSERVICEIs there something wrong in my code ?
    Do I need to change some files in the project ?
    Thanks for your help

    This has nothing to do with JSF. Rather post webservice related questions at the webservice forum: [http://forum.java.sun.com/forum.jspa?forumID=331]
    Back to the actual problem, are you using a webservice proxy? A proxy should be able to pick up the URL and port the request.

  • How to change dynamically the number of lines to show in time chart

    Hello all,
    I need your help for the following scenario:
    In browser is an applet available that contains a tree. Each tree node have the id. The user can select  a tree node and open a crystal report with time chart. This time chart shows values for tree node id(y-axis). The values are measurement values from database. The database table contains:
    id_field = tree node id,
    value_field = measurement value,
    and time_field.
    So, my problem is that the user can select more than one tree node. The maximum selection count is 16.
    My idea is to do something in the following way:
      1) create function ("myFunction")
      2) set function as filter
      3) add my function  (or parameters)to y axis
    For example:
    filter:
    if {@time_field} in {@time_begin_param} to_ {@time_end_param} and {@myFunction}
    "myFunction"-function:
    if ( treenode_id1 != -1 )
    then "if {@id_field} = treenode_id1"
    else if ( treenode_id2 != -1 )
    then "if {@id_field} = treenode_id1 or {@id_field} = treenode_id2"
    When the user selection is changed:
    1) in my struts action u2013 create report programmatically
    2) set parameter treenode_id1 u2013 treenode_id16 equals user selection
    3) open report
    My question is what is the correctly way to solve my problem?
    And here some concrete questions:
    1) When I set 16 parameters for y axis how can I hide unused parameters?
    2) When I'm using filter with function is the function in db request or are all data requested and then filtered?
    3) Can I add data set to my chart programmatically from my struts action?
    4) When it is possible can I add parameters to y axis also programmatically?
    5) Is it possible to change data set of crystal report without recreating the report?
    Any help is appreciated!
    (and sorry for my bad english)
    Greetings,
    Nikolas

    Hello all,
    I need your help for the following scenario:
    In browser is an applet available that contains a tree. Each tree node have the id. The user can select  a tree node and open a crystal report with time chart. This time chart shows values for tree node id(y-axis). The values are measurement values from database. The database table contains:
    id_field = tree node id,
    value_field = measurement value,
    and time_field.
    So, my problem is that the user can select more than one tree node. The maximum selection count is 16.
    My idea is to do something in the following way:
      1) create function ("myFunction")
      2) set function as filter
      3) add my function  (or parameters)to y axis
    For example:
    filter:
    if {@time_field} in {@time_begin_param} to_ {@time_end_param} and {@myFunction}
    "myFunction"-function:
    if ( treenode_id1 != -1 )
    then "if {@id_field} = treenode_id1"
    else if ( treenode_id2 != -1 )
    then "if {@id_field} = treenode_id1 or {@id_field} = treenode_id2"
    When the user selection is changed:
    1) in my struts action u2013 create report programmatically
    2) set parameter treenode_id1 u2013 treenode_id16 equals user selection
    3) open report
    My question is what is the correctly way to solve my problem?
    And here some concrete questions:
    1) When I set 16 parameters for y axis how can I hide unused parameters?
    2) When I'm using filter with function is the function in db request or are all data requested and then filtered?
    3) Can I add data set to my chart programmatically from my struts action?
    4) When it is possible can I add parameters to y axis also programmatically?
    5) Is it possible to change data set of crystal report without recreating the report?
    Any help is appreciated!
    (and sorry for my bad english)
    Greetings,
    Nikolas

  • How to change the style of a single component using oracle skin Jdev 10.1.3

    my hole applications is using oracle skin, I only need to change the color of the menuTab, but I don´t want to create a new skin family...
    I tried this link http://www.oracle.com/technology/products/jdev/101/howtos/adfskins/index.html
    but the dont tell how to create adf-faces-skins-doc.xml
    how is that possible?, please I need help....

    Hi,
    Ack, I forgot that 10g doesn't have inheritance support either... You'll have to create an XSS file I think, and those are obscure... Also 10g generates image files for menuTab... I think you'll have to create a brand new skin family, sorry :(
    Regards,
    ~ Simon

Maybe you are looking for

  • Apex Listener prints ### instead of cyrillic symbols

    Hi everybody! Apex listener (2.0.4/) prints ### insead of cyryllic symbols when printing to PDF from APEX. In Glassfish log I found next entries: [2013-10-02T10:31:44.040+0600] [glassfish 4.0] [WARNING] [] [org.apache.fop.apps.FOUserAgent] [tid: _Thr

  • Using Send Unix in ARD to copy files from laptops to server--

    OK, you ARD "Send Unix" gurus, here's a question. I am still getting my feet wet in the Terminal and having lots of fun, no big mistakes yet.. I am looking for a solution to make a teacher's life easier. It's a writing class. Each day the students do

  • EAP-TLS with ISE 1.1.2 and WLC 7.0.228

    Hi, I'm on process of implement Cisco ISE with Wireless LAN Controller. According to my post, I would like to know that if Supplicant Provisioning and EAP-TLS does support on this type of firmware code. WLC running on 7.0.228 since most of production

  • Re-installing PSE 10 Trial version Mac OS X

    Okay, I uninstalled my trial version of PSE 10 while troubleshooting other issues. I then re-downloded the install img and am now attempting to re-install, but receive the following warning: One discussion mentioned unchecking "Verify checksums" for

  • External HD not recognized

    After plugging in my external HD (it is a western digital 80GB inside a mad dog enclosure), os x does not recognize that it is there. After plugging it in, system profiler says that there is a "Cypress AT2LP" plugged into the USB port, though nothing