Creation of new field in Web Page

Hi All,
i am new in SAP CRM 2007. i wanted to add one field therefore i went to EEWB and try to create one extension. In extension i have enter all fields like Name, Description, EEW Bus. Object and Extension Type when i click on continue system is giving error that is "No request was sent" (No request was sent through the interface).
please tell me how to solve this error???
Thanks & Regards,
RAJ

Hi Raj,
Check if you have followed the below steps:
-While creating new project in EEWB you Need to enter existing package then you will get transport request Dialog box .
-Click on create on continue which will then create the project.
-Then right click on Project create extesion.You must select EEW Bus Object and Extension Type Header or Item level.
-Then you will get the Wizzard and assign Transaction TYpe while proceeding in Wizzard.
-In define field you must maintain the data type i.e Character or check box
-In assign field must check header or Item and assign the subbobject and continue.
It may take some time but will create a new field.
Regds
Arup

Similar Messages

  • Add new field in OAF Page.

    I want to personalize a OAF page. My question is, Can i add new field in OAF page linked with database field and some calculations.
    I am trying to add new field in Termination page of Self service HR which will show the hiredate of employee and number of year served.

    Hi,
    As already specified by Kali..
    Step 1 - Create a new Field of type MessageStyledText using Personalization Link.
    Step 2 - Set the corresponding VO Attribute, which will fetch Hire Date.
    Step 3 - Extend the CO and calculate the Served Year, using Java Code.
    Step 4- Set the same value over the bean manually.
    Regards,
    Gyan

  • Hiow to add a new field in bsp page.

    Hi Experts,
    I am new to BSP,
    I am doing project in erec, I want to know how to add new fields in BSP page.
    Like I want to add a new field in portal where I could write some comment.
    Regards,
    amod

    Please try to post this question in BSP forum for getting better answers.
    For Enhancing an existing Standard BSP application , refer the below link.
    http://help.sap.com/saphelp_crm70/helpdata/EN/20/b0f4f819e844df9f47bc9c70c795f4/content.htm
    Raghu

  • New Oracle ACE web-page an APEX application!

    Hi,
    have you already noticed, the new Oracle ACE web-page where you can search and view the profile of the ACE's is an Oracle APEX application!
    http://www.oracle.com/technology/community/oracle_ace/index.html
    APEX is spreading... :-)
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

    I guess they get a special exemption from the rule against running a production app on apex.oracle.com.
    Nice to see John's book mentioned on the front page.

  • Creation of New field in Relationship block of contact page

    Hi,
    I have created a new field as value attribute in Relationship block of contact overview page. Since both AET and EEWB did not allow creation of the field as part of BUT051 I had to create value atribute. I have custom logic for the field. Can you please let me know how I can populate the field.
    Thanks,
    JC

    Hi JC,
    The context node that you are using is a mixed node, so from this node you need to get value node so that you can cast the value into cl_bsp_wd_value_node.
    Here's the sample code for getter and setter method of that attribute:
    DATA:
       lr_mixed TYPE REF TO cl_bsp_wd_mixed_node,
       lr_value_node TYPE REF TO cl_bsp_wd_value_node.
    lr_mixed ?= current  or lr_mixed ?= iterator. " use either of the code i dont have system right now
    lr_value_node ?=  lr_mixed_node->if_bsp_wd_ext_property_access~get_value_node( ).
    Here, from lr_value_node get the property access method and set the attribute value to VALUE parameter.
    Thats it
    Thanks,
    Bhushan

  • Display new Field in Web UI

    Hello all,
    I am working on a CRM 2007 - Web UI.
    We customized some Activities and are now optimizing the UI pages for this activities.
    Now I want to bring a new Field at the surface (G-KAM) at the activity-creation screen.
    I defined a G-KAM during the activity customizing as an partner function. Now I wand to show this field at the top box "Appointment Details". My Partner determination would rund at the page and should fill this field. The partner determination runs very well yet.
    However I don`t know where I can find this field via Transaction "BSP_WD_CMPWP". I`ve loaded the component "BT126H_APPT" and want to bring this field in view "BT126H_APPT/ApptDetails".
    How can I do this?
    Thanks in advance.
    Mathias

    Mathias,
    I think this has been answered before and as a moderator I should know better, but I will give you the general answer regardless and then try to find the original topic.
    So basically you created a partner function and want to have direct maintenance of that function on the screen.  This is not a simple as adding a new field.  However it can be done.
    You have to create a new context node similar to the BTPARTNERACCOUNT node on the screen.  It will be a model node of BTPartner
    It will be dependent to BTPARTNERSET and then the BOL relation will be one that corresponds to your partner function.  You'll model the redefinitiosn in the new node after the BTPARTNERACCOUNT methods that have been redefined.
    You will then add the field partnerno field from the new context node into your view.  Do a further search in this forum on BTPartner and you will find more details.
    Just found the thread and it is located here:
    Re: not standard partner functions in general data screen transaction
    Take care,
    Stephen

  • Adding new field to OAF Page

    Hi All,
    I am beginner in OAF. We want to add a new field in a OAF page. We wanted to do it by extending Standard VO i.e. present already. Now will it be sufficient if I download only View Object and XXPG.xml related to the OA Page or should I download all the class files and xml files from APPL_TOP to deploy the environment in Jdeveloper
    As I want to add a field to VO to reflect the change in OA Page, does it mean I am extending OA Page or just extending VO. Iis there any better way of doing it.
    Please advice.
    Thanks,
    Abhishek.
    Edited by: 853343 on Jan 11, 2012 6:36 AM

    Abhishek.
    please post your question in the forum {forum:id=210}
    Timo

  • Adding new field to the page when the field source not available

    Hi,
    I have a requirement to add vendor_serial_number (manufacturer's serial number) to the page /oracle/apps/csi/instance/general/webui/InstanceDetailsPG. This column is available in mtl_serial_numbers_all_v table. I don't see any VO in that page has access to this. What is the best approach to add this field in the page.
    Create a new VO with the query to get the vendor_serail_number based on the item_number, serial_number.
    Attach the VO to the AM InstanceDetailsAM or create a new custom AM as we can't attach the new VO to the seeded AM.
    Add a item to the page that gets the column value from this new VO.
    Please suggest.
    Thanks,
    HC

    1. Create the textfield item using personalization.
    2. Create a View Object to get the field
    3. Extend the InstanceDetailsCO and attach the VO to AM programatically in the extended CO.
    Any suggestions.
    Thanks,
    HC

  • Unable to clear file upload fields in web pages.

    When visiting any site which has the option to upload a file, I am unable to clear the field if I change my mind about uploading a file.
    A website has a BROWSE or UPLOAD field and button. Pressing the button brings up the open file dialog. I select a file and select open in the dialog. If I then click on the field containing the path/file, I am presented with the open file dialog. I cannot clear or edit the field on the web page.
    I originally thought it was something with the web page I visited, but then found another page did the same thing.

    For instance if you go to this page again in Safari,
    http://www.apple.com/quicktime/qtv/mwsf06/
    and then select "View Source" from the View menu, then press command-f to "find" within the page and search for ".mov"
    You will find this, which shows the url of the movie itself.
    <param name="href" value="http://stream.qtv.apple.com/events/jan/mw2006/mmw_2006_650ref.mov">
    If you copy just this part:
    http://stream.qtv.apple.com/events/jan/mw2006/mmw_2006_650ref.mov
    And open QuickTime Player, go to the File menu, select "Open URL" the movie will play.
    If you try the same technique on the page at the link provided by your client, it will allow you to bypass the html code that may be doing an outdated compatibility check and the movie may play. Or it may tell you that you are missing components (codecs, compressors etc.) in which case, post here again.

  • How do I uninstall Mavericks and recover Lion?  I have a brand new iMac and web pages stall or freeze since I installed Mavericks.  I can't get it to download software for my printer when I connect it.

    I have a brand new iMac.  It was working fine until I downloaded Mavericks.  Now I have web pages that freeze while trying to load.  The blue in the address bar stalls and freezes.  If I try to load from page 1 to a later page, or reverse that, I also have the same problem.  I tried to connect my printer for the first time, and again, the blue progress bar froze.  Then I got the yellow  triangle telling me there was a connection problem.  My internet connection is via an Air Card as that is my only option where I live.  I packed up the whole new iMac and took it to my Air Card provider, where they also have very fast Wifi, and they had the same problem with Wifi.  I use my Air Card with my MacBook and it works JUST GREAT!  I really want to return to Lion.  HELP.

    The only way to retutn to Lion is to format your drive (erase, lose all) and either:
    1. clone back the clone copy i hoep you have, or
    2. first backup your files, then format and install Lion again
    But really, mavericks works great. You have a problem. Find out why. First, what unusual software do oyu have installed that may be conflicting with it? Virus, system modifiers, etc?  Second what OLD software do you have that might be the problem.  finally, you might need to do a re-install if something errored during install.
    Grant

  • How can I add a "search" field for web pages content-not blogs or podcasts?

    This seems to be such a basic function, I can't believe I'm having so much trouble. I don't have a blog or a podcast on my new website that I'm in the process of designing. So how do I allow people who'll visit my site to search there for specified content? The only instructions I find are for the RSS in inspector for blogs or podcasts. All I want is for people to be able to search my site/web pages (that have no blogs or podcasts on them). This must be a common request... or am I crazy? How do I do that?
    Thanks for your help.

    I think I've answered my own question after a few hours of searching:
    http://services.google.com/searchcode2.html?accept=on
    Thank you Google.

  • WPC Problem after creation of new Site - no "Edit Page" Link available

    Hello,
    I have a problem with WebPageComposer (WPC) and Edit Page link.
    We are currently on EP 7.01 SP6.
    (I have the wpc_editor_role for my user)
    I am doing the following:
    1) I create a new site, (derived permissions for all folders is wpc_editor_role - Full Control),
    2) I Create some article within its Site Content folder
    3) I create a new web page in its Web Pages folder
    4) assign the article to the web page and publish it
    5) add web page within Site Navigation as a new node
    6) I used Publish Site Navigation
    After clicking on the web page within Web Pages folder it does a preview.
    Our older WPC content does display the Edit Page link - the new one does not.
    What step am I missing here?
    Maybe it is an upgrade issue?
    Best Regards, Thomas
    P.S.: copying one of our older WPC pages into my new site + renaming it via KM + removing old content + assigning new one does display the correct link after publishing it! Any indeas?

    Dear Thomas,
    It sounds like your are doing all the right actions, I don't think that your missing any step in the process, but please consider the following.
    Are you using a custom WPC layout template? The reason I ask is that I have developed a number of WPC custom templates and in some circumstances I have needed to remove/hide the "pageheader" section of the template. This action removed the links from displaying at the top of the page. Try creating and publishing a web page using a SAP standard WPC layout and see if the edit link appears once the page is published.
    The editing and preview page views do not display the "edit" link, they only display the other page header links that can be assigned to a page. The edit link is only visible when viewing the page via the portal, not in edit mode. Another question, was the deployment of KMCWPC successful and without error? I have experienced issues where the deployment did not fully complete, causing some subtle issues regarding publishing of WPC content and redeploying KMCWPC fixed the issue. I hope this helps.
    Best Regards,
    Chris

  • Creating New Field in Web UI

    Hi Experts!
    Please help.
    We created a new field in the Web UI using AET and we noticed that if we select Part of a BO "ORDERADM_H", the field (Date Type) we created will not be editable and will display "Not Bound". However, when I select Part of a BO "ORDERADM_I", the field will be created successfully. We need to use ORDERADM_H for our requirement.
    I think it is also important to mention here that our original development server was already shut down and our current development server is a copy of our production server. I am thinking that this may have caused this error. If so, please let me know how to resolve it.
    Thank you in advance!
    Sherwin

    Hi Sherwin,
    I can give one solution for you
    implement the GET_I_ method of the corresponding field attribute and
    set the value  rv_disabled = 'FALSE'.
    but one more thing you check in the BOL structure its added or not if not follow the below link.
    Custom field added by AET is not editable - not added to BOL structure
    Regards,
    vishwanath

  • New Pagelayout in Web page composer and TREX problem

    Hello Experts-
    I have created a custom page layout for web page composer pages. I havent included it any bundle file to, because we use it only for english language.  Everything works as desired. But any new page created with this layout. System is not able to index it. Its fails to index with preparation failed error.
    Does it have anything to do with the budnle file?
    All other pages are getting indexed.
    We are on EP 7.018 version of portal and same withh web page composer too.
    Please let me know your thoughts.
    Thanks,
    Raj.

    Martin-
    I thought the problem was solved its not.
    I am seeing the following error message in the logs.
    [1800] 2009-09-11 14:55:42.266 e preprocessor Preprocessor.cpp(00897) : HTTPHEAD failed for URL
    http://host:50100/irj/servlet/prt/portal/prtroot/docs/guid/f035c289-f877-2c10-8989-af6c166e9bf9?prtmode=trex with Httpstatus 400
    [1800] 2009-09-11 14:55:42.267 e preprocessor Preprocessor.cpp(03553) : HANDLE: DISPATCH - Processing Document with key /wpccontent/Sites/AAA/webpages/home/output.xml' failed, returning PREPROCESSOR_ACTIVITY_ERROR (Code 6400)
    [2057] 2009-09-11 14:55:45.458 e preprocessor Preprocessor.cpp(00897) : HTTPHEAD failed for URL
    http://host:50100/irj/servlet/prt/portal/prtroot/docs/guid/2047530a-fb09-2c10-6382-9e379fb332f7?prtmode=trex with Httpstatus 400
    [2057] 2009-09-11 14:55:45.458 e preprocessor Preprocessor.cpp(03553) :
    HANDLE: DISPATCH - Processing Document with key '/wpccontent/Sites/AA/WebPages/home/output.xml' failed, returning PREPROCESSOR_ACTIVITY_ERROR (Code 6400)
    [1800] 2009-09-11 14:55:50.410 e preprocessor Preprocessor.cpp(00897) : HTTPHEAD failed for URL
    http://host:50100/irj/servlet/prt/portal/prtroot/docs/guid/2047530a-fb09-2c10-6382-9e379fb332f7?prtmode=trex with Httpstatus 400
    [1800] 2009-09-11 14:55:50.411 e preprocessor Preprocessor.cpp(03553) :
    HANDLE: DISPATCH - Processing Document with key '/wpccontent/Sites/AAA/webpages/home/output.xml' failed, returning PREPROCESSOR_ACTIVITY_ERROR (Code 6400)

  • New Field in WEB IC

    Hi All,
    I have we have done some enhancement to Activity header table and we manage to bring that field in SAP GUI. Now we want to bring that field in Web IC. We alreadly copied CRM_IC application to Z_CRM_IC
    In order to bring that field what r all steps need to be done. I can see that field in BOl structure ...now I want that field in web IC
    Please Help me on this.
    Additional info: we are using CRM 5.0
    Kind Regards,
    Kumar

    Hi,
    You need to update the BSP Page to add the field to the layout.
    Regards
    Prasenjit

Maybe you are looking for