How to bring text field to live

hi everyone here,
Actually I need help in how to bring the textfield in fireworks to live when I putted inside a rectangle. because when I exported to "CSS and Images" I can't see the textfields at all so only the Text and rounded rectangle found that returned back to rectangle but when I sliced the whole rectangle I found that it shows up completely but I can't write inside textfields so which is not effective. Also when I use the "HTML and images" same thing.
I hope anyone can help me to solve this problem and tell me step by step what should I do.  Thank you very much for the help
I'm putting my files at this site so you can have a look at it
http://www.4shared.com/file/8DOub3vQ/New.html

AlkingX wrote:
... Actually I'm new to fireworks and I usually use only dreamweaver but now I want to change by using fireworks. ...
Fireworks is not a replacement for Dreamweaver. Dreamweaver is the coding environment; Fireworks is for creating graphics. They are complementary tools. Fireworks can produce HTML (or HTML/CSS), but the purpose of this export ability is for you to create prototypes to show people. The code from FW is not production-quality code. A best-practice scenario would go something like this... Use Fireworks to design your layout. In Fireworks, add slices to export those portions of your layout that will need to be images. Then, move to Dreamweaver and develop the HTML. You can't write HTML and CSS in Fireworks, it isn't made for that, just as Dreamweaver isn't made for image editing.
As for your other question, there is no perfect size for browsers. The question is related to the screen resolution of your target audience. You need to understand your audience: if they're using lower screen resolutions or higher. (For example, I have a 20" widescreen monitor, so my resolution is 1600x1050 pixels. I rarely run browsers at full-screen width, though, because 1600 pixels wide is much wider than most designs.) I usually design for 800 pixels and center that design on a background of some sort. I expect that most users will have a 1024x768 resolution screen or better, and and 800 pixels will fit within a 1024 screen, even with browser borders and scrollbars.
A common way to create a centered design is to use a div for all your content and center that div.

Similar Messages

  • BI 7.0: How to bring DataSource fields to InfoSource in design

    We've replicated the generic datasource from R3 to BW and we have created an InfoSource with blank fields.   We remember on BW 3.x version that we could bring Datasource fields to InfoSource by clicking somewhere, but on BI 7.0, we are trying to do the same thing, but can't find some function to do this.  Then we try to right click the InfoSource and then select 'Create Transformation', and then to select the source system and the datasource, but of course we would get the error msg like "There are no fields in target TRCS InfoSource_Technical_Name".  Any idea on how to bring Datasource fields into the blank InfoSource on BI 7.0?
    Thanks!

    Hi,
    Instead of bringing the DS fields into a blank infosource, ideally, what you can do
    is, you can create a new infosource based on your generic data source, which would make your process easy..
    cheers,
    Pattan.

  • How to Bring "Division" field into PCA form to create Report?

    Hi,
    I need to create Balance sheet reports -Division wise in profit center accounting.Kindly advise me how to bring Division field in to FORM of PCA.Once i get the Division field in to FORM of PCA then i can full fill the requirement.
    Kindly advise me as i am not able to bring it either through Key figures or Characterstics.how do i bring into KE84 form
    Please help me
    Supriya

    Hello,
    I do not think division wise balance sheet is possible.
    Regards,
    Ravi

  • How to bring VRGNG field in BI

    Hello All,
    I am trying to extract Cost Center Actual data using 0CO_OM_CCA_9 datasource.
    I need to have VRGNG (CO Business Transaction) field shown in my report.The above standard extractor doesn't bring this field directly.
    Can anyone tell me how do solve this?As the VRGNG field is present in the source table of this extractor, do I have to write any code to bring this value to BI or not necessary ?
    I have read some links and got to know that there are some BI characteristics (Info objects)like 0METYPE,0VTYPE,0VTDETL,0VTSTAT . With these four characters , i can fulfill my requirement.
    Please tell me how to take VRGNG in BI
    Thanks

    Hello All,
    I am trying to extract Cost Center Actual data using 0CO_OM_CCA_9 datasource.
    I need to have VRGNG (CO Business Transaction) field shown in my report.The above standard extractor doesn't bring this field directly.
    Can anyone tell me how do solve this?As the VRGNG field is present in the source table of this extractor, do I have to write any code to bring this value to BI or not necessary ?
    I have read some links and got to know that there are some BI characteristics (Info objects)like 0METYPE,0VTYPE,0VTDETL,0VTSTAT . With these four characters , i can fulfill my requirement.
    Please tell me how to take VRGNG in BI
    Thanks
    1) Create a append Structure in the Extract Structure of the Data Source 0CO_OM_CCA_9.
    2) Add Field "VRGNG" to the append structure and Activate.
    3) Create a User Exit for your Datasource.
    Function Module: EXIT_SAPLRSAP_001
    Main Include: ZXRSAU01
    case i_datasource.
      when  '0CO_OM_CCA_9'.
        perform 0co_om_cca_9_exit tables i_t_data.
    4) FORM 0co_om_cca_9_exit tables  i_t_data structure <EXTRACT STRUCTURE>
    Here you write the code to populate the field "VRGNG" based on where you want to fetch the value of this field.
    Example: Table COEP
    I am assuming this is where you want to extract the value
    types:
    begin of typ_coep_key,
      kokrs type coep-kokrs,
      belnr type coep-belnr,
      buzei type coep-buzei ,
      vrgng type coep-vrgng,
    end of typ_coep_key.
    data:
    t_coep type typ_coep_key occurs 0 with header line,
    th_coep type hashed table of typ_coep_key
                 with unique key kokrs belnr buzei
                 initial size 0  with header line.
    data: l_count type i.
    describe table i_t_data lines l_count.
    check l_count > 0.  "If there are no records - EXIT!!!
    loop at i_t_data.
      move:
            i_t_data-kokrs to t_coep-kokrs,
            i_t_data-belnr to t_coep-belnr,
            i_t_data-buzei to t_coep-buzei.
      collect t_coep.
    endloop.
    sort t_coep.
    select kokrs belnr buzei vrgng
           from  coep
           into  table th_coep
           for   all entries in t_coep
           where kokrs = t_coep-kokrs and
                    belnr = t_coep-belnr   and
                    buzei = t_coep-buzei.
    free: t_coep.
    loop at i_t_data.
      read table th_coep with table key kokrs = i_t_data-kokrs
                                        belnr = i_t_data-belnr
                                        buzei = i_t_data-buzei.
      if sy-subrc  = 0.
        move th_coep-vrgng to i_t_data-vrgng.
        modify i_t_data.
      endif.
    endloop.
    free: th_coep.
    5) This will populate the Field Value you need into the BW extract structure.
    6) Create a custom InfoObject in BW if you cannot find a SAP Delivered Object.
    Possible SAP Delivered Objects you can use are
    0FI_RACTIV - Business Transaction
    0BUS_TRXN - Business Transaction
    7) Create a TEXT DataSource for VRGNG based on TABLE TJ01T
    TJ01T - Business Transaction Texts
    That should do it.
    Cheers!
    Vasu

  • How to store text field data from web dynpro application in pcd ?

    Hi Forum,
    I am new to web Dynpro.
    I want to store user specific data (a text field value) from a wd application in PCD and access it every time the user runs the application.How can I achieve this?
    Thanks,
    Mickey.

    Hi
    I created the "read" and "update" methods in my application service. How can I call them? I created and implemented the methods just like here: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/340fc0ea-0c01-0010-74bf-965b11031e77
    Operations:
    - readMyEntityService:
    - updateMyEntityService
    Implementation:
    retValue = getMyEntityService().read(key);
    getMyEntityService().update(dS0);
    In Web Dynpro there is this update method with the code above (in my original post).
    How can I call the update-method????????
    Kind regards
    Bettina

  • How to add Text fields while doing SO through LSMW-BAPI method

    Hi Friends,
    I am doing Sales Order data migration using LSMW-BAPI method. The BAPI that i'm using is SALESORDER_CREATEFROMDAT2
    I am able to handle all the fields except for the text fields such "Material sales text"  in the Item info and "Layoout Set Header Text" in the Header.
    Please do help me in solving my problem in whatever possible way you can.
    I am waiting for your reply.
    Thanks in advance,
    ur friend

    Dear Gaurav Anand,
    Thanks a lot.
    Can you please be a more descriptive.
    I am unable to handle the E1BPSDTEXT structure.
    When I am giving the Text field, and the corresponding TEXT_ID , It is showing an error that the address is not handled properly.
    Please explain me how to handle this error.
    Once again Thanks in advance.
    Warm regards,
    Your friend

  • How to hide text field item based on true or false cases in oracle apex

    Hi,
    I have a set of text Field items in oracle apex:
    Order Number
    Revision Number
    When we open the report, revision should be hidden.
    Only when the user enters unique order number (non-duplicate order numbers), revision number should be visible.
    If he enters duplicate order number, revision number should be hidden.
    Please help.

    Hi 2932464,
    2932464 wrote:
    Hi,
    I have a set of text Field items in oracle apex:
    Order Number
    Revision Number
    When we open the report, revision should be hidden.
    Only when the user enters unique order number (non-duplicate order numbers), revision number should be visible.
    If he enters duplicate order number, revision number should be hidden.
    Please help.
    Giving you example how to achieve this.
    Step 1. Create three Page Items
        1) P1_ORDER_NO - Text Field
        2) P1_REVISION_NO - Text Field
        3) P1_ENABLE_DISABLE_REVNO  - Hidden,Value Protected - No
    2. Create 3 Dynamic Actions
    1) Disable revision number on page load
        Event - Page Load
        Action - Disable
        Fire When Event Result Is  - True
        Selection Type - Item
        Item - P1_REVISION_NO
      2) Check duplicate order number
        Event - Change
        Selection Type - Item(s)
        Item(s) - P1_ORDER_NO
        Condition - is not null
        Action - Execute PL/SQL Code
        Generate opposite false action - Unchecked
        Fire When Event Result Is  - True
        Fire on page load - Unchecked
        Stop Execution On Error - Checked
        Wait for Result - Checked
        PL/SQL Code -
    declare
    l_count number;
    begin
      select count(*) into l_count
        from emp
       where empno = :P1_ORDER_NO;
    if l_count > 0 then
      :P1_ENABLE_DISABLE_REVNO := 1;
    else
      :P1_ENABLE_DISABLE_REVNO := 0;
    end if;
    end;
    Page Items to Submit = P1_ORDER_NO
    Page Items to Return  = P1_ENABLE_DISABLE_REVNO
    3 ) Enable and Disable Revision Number
        Event - Change
        Selection Type - Item(s)
        Item(s) - P1_ENABLE_DISABLE_REVNO
       condition - greater than or equal to
       value  - 1
       Action - Disable
       Fire on Page Laod - Unchecked
       Generate opposite false action - checked
       Selection Type = Item(s)
       Item(s) - P1_REVISION_NO
    Hope this helps you,
    Regards,
    Jitendra
    DER_NO

  • How to bring WRTTP field in BI

    Hello All,
    I am trying to extract Cost Center Actual data using 0CO_OM_CCA_9 datasource.
    I need to have WRTTP (Value Type) field shown in my report which is in the source tables. The above standard extractor doesn't bring this field directly.
    Can anyone tell me how do solve this? As the WRTTP field is present in the source table of this extractor, do I have to write any code to bring this value to BI or not necessary ?
    I have read some links and got to know that there are some BI characteristics (Info objects)like 0METYPE,0VTYPE,0VTDETL,0VTSTAT . With these four characters , i can fulfill my requirement.
    Thanks

    Hello James,
    There may be several levels of solutions to your enquiry.
    1. First, please refer to OSSN Note 523742 u2013 u201CBCT-CO: BW key figure model and R/3 tables for trans. Datau201D where the combinations of values for the following key figure-specific info objects are defined using the ROMI_GET_VTYPE_AND_DETAIL function module from several conversion tables on the ECC6 or R/3 side.
    Combo Output:
    0METYPE Key figure type
    0VTYPE Value type for reporting
    --> 0VTDETL Details of the value type
    --> 0VTSTAT Statistics indicator for the value type.
    Else you will need to debug D/S 0CO_OM_CCA_9 when the line item selection is performed in the BWOMR_OM_READ_COVP_DATA function module (via the COVP view).
    Then find the conversion output to records only related to your desired WRTTP value=4 (04-actual).
    2. At the simplest level, using the usual 0CCA_C11 (Delta) Costs and Allocations Infocube,  since this InfoCube contains all costs and quantities on cost centers (plan and actual using delta-extraction) that were transferred from the source system via D/S 0CO_OM_CCA_9, you may find that your desired WRTTP value=4 (04-actual) converted output is just BW value type 10 Actual and then use the  relevant Detail for ValueType combo.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/21/f0963e6dad4d9d87dfedc10c6a9c1c/frameset.htm
    You then just need to only use or change your  queries involving 0CCA_C11 (Delta) Costs and Allocations Infocube to use the Restricted Key Figures (RKF) for your desired BW value type  (for example) 10 Actual and the relevant Detail for ValueType combo.
    Creating relevant RKFs within queries using involving 0CCA_C11 (Delta) Costs and Allocations Infocube is kindly suggested to be another forum thread question ☺
    3. At the next alternate level of solution, you can use the same D/S 0CO_OM_CCA_9 to create or activate the line item DSO where SAP recommends that you use the following InfoObjects as key fields for the corresponding DSO object u201CCO-OM-CCA: Actual - Line Itemsu201D 0CCA_O09:
    0CO_DOC_NO CO document number
    0CO_ITEM_NO CO document line item
    0CURTYPE Currency type
    0METYPE Key figure type
    0VTYPE Value type
    0VALUATION Valuation view
    0CO_AREA Controlling area.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/21/f0963e6dad4d9d87dfedc10c6a9c1c/frameset.htm
    Please refer to details in OSSN 553561 u201CBCT-CO-OM: Current data for the CO delta DataSourcesu201D
    Hope this helps.
    Thanks and Regards,
    Lee

  • How to create text fields & assign values form sql in ADF

    Hi all,
    I am new to oracle ADF,
    i want know how to create text fileds and how to assign the values to those fields from plsql.
    Regards
    Prakash

    http://technology.amis.nl/blog/3315/creating-an-adf-application-based-on-plsql-api-part-one-reading-data-as-a-collection-of-sql-type-objects
    Hope this will help.
    ~Krithika

  • How to populate text fields with data present in a table

    Hi,
    The page i'm building has got a select list for the primary key column and text fields corresponding to rest of the columns in the table.
    upon selecting some value from the list, the data corresponding to that row should get populated in the respective items. I don't want to add source in each item. can't i create a process or something else where this is done for each item.
    for eg there's a table with columns A(primary key) and B.
    there is a text fields on this page.
    this textfield should populate the data from the table whenever i submit the page such that teh value in B is select B from tablename where A = the selected value.
    Thanks
    Dhirendra

    So I assume page was not built using a wizard. Why on earth you would want to I dont know, but you could create an "After Header" pl/sql process to populate the relevant fields, assuming the id was know on entry to the page. If you want to select the id on the page and then populate the fields, guess you will need to use a "Text Field (always submits page when Enter pressed)" and then use an "On Submit" process to populate the items.
    If you are using an Automated Row Fetch, remember to select "Set memory Cache on Fetch" in that process.
    Hope this helps.

  • Cant figure out how to add text fields etc. in dreamweaver, layout made in photoshop

    hi all
    ok...  first of all i want to say im sorry for posting such a noob question,  but im new to this, so please take a few minutes to help me out
    so i have kind of an annoying problem.
    ive made an webpage layoout in photoshop. ive made "boxes" i want to  put my content in. i have sliced it and got it in to dreamweaver.
    im gonna use the page for bloging and stuff so i would like go have an  text field where i can edit text and then post it to the site. but the  problem is that everytime i try to insert ext fileds etc, it dosent  place correctly and its white and not big enough at all.... ill show you  a screenshot to explain..
    so yeah... u see the 3 "boxes", in the big one i want to be able to  add text and since its not so big, i want to have a scroll bar in it.  the two small ones are boxes i wud like to use for index or something  (havent really figured out what i wanna have on the site yet)
    ok... now i will show u what happens when i try to add the text area to the page.
    yeah... so u are all able to see that this is not what i wanted to happen......
    i want the textfield to be where the grey"box"is ... but it wont let  me... also it gets all white... it wuld be nice to get it to have the  color the grey box have
    so help would be great
    and btw, i dont have knowlege in html and css coding, so if u could  explain it so i dont have to do coding in text, but only visual, it  would be nice. yea im a naab...
    thanks in advance

    Use graphics apps for images only.  DO NOT export HTML from Photoshop or Fireworks.  The result is table based code that precisely fits the image slices and nothing else.
    When you try to edit graphics app generated code in DW, your page layout will fall apart.
    The following procedure is the workflow you should follow:
    Part 1 - Initial Design
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Part 2 - Markup preparation
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt2.html
    Part 3 - Layout and CSS
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt3.html
    If you get stuck, post back with specific questions and a link to your test page.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Dynamic Action - How to enable  text field based on a condition

    Hi,
    I have two text items. Need to create dynamic action for the following,
    1. Order_type - Drop down values having CONSUMER & WHOLESALE.
    2. Order_number- Text field
    Order number should be disabled and only on selection of order type ,order number should be enabled.
    Can someone please help me on this?

    Hi Gayathri,
    Gayathri Venugopal wrote:
    Hi,
    I have two text items. Need to create dynamic action for the following,
    1. Order_type - Drop down values having CONSUMER & WHOLESALE.
    2. Order_number- Text field
    Order number should be disabled and only on selection of order type ,order number should be enabled.
    Can someone please help me on this?
    Create two dynamic action
    1. Make it order number item disable on page load.
       Event : Page Load
       Action : Disable
       Fire When event result is : True
       Selection Type : Item
       Item : Your order number item
    2 . enable and disable order number on selection of order type(assuming when order type is null it is disable otherwise it is enable)
        Event : Change
        Selection type : item
        Item : your order type item
        condition : is not null
    True Action
        Action : Enable
        Fire When event result is : True
        Fire on page load : True
        Selection Type : Item
        Item : Your order number item
    False Action
        Action : Disable
        Fire When event result is : False
        Fire on page load : True
        Selection Type : Item
        Item : Your order number item
    Hope this helps you,
    Regards,
    Jitendra

  • How to validate text fields in popup window

    Hi All,
    I need showing empty string validation  as tool tip for the text fields (RichInputText) on popup window when clicking submit button. kindly advice on this.

    Hi
    Below link me help u in implementing validation messages
    http://andrejusb.blogspot.in/2008/04/adf-faces-rich-client-complex.html
    Thanks
    Nitesh

  • How to compare text field length with the length of input characers

    I hae a problem with the length of text field
    I want to fix the length of TextField by taking the length of attribute to, whihc i have to use in text field
    Like i have set the max length of Attribut to 10 and set the length of textfield also 10.
    But the problem is that if i enter 10 'i' it dosn't fill even half the space in TextField
    And opposit if i enter 10 'W'
    I wonder if there is a solution for this problem
    i ma using True Type of Font

    * paint method in your own class that extends Canvas
    * @param g where to paint e.g. printer, screen, ram
    public void paint (Graphics g)
    // display word "today" centred at x,y
    FontMetrics fm = getFontMetrics( g.getFont( ) );
    String wording = "today" ;
    int xadj = fm.stringWidth( wording )/ 2;
    // position bottom left corner of the text
    g.drawString(wording , x-xadj, y );
    // draw a red line from x1,y1 to x2,y2
    g.setColor( Color .red );
    g.drawLine( x1 , y1, x2, y2);
    // draw an pre-existing Image. imX,imY is top left corner of the Image.
    g.drawImage ( image , imX, imY , imWidth, imHeight , this);
    } //end paint

  • How to get TEXT field in Maint. notification and transfer it to a container

    Hi there!
    May I know the steps on passing a value of the Text field VIQMFE-FETXT to a container so that I could use it for the Expression in the Workflow notification?
    Please guide me on this.
    Thanks a lot!
    Regards,
    Reymar

    Hi Reymar,
    to pass values to Custom WF.
    use below code:
    **************include
    INCLUDE <cntn01>.
    *********************************container declaration
    swc_container lt_event_container.
    swc_create_container lt_event_container.
    *******************************filling container
    swc_set_element
    lt_event_container
    'ZEMPNO' wa_req-pernr.
    swc_set_table
    lt_event_container
    'ZUSER' zagents.
    ***********************here ZEMPNO , ZUSER , ZEMAIL is WF container Elements.
    **************calling WF and pass values to WF using container
    CALL FUNCTION 'EWW_WORKFLOW_START'
    EXPORTING
    x_task = 'WS96900063'
    X_START_DATE = NO_DATE
    X_START_TIME = NO_TIME
    IMPORTING
    Y_WORKFLOW_ID =
    TABLES
    x_container = lt_event_container
    X_AGENTS =
    EXCEPTIONS
    invalid_task = 1
    no_active_plvar = 2
    start_failed = 3
    general_error = 4
    OTHERS = 5
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Hope it works!!
    Regards,
    Purvesh.

Maybe you are looking for

  • How to process huge files using File Adapter without ESR and no FCC?

    Hi All, I came to a scenario where i need to pick the file from R/3 sys which of around 500MB and need to transport it to the Third party sys using PI 7.1 . This is just simply a pass through data i.e.., no mapping is required (no ESR). and i don't t

  • Errors with 7.4

    After installing the new 7.4 Itunes and then stating it. I get "Itunes could not connect to the Iteuns Store. An unknown Error occurred (1133). Make sure your network is connections is active and try again", but when I click on the store it goes ther

  • Values or size when  RESOURCE_NAME equal to LIMIT=DEFAULT

    For audit work, are asking me to place the boundary values which are as DEFAULT, which belongs to RESOURCE_NAME parameters. I do not remember if unlimited or if I can see the default values in some way. Thanks in advance! PROFILE RESOURCE_NAME       

  • How to handle exceptions / errors in LiveCycle

    Hello All , I want to handle some exception / errors that may arise while the user is filling the form so that the JavaScript console should not show any error rather we can simply show an alert / message . Say I got a dynamic table where the user ca

  • Leopard won't install due "Machintosh HD unbootable"

    Hello, waited in line today at my local applestore here in Sweden to get hold on my copy, got home and fired the disc up. The leopard installer booted up, and my disk showed up. The problem however is that the Leopard Installer describes "Macintosh H