Designing web user interface

Hi experts,
can anybody tell me something about designing web user interface, like some of the key considerations? I did not successfully find it on our forum.
Thanks.

hi Joey,
do you mean web template ?
check
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/749a4622-0a01-0010-36bf-b6b30a2a3a22
https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/a8cd1f71-0a01-0010-4783-f119b6132d25 [original link is broken]
http://help.sap.com/saphelp_nw04/helpdata/en/1a/456a3badc1b315e10000000a114084/frameset.htm
hope this helps.

Similar Messages

  • Forms 10g Design Rich User Interface

    Dear All,
    i would link to design rich user interface in forms 10g.
    for example : the button shape is circle , not only
    rectangle.
    Is it possible to do that in forms 10g or import some java object from third party tools.
    best regards
    borisys

    Borisys,
    the concept of Pluggable Java Comnponents (PJC) allows you that. PJC only change the UI of a component without affecting its functionality.
    The Forms demos that are available on otn.oracle.com/products/forms contain enhanced buttons in teh form of mouse over effects.
    Frank

  • What options do we have around Web User Interfaces?

    Hi Guys,
    I am trying to find out some comparison of SAP's web user interfaces. In other words if i want to build applications which are web enabled what options do we have in SAP? Could someone provide some inputs regarding the same? or point me to a document which gives more details?
    Web enabled user interfaces available:
    1. ITS
    2. BSP
    3. Webdynpro - ABAP/JAVA
    4. NWBC
    5. Portal( Iviews)
    Is there anything more from the above list? Where can i find advantages and disadvantages of the above UI technology?
    Appreciate if i could get some pointers. Thanks in advance.
    Cheers

    Hi,
    Refer this link.
    http://www.architectsap.com/blog/sap/web-enabling-sap-options-scenarios-and-best-practices-sap-its/
    Edited by: ushamasani on Mar 8, 2012 3:45 PM

  • How to add a new Field to the WEB User Interface in CRM 2007

    Dear experts,
    I have been struggling to add a new field to the (CRM 2007) user interface from available fields for a specific view.
    I have maintained settings in BS__WD_CMPWBàRuntime Repository editoràComponentàViewàConfigurationàNew ConfigurationàAvailable FieldsàField Propertiesàand save.
    But the field is only appearing in display mode in the Web UI, which doesnu2019t allows any user input.
    I need your help to resolve the issue, I would be grateful if you could provide step-by-step documentation with screenshots or any other kind of documentation.
    Each suggestion will be appreciated.
    Best regards,
    Raghu ram.

    Hi Raghu Ram,
    I think you added a new custom field using some method like EEWB etc.,
    Then, you are adding the field onto the UI using UI Configuration Tool .. right ?
    These are the steps to diagnose:
    Method 1.Check the field properties in the model browser first.
      It should be showing 'C' i.e., CHANGEABLE. If it is showing as 'R', it is only READABLE.
      In such a case you need to find a BADI to change the field properties.
      For example, in Marketing Applications OBJ BADI has a method CHANGE FIELD PROPERTIES for this purpose.
    Method 2. Debug and check what is the value coming for RV_DISABLED parameter in the GET_I method in BSP_WD_CMPWB. This should be FALSE.
    Method 3. Check what are the field properties in the UI Configuration tool.
    Make sure it is not a display only field.
    Regards,
    Masood Imrani S.

  • How to design the user interface for Indesign cs6 plugin ?

    Designing user interface using custom c++ library(SDK) for pluging is very tedious work .so when I search the net than i found that we can do it using Adobe Creative Suite Extension Builder but i dont know how to use it to develop user interface for plugin and to how to enable event handling in this UI .I read lots of document regarding this on net but they all created lots of confusion in my mind  so can anyone help me to know steps which i must follow to develop plugin using this or whatever technology (action script,java script etc)

    If you want to develop Extensions using Creative Suite Extension builder then i think this is not the right forum for you. Please post your specific queries regarding this at the below mentioned link
    http://forums.adobe.com/community/creativesuites/cs_sdk
    To give a brief of how to develop UI using JS you can use ScriptUI to develop your UI, it is a fast and OS independent approach to UI development. The UI created using JS is native in look. You can refer the following link for some help on ScriptUI
    http://www.kahrel.plus.com/indesign/scriptui.html
    I don't have much info regarding development in CS SDK, but i can point you to one more direction of dev called as hybrid plugins wherein the UI is created in CS SDK, and appropriate methods are exposed from the C++ plugin(enhancing the script object model) to be called up by the CS code for too and fro communication between these two modules of code.
    Hope these pointer help you in getting started.
    Thanks,
    -Manan

  • OCS Content services web user interface

    Greeting all,
    Is Oracle drive client required to perform the edit feature when attempting to select edit under the web based content services on a file. When I select edit from the web based user interface on a file I get a error saying that oracle drive is not installed.

    I reinstalled with the newer version as the upgrade from the previous version was not to smooth, and I was left over with to many broken pieces after the upgrade attempt.
    I suspect that I'm going to find out that the file versioning and check in and check out features are going to require oracle drive installed as well. This is not a option for us, as our remote clients need to use a pure web type interface/connection. It seems as if oracle still has some work to do to get the content services Web UI to were we need this to go.

  • CRM 7. How to make mandatory the BP Roles on CRM Web User Interface.

    Dear CRM Gurus,
      The requirement in our project is to have as mandatory at least one BP Role (except the default role of BP). Is there any way to implement or configure the CRM system to display an error message when a user tries to save a BP from WEB UI without having maintained the BP Role ?
    Thanks in advanced, John

    Hi Jhon,
    Before raising the error message as Garcia suggested check the collection of bp_roles.. if no roles maintain then raise the message.
    you can raise the message in eh_onsave event of BP_HEAD/BPHEADOverview.
    Sample code to check the collection of bp roles..
    DATA: lv_collection TYPE REF TO if_bol_bo_col,
                lr_bp                TYPE REF TO cl_crm_bol_entity.
      lr_bp ?= me->typed_context->builheader->collection_wrapper->get_current( ).
      CHECK lr_bp IS BOUND.
    TRY.
          lv_collection = lr_bp->get_related_entities(
                 iv_relation_name = 'BuilRolesRel' ).
    *     delete difftype-dependent roles (not maintainable/ displayed
    *     in standard)
          cl_crm_uiu_bp_roles_service=>filter_difftype_dependent(
            CHANGING cr_collection = lv_collection ).
    *     delete lifecycle stages (which are roles as well) from coll
    *     of "normal" roles
          cl_bp_accountlifecycle_service=>filter_roles_exclusive_stage(
            CHANGING cr_collection = lv_collection ).
        CATCH cx_crm_genil_model_error.
    *       should never happen
          EXIT.
        CATCH cx_sy_ref_is_initial.
      ENDTRY.
    check lv_collection->size( ) le 0.
          raise error message.
    Hope this helps.
    Cheers,
    Sumit Mittal

  • Graphic Designer / User-Interface Engineer Job Opening

    Title:
    Graphic Designer/User-Interface Engineer
    Job Qualifications:
    - Must be an innovative Graphic Designer/User-Interface
    Engineer
    - Minimum 4 years experience developing web-based user
    interfaces
    - Expert knowledge of Adobe graphic design applications such
    as Flash, Photoshop, and Illustrator or alike products
    - Experience with Adobe Flex and ActionScript3
    - Has a proven track record designing and documenting
    high-quality user interface designs for web-based applications
    - Possesses a strong visual design sense and general design
    principles
    - Has some background in object-oriented design and
    programming
    - Able to work effectively from a remote home office
    - Has excellent interpersonal and communication skills and
    collaborates well in person, online, or on the phone
    Job Description:
    This position offers an opportunity to work on high-end
    graphical design projects building rich Internet applications for
    Fortune 500 client companies in industries like financial services,
    software and consumer products. As a User-Interface Engineer, you
    will be expected to:
    • contribute strong leadership through all phases of
    development including functional requirements development, UI
    design and documentation
    • analyze and establish functional requirements and
    specifications using feedback from clients and other developers
    • apply your visual creativity and functional
    experience to design elegant and responsive web user interfaces
    with Adobe Flash (Flex expertise desired)
    • support other developers to ensure successful
    implementation of the designs
    • create appropriate documentation during development
    Candidates will be expected to provide a portfolio of their
    graphical design work in zip files or URL links for review.
    - Can be based anywhere in the U.S.
    - Up to 25 percent travel time required
    - Work on-site and from home
    - 3 to 6 month engagement with potential for perm placement
    If you are looking for a new exciting opportunity, please
    reply with your resume attached to [email protected]. Thank
    you for your interest and I look forward to hearing from you soon.
    Regards,
    Kevin Bakhmutsky

    Kevin,
    Are you only looking for a Graphic Designer or do you have
    other openings that could be filled by a Flex person with a J2EE
    background?

  • ICR - Web based User Interface

    Hello,
    Does anybody knows how can I activate the ICR web User Interface?
    Apparently it comes in EhP 6 but I have reviewed the content of all the EhP's including EhP7 and I cannot find anything.
    Thanks in advance for your help
    Regards
    Isabel

    Hi Ralph,
    Regarding #2 some of those fields have already been added to the ICR tables via customizing, so I don't think we have to add them again with this transaction if they are already there?
    #3 --> We have developed our own data extractor that takes the information from the FI tables and generates a tab delimited file to be imported into ICR. We had to do this because we are using our SAP system as the reconciliation system and we have to receive data from other entities outside our system. This extractor has been developed as a template that other entities will use to extract teh data from their SAP systems. Direct communication between the entities is not allowed for security reasons, so the only way was via file import.This Z extractor works perfectly via SAPGui but when we run it via the WEB UI it crashes and we get the error attached. We are going to use the Web UI for the first time with this project, so maybe there are some technical settings that have to adjusted or something like that, but it's only happening with this program.  :-S
    When we get this error the system crashes and we have restart the server.
    Before this message we used to also get this other one:
    Thanks a lot.
    Regards
    Isabel

  • User interface builder for JSPs?

    Hi
    Has anyone used a good builder for a web user interface based on JSPs?
    Thanks

    There is no template for Interactive Reports like for a "normal" report. You need to modify the CSS and supply your own for this to happen.
    I believe most things are tagged with #apexir - firebug with Firebox is invaluable. This thread may help:
    Re: changing the look and feel of interactive report.

  • Teststand Simple User Interface in LabVIEW

    Hello Community,
    I am designing a user interface for Teststand by using the simple example vi provided. The name of the file is Top-Level VI.vi
    I am trying to understand how the vi works inorder to make changes and ran into a few questions that I was hoping someone could answer for me please.
    To start I add my sequence file and click "Test UUTs". Then a dialog box pops up asking to enter the serial number of the UUT, where and what causes that to happen in the code? After I enter my serial number it runs my sequence code and at the end another message box appears specifing in a green or red whether the UUT passed or failed. Where and what causes the Pass/Fail Boxes to happen in the code?
    Thank you
    Kevin
    Solved!
    Go to Solution.

    The S/N dialog is part of the process model.
    For the Sequential Model (SequentialModel.seq), the default S/N dialog in found in the 'PreUUT' sub-sequence and implemented as a DLL call.
    The PreUUT sub-sequence of the SequentialModel is a callback, so you can override it in your own test sequence.
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Problem in designing user interface

    Hi
    I am new to weblogic workshop.Please guide me regarding designing user interface.I had tried form weblogic help but i wasn't able to do it .I am giving the whole form below .i need to finish it asap,please reply
    " REQUESTOR INFORMATION(with black background)
    Date Phone no
    Requestor Name Phone NO
    Alternate contact name
    {all text boxes}
    WEB APPLICATION INFORMATION(with black background)
    Applicatiion name
    Description
    {text boxes}
    environment A() b()
    {check boxes}
    INFORMATION OWNERS(with black background)
    NAME TITLE
    1
    2
    SSO GROUPS(black backgound)
    some more fields)
    SUBMIT BUTTON
    {SHOW BUTTON}
    the following fields are hidden ,they get showed only after i press SHOW BUTTON
    RECEIVED BY
    TICKET NUMBER(any random number generated)
    COMPLETED BY
    {all text boxes}
    Looking forward for a favorable reponse from your side

    Maverick
    It is not possible to post the codes for your requirement.Also you have not mentioned whether you want to use this web app for portal application or simple web application which will be running on weblogic server.
    If you are using portal application
    the JSPs will be the part of JPF(Java Page Flow)
    If you are using web application
    You have to create jsp in weblogic workshop.
    You can use weblogic workshop help to do that
    Also you can find help on www.edocs.bea.com
    Regards
    Bishnu

  • CS5/CS4 GUI User Interface Design

    I have always been very unimpressed with the user interface design on Adobe CS4.  It's riddled with problems and changes that make no sense and offer no advantages.
    For example, there is no longer a normal Windows title bar in many of the CS4 apps.  This makes it much more difficult to maximize/restore applications since normally a Windows user could simply throw the mouse to the top edge of the screen and double click the title bar.  In fact, doing this with CS4 apps has ZERO function (it doesn't do anything).  One would think that by moving the menu commands to the top bar of the window chrome, Adobe would make these menus accessible from the top-most edge of the screen in order to increase usability.  Unfortunately this is not so and clicking the top most edge of a maximized window does nothing.
    Two other very important parts of an application user interface are the upper left and upper right corners.  Normally when a Windows application is maximized, throwing your pointer to the upper right corner and clicking will close the application.  Throwing the pointer to the upper left corner and clicking will reveal the application window menu.  This happens in ALL applications... EXCEPT for Adobe CS4 programs.  These two extremely important application window command locations have been completely disabled in Adobe CS4 apps. Clicking the upper most corner pixels in a maximized Adobe CS4 app does nothing.
    Then there's the tabbed document window interface.  If you float a document window and maximize that, normally you would expect it to become maximized within the application window as it should.  Au contraire, in Adobe CS4, the document window maximizes itself ON TOP OF the application window, thus obscuring and disabling any access to the application window's tools/commands.  I did report that as a bug during beta, but obviously it was ignored.  Seems kind of obvious to me that the fact that a user could accidentally make the entire application completely unusable by maximizing a document window might be a problem.
    It still alludes me as to why Adobe changed the CS4 user interface to something that breaks so many Windows UI conventions.  Adobe CS3 was a practically perfect user interface design on Windows.  It was very customizable, all of the normal Windows functions were properly in place.
    What's the deal with the change?
    I thought maybe the file menu was moved in place of the title bar in order to make more room for other UI elements, but it's actually pretty much the same size as the old file menu title bar combination in CS3.
    With all these changes and with all the functionality losses, what exactly have we gained in the CS4 GUI?  Seriously, I'm asking.
    Anyway, I hope Adobe starts reading the Windows User Experience Guidelines (http://msdn.microsoft.com/en-us/library/aa511331.aspx) and brings CS5 back to the way a Windows application should behave.  Proper theme adherence would be nice too.
    Which brings me to Windows 7.  I love love love the way Windows 7 groups application document previews in one taskbar icon and allows aero-peek for open windows.  Adobe CS 4 obviously does not support this since it does not have normal document windows.  I hope CS5 does because it is a great feature.  I also hope Adobe CS5 implements the Windows 7 jumplists and maybe even a more touch/multi-touch friendly interface.  I've become pretty good at processing photos in Bridge using the touchscreen, and it's very cool, but it could use some improvements.
    For an example of great user interface design, has anyone tried Office 2010 on Windows 7 yet?  http://www.istartedsomething.com/20090512/screencaps-office-2010-technical-preview-teched- 2009-keynote/
    The faded transparent title bar and tabbed ribbon interface is absolutely gorgeous.

    @Adam:
    I agree with your comments! So well said!
    And there are other issues, too -- by the color of the app window, you don't know if the window is active or inactive (focus or not in focus). Titles of panels which are inactive, are dark text over dark background -- hardly readable at all... And many more.
    I really hope Adobe are listening...

  • Why hasn't Adobe navigation and user interface design improved as much as it could have over time?

    I haven't tried CS6. I'm sure it's great based on what i've seen alone. But as a user of adobe products for a number of years, i have to noticed there are still a lot of stagnant,awkward, stiff, irriating, slowing down elements found in the navigation and user interface on cs3-cs5, that i'm sure could have been eliminated or improved on at least from 2005 or 2007 onwards. I find some of these things inexcusable and unprogressive from bad traits that defined 1980's and 1990's general computer navigation and so on.
    CS5.5 has lessned this a bid bit and is more fluid in bits and pieces but for those using cs3-cs5 and in general, i find some things just horrid. As a graphic designer no one is supposed to admit the flaws or irrations of these programs. We must hail them as god, never critisize, and always adjust to new things which i think is a bit fascististic and silly
    The way the tools, options are laid out can be improved to be quicker, and easier to find and use. Using your voice as a commanding system would be helpful as well.
    A lot of cmds are too complex to remember, they can be simplier or resemble the name of the tool or option. Its makes a chore to follow this system and competition for the smart *** who memormized all the cmds.
    The way in which you loose floating side boxes, and the amount of tools or names hidden in the bars sometimes seem random and its always a constant search to find them incase you forget where they are.
    The inability to open cs4 or 5 files in cs3 is just beyond extremly annoying. Whey shouldn't you be able to open cs1 or 2 files or photoshop 9 files  as well? Every five years work expires as well?
    The layering system gets tricky and seems that a lot of things don't work when you normally move things. Its about going back, remembering and clicking on this or that, looking it up to make everything work. Sometimes which leaves you in a rut and wastes a good amount of time. You will always find this even after you've been using it for years.
    The use of the fill paint/airbrushing, clone tool, lasso tool, pen tool, history being two steps back can be vastly improved to be much better to use
    Masking and tools that have more complex features should find a way be automatically done or sampled. They can also have less complex steps and tha ability to be  previewed,  automatic or simpler  ( in case you can't remember how to do something or aren't getting it)
    A lot of the special effects, and blending modes are useless, outdated, super-ugly and don't resemble  true darkroom effects ( such as polarization, and bas-relief for example)  which they could much more vividly done. There also could be more options that are closer to repro cameras/CTP software for halftoning and more complex digital effects.
    Having to press or get used to pressing muliple keys or clicks for the most basic things simultaneously can be reduced to be easier
    Adjusting text, new documents, photos should have a smoother, quicker navigational experince where things a lot of room to be , clicked back, re-done, saved in the wrong place etc..
    Indesign could use more shapes, include more features that illustrator has, and possibly even photoshop to save time.
    There should be a way to remind you of features, complex things you've forgotten, other than history and daily usage/practice of the programs
    The help should resemble more of "visual -learners" guide books with voice features.
    There are a lot more
    Regarding other things:
    I think the price encorages more piracy and allows people to not have a concept of what is means to owning software.
    The loss of a manual or lessening of them for certain programs is a loss because it's always useful to  physical info you can flip through while looking at your program.
    I think adobe should make entirely better products for professionals or people in the industry rather than spoonfeeding the same software to all.
    They should also make less expensive add-ons like before for graphic software.
    What do you adobe could have improved over time and if so what do you think they could have improved on?

    You have this wishform to suggest improvements to Adobe products:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    and the Creative Suites forums are here:
    http://forums.adobe.com/community/creativesuites
    This specific forum is only for discussions on the forums themselves, so you are not very likely to get any change by posting your comments here.

  • How much do you get paid annually for this job User Interface Designer?

    how much do you get paid annually for this job User Interface Designer?

    Apple probably will not discuss salaries even for specific jobs other than with applicants. If you wish to discuss salaries, you'll most likely have to apply for a specific position and then get beyond the initial screening.
    This issue has nothing to do with Apple Remote Desktop, the topic of this forum, by the way.
    Regards.

Maybe you are looking for