Layout form

hello guys, I  created some components, like a contact form, then wrapped with a form  layout, the problem is that justified all the components on the left. how can move freely on the components inside a form layout?
Thank you all for help
Mike

The adobe flex help document indicates "The Form container always arranges its children vertically and left-aligns them in the form."
http://livedocs.adobe.com/flex/3/html/help.html?content=layouts_08.html
So no problem now right!!!
If this post answers your question or helps, please kindly mark it as such.

Similar Messages

  • How to find the standard Layout(Forms) list in India Baseline version

    Hi,
         Can anyone suggest me how to find the standard layout(forms) in the India baseline version.
    i want total standard form(Scripts/Smartforms) name available in India baseline.
    Thanks in Advance!!

    Hello,
    Goto Se710> Do F4 in form.  In next screen goto Find->Technical Search function and execute it.  It will show no. of forms in the status bar at the bottom.
    Cheers,
    Balaji

  • How to add Line hight in sap.ui.layout.form.Form ?

    Hi,
    i am using the sap.ui.layout.form.Form and sap.ui.layout.form.ResponsiveLayout as layout. And i gave line height from CSS using 'line-height' style, it is working good in Chrome but coming to the IE, the text  in all buttons are looking like below .
    If we increase the height it is showing the text, but i don't want to increase the button height.
    Is there any way i can do this using any layout styles, i am m=not able to find any 'line-height' kind of properties in the Form of ResponsiveLayout .
    Thank you,

    Hi Shashank,
         Add this class in CSS and change the values as required.
    .sapUiBtnS { 
    padding: 4px 58px 19px;
    height: 22px;
    font-size: 12px;

  • Sapscript - layout form

    Hi,
    Can you explain about the sapscript layout, with example?
    Thanks in advance.

    Hi,
    Create the SapScript Layout using Tcode:SE71,then create a page called 'PAGE1', create a Paragraph called 'AS' and use the below code in the Text Element of the Main Window. Then the values will be displayed in the SapScript when you try to execute its Print Program supplied in the other post.
    Example Code:
    /E   MAIN    
    AS   &NAME&  
    Apart from this, TNAPR is the table which contains the details of the print program and form.
    Hope this helps.
    Please reward if useful.
    Thanks,
    Srinivasa

  • Inspection report layout form default

    Hello Gurus,
    We had created the new form for out inspection report on qa32 and trying to default the new customized form in result printout screen but unable to do the same. Again and again I need ot select my variant to get my new form even I still use the username as a variant.
    I tried with variants to default it but not working .Is there any config to default the new form ?
    Akash

    Hi
    Read following may help you
    You called up report RQGAAM31 to print out the inspection report. However, variant I_TYP_01 is not maintained in this report for inspection type 01.
    For report RQGAAM31, you can set up the variants in such a way that they are automatically called up, regardless of the inspection type.
    For example, variant 'I_TYP_01' stands for inspection type '01', variant 'I_TYP_05' for inspection type '05' etc.
    When you maintain the variants for the inspection types, you can control which layout set is to be used, for example.
    If the printout is not to come from report RQGAAM31, then you can activate the appropriate customer exit (enhancement QSS10001) and with this, call up another report.
    Regards
    Sujit

  • Layout form elements

    I just started on Flex a couple days ago.  My background is .NET.  In .NET, laying out components for a windows app is really simple.  But I'm not having much luck here.  I'm supposed to replicate a paper form for people to fill out, and the fields need to be layed out as they are on the paper form as closely as possible.  The form is a mortgage application, divided into two columns.  The left column is for the primary applicant's information, and the right for the secondary, if applicable.  So I've started trying to lay things out, but I could only get one component per row.  So then I tried using constraintrows and columns but the rows don't work, so all the form fields are now directly on top of each other.
    The mxml for the form is below.  Should I try some other layout method?  Can't I just drag and drop, and arrange all the components on the form directly?  Why do I have to mess with XML?  Also, I noticed the property window for components doesn't actual let you edit much beyond the id field, everything else has to be directly edited in XML.  Is there a reason for that?
    <mx:Form label="Personal Information"
                         width="100%" height="100%">
                    <mx:Canvas width="100%" height="100%">
                        <mx:constraintColumns>
                            <mx:ConstraintColumn id="LeftCol" width="50%"/>
                            <mx:ConstraintColumn id="RightCol" width="50%"/>
                        </mx:constraintColumns>
                        <mx:constraintRows>
                            <mx:ConstraintRow id="Row1" height="7%"/>
                            <mx:ConstraintRow id="Row2" height="7%"/>
                            <mx:ConstraintRow id="Row3" height="7%"/>
                            <mx:ConstraintRow id="Row4" height="7%"/>
                            <mx:ConstraintRow id="Row5" height="7%"/>
                            <mx:ConstraintRow id="Row6" height="7%"/>
                            <mx:ConstraintRow id="Row7" height="7%"/>
                            <mx:ConstraintRow id="Row8" height="7%"/>
                            <mx:ConstraintRow id="Row9" height="7%"/>
                            <mx:ConstraintRow id="Row10" height="7%"/>
                            <mx:ConstraintRow id="Row11" height="7%"/>
                            <mx:ConstraintRow id="Row12" height="7%"/>
                            <mx:ConstraintRow id="Row13" height="7%"/>
                        </mx:constraintRows>
                    <mx:FormItem label="Salutation: " left="LeftCol" top="Row1">
                        <s:ComboBox id="cmbSalutation" change="cmbSalutation_changeHandler(event)">
                        <mx:ArrayList>
                            <fx:String>Mr</fx:String>
                            <fx:String>Mrs</fx:String>
                            <fx:String>Miss</fx:String>
                            <fx:String>Ms</fx:String>
                            <fx:String>Other</fx:String>
                        </mx:ArrayList>
                        </s:ComboBox>
                    </mx:FormItem>
                    <mx:FormItem left="RightCol" top="Row1">
                        <s:TextInput id="txtSalutationOther" visible="false"/>
                    </mx:FormItem>
                    <mx:FormItem label="Firstname: " left="LeftCol" top="Row2">
                        <s:TextInput id="txtFName" top="Row2"/>
                    </mx:FormItem>
                    <mx:FormItem label="Lastname:" left="RightCol"  top="Row2">
                        <s:TextInput id="txtLName"  top="Row2"/>
                    </mx:FormItem>
                    <mx:FormItem label="Address: " left="LeftCol" top="Row3">
                        <s:TextInput id="txtAddress"/>
                    </mx:FormItem>
                    <mx:FormItem label="City: " left="LeftCol" top="Row4">
                        <s:TextInput id="txtCity"/>
                    </mx:FormItem>
                    <mx:FormItem label="Province: " left="RightCol" top="Row4">
                        <s:ComboBox id="cmbProvince">
                            <mx:ArrayList>
                                <fx:String>AB</fx:String>
                                <fx:String>BC</fx:String>
                                <fx:String>MB</fx:String>
                                <fx:String>NB</fx:String>
                                <fx:String>NL</fx:String>
                                <fx:String>NT</fx:String>
                                <fx:String>NS</fx:String>
                                <fx:String>NU</fx:String>
                                <fx:String>ON</fx:String>
                                <fx:String>PE</fx:String>
                                <fx:String>QC</fx:String>
                                <fx:String>SK</fx:String>
                                <fx:String>YT</fx:String>
                            </mx:ArrayList>
                        </s:ComboBox>
                    </mx:FormItem>
                    <mx:FormItem label="Postal Code: " left="LeftCol" top="Row5">
                        <s:TextInput id="txtPCode"/>
                    </mx:FormItem>
                    <mx:FormItem label="Phone: " left="LeftCol" top="Row6">
                        <s:TextInput id="txtHomePhone"/>
                    </mx:FormItem>
                    <mx:FormItem label="Cell Phone: " left="LeftCol" top="Row7">
                        <s:TextInput id="txtCellPhone"/>
                    </mx:FormItem>
                    <mx:FormItem label="Email: " left="LeftCol" top="Row8">
                        <s:TextInput id="txtEmail"/>
                    </mx:FormItem>
                    <mx:FormItem label="SIN (Optional): " left="LeftCol" top="Row9">
                        <s:TextInput id="txtSIN"/>
                    </mx:FormItem>
                    <mx:FormItem label="Birthday: " left="LeftCol" top="Row10">
                        <s:TextInput id="txtBirthday"/>
                    </mx:FormItem>
                    <mx:FormItem label="Marital Status: " left="LeftCol" top="Row11">
                        <s:ComboBox id="cmbMarital" change="cmbMarital_changeHandler(event)">
                            <mx:ArrayList>
                                <fx:String>Single</fx:String>
                                <fx:String>Married</fx:String>
                                <fx:String>Other</fx:String>
                            </mx:ArrayList>
                        </s:ComboBox>
                    </mx:FormItem>
                    <mx:FormItem label="" left="RightCol" top="Row11">
                        <s:TextInput id="txtMaritalOther" visible="false"/>
                    </mx:FormItem>
                    <mx:FormItem label="No. Of Dependents (excl. Spouse): " left="LeftCol" top="Row12">
                        <s:TextInput id="txtDependents" />
                    </mx:FormItem>
                    <mx:FormItem label="Language Preference: " left="LeftCol" top="Row13">
                        <s:ComboBox id="cmbLanguage">
                            <mx:ArrayList>
                                <fx:String>English</fx:String>
                                <fx:String>French</fx:String>
                            </mx:ArrayList>
                        </s:ComboBox>
                    </mx:FormItem>
                    </mx:Canvas>
                </mx:Form>

    Hi,
    Here is a fancy layout in Flex 3 to show how you can combine multiple component on the form to achieve multiple columns. I understand some of the new Flex 4 components might make the layout even simpler.
    Hope it helps you.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
        <![CDATA[
            import mx.controls.Alert;
        ]]>
    </mx:Script>
        <mx:Form x="10" y="10" defaultButton="{btnSave}">
            <mx:VBox width="100%">
                <mx:FormHeading label="Please complete the form!" textAlign="center" width="100%"/>
                <mx:Spacer height="15"/>
            </mx:VBox>
            <mx:HBox width="100%" height="100%" horizontalGap="20">
                <mx:VBox height="100%" width="50%">
                    <mx:FormItem label="Salutation: ">
                        <mx:ComboBox id="cmbSalutation"  width="125" height="22">
                        <mx:Array>
                            <mx:String>Mr</mx:String>
                            <mx:String>Mrs</mx:String>
                            <mx:String>Miss</mx:String>
                            <mx:String>Ms</mx:String>
                            <mx:String>Other</mx:String>
                        </mx:Array>
                        </mx:ComboBox>
                    </mx:FormItem>
                    <mx:FormItem label="Label" direction="horizontal" width="100%">
                        <mx:RadioButton label="male"/>
                        <mx:RadioButton label="female"/>
                    </mx:FormItem>
                    <mx:FormItem label="Label">
                        <mx:TextInput/>
                    </mx:FormItem>
                    <mx:FormItem label="Label">
                        <mx:CheckBox selected="true"/>
                    </mx:FormItem>
                    <mx:FormItem label="Label">
                        <mx:TextInput/>
                    </mx:FormItem>
                </mx:VBox>
                <mx:VBox height="100%" width="50%">
                    <mx:FormItem label="Province: " left="RightCol" top="Row4">
                        <mx:ComboBox id="cmbProvince" width="128">
                            <mx:Array>
                                <mx:String>AB</mx:String>
                                <mx:String>BC</mx:String>
                                <mx:String>MB</mx:String>
                                <mx:String>NB</mx:String>
                                <mx:String>NL</mx:String>
                                <mx:String>NT</mx:String>
                                <mx:String>NS</mx:String>
                                <mx:String>NU</mx:String>
                                <mx:String>ON</mx:String>
                                <mx:String>PE</mx:String>
                                <mx:String>QC</mx:String>
                                <mx:String>SK</mx:String>
                                <mx:String>YT</mx:String>
                            </mx:Array>
                        </mx:ComboBox>
                    </mx:FormItem>
                    <mx:FormItem label="Label">
                        <mx:TextInput/>
                    </mx:FormItem>
                    <mx:FormItem label="Label">
                        <mx:TextInput/>
                    </mx:FormItem>
                    <mx:FormItem label="Label">
                        <mx:TextInput/>
                    </mx:FormItem>
                    <mx:FormItem label="Label">
                        <mx:TextInput/>
                    </mx:FormItem>
                </mx:VBox>
            </mx:HBox>
            <mx:Spacer height="15"/>
            <mx:ControlBar width="100%" horizontalAlign="right">
                <mx:Button label="Cancel" id="btnCancel" width="84"/>
                <mx:Button label="Save" id="btnSave" width="84" click="Alert.show('Thank you', 'Saved!')"/>
            </mx:ControlBar>
        </mx:Form>
    </mx:Application>

  • Hw to change layout form 'X_PAPER'  to  'X_65_132', Plz urgent.

    Hello Friends,
    In Fun.Module 'GET_PRINT_PARAMETERS', i am not passing layout value, and it's taking layout = 'x_paper' but i want 'x_65_132' , where to change .
    i don't want to change program, i thing we can do this,  default layout setting for printer through customization also .
    could you please reply asap where to change, i need very urgent .
    Thanks in advance.
    best regards
    srinivas

    Hi,
    This can be achieved by OOPS concept.
    You try using the methods of the interface class IF_SALV_WD_PDF_SETTINGS for this
    implementing class CL_SALV_WD_CONFIG_TABLE.
    Methods for Paper Format and Orientation:
    Define paper format    SET_PAGE_SIZE
    Get paper format        GET_PAGE_SIZE
    Set paper orientation  SET_ORIENTATION
    Get paper orientation  GET_ORIENTATION
    Reward if helpful.
    Regards,
    Ramya

  • Master-detail page with form layout -- insert only -- not in create mode

    JDeveloper 10.1.3.1 with JHeadstart
    I have the following master-detail structure in JHeadstart:
    Group 1, Table a, Layout: table-form
    Group 2, Table b, Layout: table-form
    Group 3, Table c, Layout: form
    Group 4, Table d, Layout: form (on same page as master table c)
    Table a, b and c are updatable (insert, update and delete).
    I have problems with the last page, tables c and d, master-datail both in form layout.
    The master-table (c) is not an insert-only table, the detail table needs to be an insert-only form on the same page as the master table c.
    Settings Table d:
    Advanced search and quick search: none
    Autoquery: disabled
    Single row insert allowed (other options in Operations disabled)
    In my view object I have used the settings in the JDeveloper guide 8.1.2 ('no rows...' in tab Tuning).
    I run my application in JDeveloper (with the option run in my ViewController-project, which means that I am not running my detail page directly in JDeveloper??) and when I open this last page, the detail form is not in create mode (I see no rows found and a create rows button).
    I have read several threads in this forum, but I do not know how to solve this problem.

    This does not work.
    In my first post I made an mistake in describing my application, it is not a table-form, but a tree-form application:
    Group 1, Table a, Layout: tree-form
    Group 2, Table b, Layout: tree-form
    Group 3, Table c, Layout: tree-form
    Group 4, Table d, Layout: form (on same page as master table c)
    If I override the executeQueryForCollection method in the ViewObjectImpl of table d I get a message ('JBO-27122: SQL-fout tijdens voorbereiding van statement' and 'java.sql.SQLException: OALL8 is in an inconsistent state').
    while clicking on the tree (with table b and c). It seems that the QueryForCollection method is being executed to early.

  • Addint new field to the standard sapscript form.

    FOR SALES INVOICE DOCUMENT FORM PRINTING
    TRANSACTION CODE: VF01
    OUTPUT TYPE : FJCI
    PROGRAM NAME: RVADAUS1
    SAPSCRIPT FORM NAME: SD_EXPORT_FJCI
    ENTRY ROUTINE: ENTRY_FJCI.
    STRUCTURE USED FOR THIS OUTPUT TYPE = V55EFJCI
    THE QUERY IS AS FOLLOWS:
    I WANT TO ADD DATA MODE OF TRANSPORT FROM THE INVOICE DOCUMENT. THE TABLE AND FIELD IS T618-BEZEI.
    SO I COPIED THE STANDARD FORM TO ZSD_EXPORT_FJCI AND THE STANDARD PROGRAM TO ZRVADAUS1.
    I SUCCESSFULLY FETCHED THAT FIELD DATA.
    I APPEND THE STRUCTURE 'ZAV55EFJCI' TO ADD THE ADDITIONAL T618-BEZEI FIELD.
    AND WRITE MY SELECT QUERY IN THE ENTRY_FJCI FORM ROUTINE.
    THE CODE IS AS FOLLOWS:
    data: begin of it_mode_of_tp occurs 1,
          bezei type t618t-bezei,
          end of it_mode_of_tp.
    select a~bezei as zzbezei into table it_mode_of_tp from t618t as a
    inner join
    eikp as b on aexpvz = bexpvz and aland1 = baland inner join vbrk as
    c on bexnum = cexnum
    where cvbeln = nast-objky and aspras = nast-spras .
    loop at it_mode_of_tp.
       v55efjci-zzbezei = it_mode_of_tp-bezei.
    endloop.
    BUT THE DATA FOR THAT IS NOT GETTING DISPLAYED.
    THIS WAS THE FIRST METHOD I FOLLOWD.
    THE SECOND METHOD I DID WAS AS FOLLOWS:
    FORM ENTRY_FJCI.
         PERFORM PROCESSING.
    ENDFORM
    FORM PROCESSING.
         PERFORM PRINT_DOCUMENT.
    ENDFORM.
    FORM PRINT_DOCUMENT.
           CALL FUNCTION 'RV_EXPORT_DOCUMENT_PRINT'
    ENDFORM.
    IN THIS FUNCTION THE DATA IS GETTING FETCHED FROM THE DATABASE TABLES AND STORED IN THE STRUCURE V55EFJCI.
    SO I COPIED THAT FUNCTION.
    IN THIS FUNCTION , THEIR IS A INCLUDE PROGRAM 'LV55EF11' FOR FETCHING DATA FOR ENTRY_FJCI FORM ROUTINE.
    I COPIED THAT PROGRAM CODE , AND CREATED MY OWN INCLUDE PROGRAM (WHICH I AM STORING IT IN ANOTHER Z PACKAGE.)
    AND WRITTEN MY ABOVE CODE IN THAT PROGRAM. BUT WHEN I DO THIS, NOITHING GETS DISPLAYED , EVEN THE PREVIOUSLY COMING DATA ALSO NOT GETTING DISPLAYED.
    HOW SHOULD I PROCEED.

    you said you copied layout(form) SD_EXPORT_FJCI to ZSD_EXPORT_FJCI,
    you updated program to fetch datat & populate v55efjci-zzbezei field.
    Now
    - you need to modify layout(form) ZSD_EXPORT_FJCI via SE71 to insert your field in one of the windows where it has to be printed (sap script knowledge is required here).
    - you need to either modify SAP output type FJCI to use your program/layout(form) or you need to create your own output type and assign your form/program to it, and in addition to that if you define your own output type - yo have to add it to output determination procedure, to access sequences, add condition records to condition table... so it's picked up by the invoice.

  • Design View and a CSS Div layout page

    There are a few pages l
    ike this. I am assuming it is because everything is layed out w
    ith div tags, but there mush be a way to correct the desging view. Everything shows up great o
    nline. Here is a screenshot:
    Here is the code:
    <body onload="initHomePage(); addReferToLinks();">
    <!-- ################# TOOLBAR ############## -->
    <script type="text/javascript" src="/shared_assets/toolbar_v2/toolbar.js"></script>
    <!--  end TOOLBAR -->
    <img src="/profile/image/logo_linknet.gif" />
    <!-- Main div for entire page layout -->
    <form name="frmSearch" action="" method="get" title="Resources" class="scopedSearch">
           <input class="textInput" name="qt" value="THIS SECTION ONLY" id="searchField" size="20" />
           <input class="button" type="submit" value="Search" name="submit" />
           <input type=hidden name="col" value="mpr dno dnos1" />
    </form>
        <div id="main">
    <!-- ###################### LEFT NEWS ################################## --> 
      <div id="newsBox" class="box">
       <div class="boxHeader">
        <div class="headerLeft"><h2>MP News</h2></div>
        <div class="headerRight"><a href="/news/news/index.htm" class="more">more &#0187;</a></div>
       </div>
       <div class="boxContent">
        <h3>
         <script type="text/javascript">var x=new Date(); document.write(x.toLocaleDateString());</script>
        </h3>
        <div id="newsContent">
         <div class="loading">
          Loading...
         </div>
        </div>
        <!-- -->
        <h3>My Subscriptions</h3>
         <ul style="list-style-type:none;">
          <li><a href="http://rss/">Setup Subscriptions - Get Help</a></li>
          <li><a href="http://">View Subscriptions</a></li>
         </ul>
        <!-- MEDIA CENTER -->
        <div class="imgFrame"><a href=""><img src="image/mc_logo2.jpg" alt="Media Center" hspace="0" vspace="0" border="0" /></a></div>
        <!-- COLUMNS -->
        <div class="imgFrame"><a href="http/"><img src="image/columns.gif" hspace="0" vspace="0" border="0" alt="The Northwestern Columns" /></a></div>
       </div>
      </div>
    <!-- #### end LEFT NEWS ########### -->
    <!-- ###################### CENTER CONTENT ################################## -->
      <div id="content">
       <!-- MAIN CONTENT WELL -->
       <!-- optional notice (visible only when critical news exists) -->
       <div id="alert" class="box highlightBox">
        <div class="boxHeader">
         <div class="headerLeft"><h2>Important Notice</h2></div>
         <div class="headerRight"> </div>
        </div>
        <div id="alertContent" class="boxContent">
         <div class="article">
          <a href="" class="headline">Avoid lock out - Install LINK 22.2 now</a>
          Users who do not install LINK 22.2 before the version enforcement date of July 31 will be
          unable to access their PCs.
         </div>
        </div>
       </div>
                <div id="home_page_id">) Home Page</div>
       <!-- Activities -->
       <div id="activities" class="box highlightBox">
        <div class="boxHeader">
         <div class="headerLeft">Welcome<span id="username"></span><h2>What would you like to do?</h2></div>
         <div class="headerRight"> </div>
        </div>
        <div class="boxContent">
         <div style="width:100%;">
          <ul>
           <li><a title="Find information and tools for recruiting new representatives" onmouseover="showTooltip(this);" onmouseout="hideTooltip(this);">Recruiting:  <select style="font:message-box; width:19em;" onchange="if(this.value){window.navigate(appendReferer(this.value))};">
             <option name="selectRecruit" selected="selected">*** make selection ***</option>
             <option value="http.htm">Sourcing & Prospecting</option>
             <option value="http://.htm">Selecting & Assessing Candidates</option>
             <option value="http://_process.htm">Post Acceptance Process</option>
             <option value="http">Developing an Internship Program</option>
             <option value="http.htm">Tracking Activity, Results & Accountability</option>
             <option value="http://.htm">Recruiter Development</option>
            </select></a></li>
           <li><a href="/objective/mpr_secure/mp_ldorgdev.htm" title="Find information and tools for developing leaders in your office" onmouseover="showTooltip(this);" onmouseout="hideTooltip(this);">Leadership &amp; Organizational Development </a></li>
           <li><a href="/objective/mpr_secure/mp_supvsn.htm" title="Find information and tools for effective supervision" onmouseover="showTooltip(this);" onmouseout="hideTooltip(this);">Supervision</a></li>
           <li><a href="/objective/mpr_secure/mp_stfop.htm" title="Find information and tools for   managing your office" onmouseover="showTooltip(this);" onmouseout="hideTooltip(this);">Staffing &amp; Operations</a></li>
           <li><a href="/objective/mpr_secure/mp_plnperform.htm" title="Find information and tools for business planning and performance monitoring" onmouseover="showTooltip(this);" onmouseout="hideTooltip(this);">Planning &amp; Performance</a></li>
              <li><a href="/objective/mpr_secure/mp_mngmntcompben.htm" title="Find information regarding income, fees, expenses, allowances and benefits" onmouseover="showTooltip(this);" onmouseout="hideTooltip(this);">Management Compensation &amp; Benefits</a></li>
              <li><a href="/objective/mpr_secure/mp_repdev.htm" title="Find information and tools regarding mentoring and professional growth" onmouseover="showTooltip(this);" onmouseout="hideTooltip(this);">Representative &amp; Specialist Development</a>  </li>
          </ul>
          <div id="slideshow1" class="activitySlideshow" style="height:212px;">
           <img src="image/slideshow_photos/photo06.jpg" />
           <img src="image/slideshow_photos/photo07.jpg" />
           <img src="image/slideshow_photos/photo08.jpg" />
           <img src="image/slideshow_photos/photo09.jpg" />
           <img src="image/slideshow_photos/photo10.jpg" />     
          </div>
         </div>
        </div>
       </div>
       <!-- Lower div under activities (2 columns) -->
       <div class="leftColumn">
       <!-- Events Calendar -->
        <div class="box">
         <div class="boxHeader">
          <div class="headerLeft"><h2>Events Calendar</h2></div>
         </div>
          <div class="boxContent"><ul>                      
          <li>April 25-30<br />
         <a href="http_020110.htm" target="_blank"></a></li>
         <li>May 12-14<br />
         <a href="http://030510.htm" target="_blank"></a></li>               
           <li>June 16<br />
         <a href="http://.htm" target="_blank">Series conversation</a></li>                                  
                          </ul>
          </div>
        </div>
         <!-- Spotlight -->
         <div class="box">
          <div class="boxHeader">
           <div class="headerLeft"><h2>Spotlight</h2></div>
           <div class="headerRight"> </div>
          </div>
          <div class="boxContent">
                  <div class="article">
          <!-- Leave "Market volatility resources available" at the top -->
       <div class="headline"><a href="http.htm?tern Mutual Association dues decline form available</a> </div>
         The $25 association membership fee will be charged to June 30 home
         office supply bills. Representatives who wish to decline membership
         may submit a <a href="http://.htm" target="_blank">decline
         form</a>.
    <div class="headline"><a href="http://.htm">Surplus notes information available</a> </div>
         Find answers to common questions and hear insights from about the company’s recent surplus notes offering.
                              <div class="headline"><a href="http://.htm">Stay up to date on 2010 estate tax repeal </a> </div>
         Consider the new Estate Tax Repeal page on LINKnet “home base” for information on the 2010 repeal and resources to use when talking to clients about this topic.
                  <div class="headline"><a href="http/index.htm">Withstanding Market Challenges</a> </div>
         Access resources to highlight the company’s strength and stability, find sales strategies and share marketing and market-related materials to help address client concerns.
                  <div class="headline"><a href="http:///year.htm">Dividend resources available</a> </div>
         The Current Year Scale page on LINKnet provides the latest information
         and sales support materials based on the 2010 dividend announcement.
    <!-- Leave "Market volatility resources available" at the top -->
                   </div>
          </div>
         </div>
       </div>
       <div class="rightColumn">
       <!-- Approaching Deadlines -->
        <div class="box">
         <div class="boxHeader">
          <div class="headerLeft"><h2>Approaching Deadlines</h2></div>
         </div>
         <div class="boxContent">
           <ul>
    <li>April 30: <a href="http.htm">Submit 2010 Commitment to Excellence Award nbominee</a></li>
           <li>May 25: <a href="http.htm">Submit applications for Intern Community Service Award</a></li>
                          <li>June 30: <a href="http://pdf">Submit 2010 Managers Membership Award Application to NAIFA</a> <img src="/shared_assets/image/doc_icons/pdf.gif" alt="PDF File" /></li>
                          </ul>
          </div>
        </div>
        <!-- Tech Alerts -->
        <div id="techalerts" class="box">
         <div class="boxHeader">
          <div class="headerLeft"><h2>Priority Tech Alerts</h2></div>
          <div class="headerRight"><a href="http://.htm" class="more">more &#0187;</a></div>
         </div>
         <div class="boxContent">
          <div class="loading">
           Loading...
          </div>
         </div>
         <iframe name="techalerts" src="/statusdisplay/001_summary.htm" onreadystatechange="if(this.readyState=='complete'){this.previousSibling.innerHTML = formatTechAlert(frames['techalerts'].document.body.innerHTML);}"></iframe>
        </div>
       </div>
      </div>

    Dreamweaver is pretty good these days at showing the page in Design View how it will be viewed when online. HOWEVER having said that it does largely depend on the way you write the css.
    I guess for Dreamweaver it's impossible for it to show every concievable way you can write css correctly. Unfortuantely if your css is not compatible with what Dreamweaver likes it won't make a great job of rendering the site correctly in Design View, that's always been the case.
    The css is not wrong but I've seen many display issues in Dreameaver Design View caused as a direct result of the css being overly complex to crack simple presentation. I guess it's in the lap of the gods if you are fortunate enough to have found the way to write css that Dreamweaver likes.

  • How to print the data in ALV list  format using an existing layout

    Hi all
    Iam displaying the output in ALV list format and I saved the layout with some name
    now my requirement is i have to provide a field to select the layout name with F4 help and if i execute the program it should show the output with that layout format
    I tried this iam getting F4 help for that layout and selecting the layout but iam not getting the output with that layout iam getting the normal basic layout
    Can anyone send me a sample program code or what to do to get that
    Thank you

    Hi,
    refer this code.
    DATA : wa_variant  TYPE disvariant,       "Work area for variant
           wa_variant1 TYPE disvariant,       "Work area for variant
           wa_layout   TYPE slis_layout_alv,  "Work area for layout
    *&      Form  sub_get_default_variant                                  *
    This form will initialize the variant                               *
    FORM sub_get_default_variant .
    *--Clear
      CLEAR wa_variant.
    *--Pass the report name
      v_repid = sy-repid.                     "Report ID
      wa_variant-report = v_repid.
    *--Call the function module to get the default variant
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
        EXPORTING
          i_save        = c_save
        CHANGING
          cs_variant    = wa_variant1
        EXCEPTIONS
          wrong_input   = 1
          not_found     = 2
          program_error = 3
          OTHERS        = 4.
    *--Check Subrc
      IF sy-subrc = 0.
        p_varnt = wa_variant-variant.
      ENDIF.
    ENDFORM.                                  "sub_get_default_variant
    *&      Form  sub_f4_for_variant                                       *
    This form will display the List of Variants                         *
    FORM sub_f4_for_variant .
    *--Local Variables
      DATA: lv_exit(1) TYPE c.                "ALV exit
    *--Call the function module to display the list of Variants
      CALL FUNCTION 'REUSE_ALV_VARIANT_F4'
        EXPORTING
          is_variant    = wa_variant
          i_save        = c_save
        IMPORTING
          e_exit        = lv_exit
          es_variant    = wa_variant1
        EXCEPTIONS
          not_found     = 1
          program_error = 2.
    *--Check Subrc
      IF sy-subrc <> 2 AND lv_exit IS INITIAL.
        p_varnt = wa_variant1-variant.
      ENDIF.
    ENDFORM.                                  "sub_f4_for_variant
    *&      Form  sub_check_variant                                        *
    This form will check the variant                                    *
    FORM sub_check_variant .
      IF NOT p_varnt IS INITIAL.
        CLEAR wa_variant1.
        MOVE wa_variant TO wa_variant1.
        MOVE p_varnt TO wa_variant1-variant.
    *--Call the function module to check the variant exist
        CALL FUNCTION 'REUSE_ALV_VARIANT_EXISTENCE'
          EXPORTING
            i_save     = c_save
          CHANGING
            cs_variant = wa_variant1.
        wa_variant = wa_variant1.
      ENDIF.
    ENDFORM.                                  "sub_check_variant
    Regards,
    Prashant

  • Issues with Form printing using a 3rd party software!!!!!!!!!!!!!!!11

    Hi All,
    We are printing our month end AR statements using Xerox DP100 printers. We are using a SAP Script as the layout form. Everything works perfectly alright when a direct print is issued to the printer. But the scenario here is the statements are sent to a 3rd party software so that the statements can be saved in their repository and made available to be viewed and printed whenever necessary. Now the issue is when this 3rd Party Software(TPS) reads the SAP generated PCL from its report store on the unix host and generates a PDF File that it presents to the web client user for (re)printing via his/her PC it appears that the TPS or Websphere or Adobe is performing a font substituion - replacing the Univers font(used in R/3) which is not loaded on the unix host with a different font(with different sizing and/or behavior).
    As a result the horizontal and vertical positioning generated by SAP(which is correct for the Univers font) is 'wrong' for the substituted font. The fixed size fields print OK but gradually move to the right. The varying size amount columns do not align correctly and fall off the right side of the page.
    Can anyone give me pointers on what can be done to arrest this error.
    Does the font need to be loaded on the unix host or the font used in the form be changed?
    Regards,
    Karthik

    Karthik,
              Sap script behaves differently for different printers. You will have to change margins when you change your printer/software accordingly.

  • Vendor Ref. Number from A/P Invoice & Credit Memo in the Check PLD Form

    Hi Guys,
    We have standard PLD layout form for the Check Document. In our case the Check Document based on the outgoing payment and outgoing payment referenced on A/P Invoice and Credit Memo documents.
    Is there someone who knows how to get "Vendor Ref. Number" (NumAtCard) field from A/P Invoice and Credit Memo in the Cheque form?
    Any ideas will be appreciated.
    Thanks so much,
    Sergey

    Hi Nagarajan,
    Thanks a lot for your answer! Yes, you are absolutely right, the variable number for this field was #100.
    Unfortunately, this solution worked partially for us. In our case, we also needed to specify a "Document Date" (Tax Date) for the ref. document and there was a problem, because we could not find SAP variable number for this (I don't know if this exists?)
    In the final, I just related "OJDT" to "VPM2" table and after that I have got my "TaxDate" field.
    So we are good now.
    In addition, maybe you know where can I get a variable numbers catalogue or something like that?
    Thanks,
    Sergey

  • The web app input form is not holding what i enter in it

    Am setting up a business directory using the web apps, and two of fields are custom, one for map and video, {tag_map embed} {tag_video embed}. Now when I add a business using the web app input form. All the other fields work perfect in the list and detail page, but in the detail page where the map and video tags are, they are empty, the form isn’t taking what I enter in the map and video field. I tried text (string) and text (multiline), no change. But when I add the business in the back end, it works. So it makes me think there is something wrong with the input form. I also try with the edit layout form once the business was added, that didn’t work too.
      Any ideas what would be causing this to happen

    Delete them from your library including files, the go to the iTunes Store and select "Purchased" from the Quick Links side bar on the right. Go through all the tabs to download again for free

  • Layout Guides in Pages 5.0

    I opened a document in the new Pages, after I upgraded to Mavericks and its corresponding apps.  First of all, there appears to be a LOT of features missing.  It seems the Mac version has been downscaled to act like an IOS version.  However, that is not the point of this post.
    I like being able to view the layout guides (as in former versions of Pages).  The option is still on the "View" menu under "Show Layout."  However, nothing changes when it is selected.  There is no way to activate the guides.
    The document that I am currently working on, is already changed to the new format and I cannot open it in the 4.3 version of Pages.  So, I'll have to keep working with it on this document.  However, unless I can get the guides back, I will revert back to the older version before I open any more documents.
    Is there a way to get the guides to show?
    Thanks.

    I also am shocked and very disappointed. Normally when you get an upgraded version, it should be at least equal to or better than the previous version. When Pages came out, I was so impressed. I was using In-Design for my page layout program. I found Pages was almost as good, but so much easier to use. I switched.
    The big change now I see is that in Pages 09, v 4.3, when you started a new project, you were able to select a Word Processing Form, or a Page Layout Form. Now is seems that it is only a word processing program that lets you move some graphics around. They are copying Word more that being a Page Layout program.
    Where is the Left Ruler, How can you pull your guides in to show you the printable area. The guides were so handy to show the center of the page. So handy to line up pictures, text, etc.
    I also have problems when I copy and paste from PDF's. Now when I print, the resolution is so bad you would think I was pasting a tiff picture.
    I have hundreds of floor-plans I had designed in pages, fortunately I only opened a few and saved in the new version. I have found Pages O9 in my application folder and have deleted the new version.
    This is sad, I hope I am not seeing an Apple trend of under proforming. I am still disappointed that they deleted the support for iWeb, and Mobile Me. Before you could design something in Pages. Copy it and paste it in iWeb and have it posted on your Web-site in minutes. Once Apple makes you leave their company and go out side to look for a product to satisify a need they once provided, the more likely you are to continue looking at other products.
    Robert L Newman

Maybe you are looking for

  • Could not complete your request

    Receiving message could not complete your request because photoshop does not recognize this type of file. My wife just installed mavericks and updated to flash 11. When we try to bring a photo into pse 12 . We receive the above message. We are trying

  • Erm Error Msg

    OK this is what i get 'C:\jakarta-tomcat-3.2.3\webapps\purejsp\SoapClient\RouterTest.java:12: package org.apache.soap does not exist import org.apache.soap.*; ^' what does this mean...

  • Weird Spry Submenu Effect in Internet Explorer

    It looks like the first category item of a Spry submenu is stretching vertically to the same length of the Spry sub sub menu to the right. It works fine in Safari and Firefox. It is only doing this in IE 8 on a pc Any idea why this might be happening

  • Question about how HP handles customer service issues

    I am the owner of three HP laptops.  Two of which are dead now due to the defective Nvidia chips they contained.  When I called HP to report this issue, I was told by numerous HP customer service reps that they were not aware of any issues with the N

  • How to accesss dba objects (dba views) to find all  last ddl times in Apex

    Hi, I want to access all the dba_objects.. all dba_views to find out last ddl's. I installated oracle application express and had created users ADMIN, DEV, both are under XXAPPS schema. How can I find out last ddl's on all db objects. I was not able