How to create a new tab in CRMD_ORDER for custom fields

Hi Expert,
I have added custom fields in crmd_customer_ i through EEWB .
Now i want to display the fields in a new tab in CRMD_ORDER.
can you please guide me how to create a new Tab step by step procedure.
Thanks & Regards,
Avi

Dear Avi,
please be aware that crmd_order is no longer supported since crm2007 (6.00). That means EEWB is not the right tool to add customer fields because only WEBUI is supported. There you can use the AET tool to create own fields or tables via configuration.
However please see note 1037748 where you get more information and help.
Best regards
Rene

Similar Messages

  • How to create a new tab inside a existing subtab on a page.

    Hi,
    How can I create a new tab inside a existing subtab on a page?
    If I change directly on the page.xml it will not maintain compatibility with upgrades. Am I right?
    Thanks,
    Marcelo

    Marcelo,
    Well basically you are adding a stackLayout bean and using that adding your region. Are you able to see the changes and run the page without any error?
    As you are manipulating the file manually, you can never be sure of whether its going to cause issues later on or not. And as mentioned earlier if OAF doesn't support creating the subtab using personalization, there are bound to be some limitations from the framework side. Also what personalization allows is to create items and not regions. So better stick to a rigorous testing to catch any issues early on.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to create a new tab it will show the most recent/viewed page?

    When I accidentally downloaded Incredibar, when open a new tab it keeps showing "My start by incredibar", and also very slow when loading that page. I want to get back my most recent/viewed page. I did delete the Incredibar but the problem still goes on...

    See:
    *[[/questions/930367?page=2]]
    *[[/questions/931841]]
    *[[/questions/860323]]
    Try to reset some preferences to the default with the SearchReset extension:
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the about:addons page.

  • How to create a new "tab" in the Library?

    Ok I know how to add, change and create playlists but I can't see how to do the to the library.
    My issue is... I have some music clips (mpeg4) which I've sync'd to my Ipod Video and are located in the "movies" tab (both in iTunes and on the iPod). I also have a heap of language lessons which are mpeg4 aswell, what this means is the too are put in the "movie" tab and therefore means my Thai lessons and music clips are all mixed in together.
    Is there anyway around this??
    Cheers for any advice,
    maro.
    MacBook Pro   Mac OS X (10.4.9)   iPod Video 80gb

    You can create ordinary or smart playlists which contain video. You can then access them from the playlist. On your iPod you have to go to the video section and then access the playlist.

  • How to create a new tab to a dialog box in Illustrator CS3 Plug-in?

    Hi,
    Im creating a dialog using Plugin in Visual Studio 2005. I need to add another dialog in tab.
    For example in the existing sample dialog another dialog Test has to be added.. How this can be done?
    Anyone guide me..

    It sounds like you're trying to get a floating panel dialog to dock with another one -- is that the case? If so, that's what I was trying to clarify earlier in the thread; there are tabs on modal dialogs, and there are tabbed docked panels, and they're two different things
    If you're trying to dock two panels, you're on the right track -- you can definitely use sADMDialogGroup->SetTabGroup(). It does require you to know the name of the dialog group you're adding it to though. Typically, you use this functionality to restore a panel to wherever it was when Illustrator was last running, and you use preferences to store the value in the meantime. If you're just trying to stick two dialogs together, you need to make sure of a few things:
    1) They're both using a dialog style from this list: kADMResizingFloatingDialogStyle, kADMFloatingDialogStyle or kADMTabbedFloatingDialogStyle.
    2) They have to both have their Tab Group set to the same string value.
    That should dock them together, but again, typically you just grab the tab group on shutdown and save it to preferences, then on load read it from preferences and set it on the dialog again. That way they get regrouped wherever they last were.

  • How to create a new tab on the left side of bcc home page

    Hi,
    I am trying to create inventory tab at the left side of bcc navigation.
    But I am facing these errors:
    Caused by: javax.servlet.ServletException: javax.servlet.jsp.JspException: An error occurred while evaluating custom action attribute "value" with value "${ac
    r occurred while getting property "activitySourceName" from an instance of class atg.bizui.activity.PortalActivitySource (java.util.MissingResourceException:
    WebAppResources, locale en_US).
    Please let me know how to resolve this.

    modify genericActivityDefinitionFiles attribute in /atg/commerce/web/CommerceActivitySource component to add your customized xml file. you can refer the following xml file:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE generic-activities
    PUBLIC "-//Art Technology Group, Inc.//DTD General SQL Adapter//EN"
    "http://www.atg.com/dtds/activitymanager/activitymanager_1.0.dtd">
    <generic-activities>
    <activity>
    <id>RBImporter</id>
         <resource-bundle>com.resources.WebAppResources</resource-bundle>
    <display-name-resource>rbImporterDisplayName</display-name-resource>
    <description-resource>rbImporterDescription</description-resource>
    <destination-page>
    <url>/publishing/RBImporter/RBImportManager.jsp?project=</url>
    <clear-context>true</clear-context>
    <acl>Profile$role$epubAdmin:read;Profile$role$epubSuperAdmin:read;Profile$role$GlobalMerchandiser:read;</acl>
    </destination-page>
    </activity>
    </generic-activities>

  • What is the BADI to create a new tab in ME21N transaction

    Hi,
    I have created a new document type zbr with the transaction spro.
    I wanted to add a new tab for the given document type zbr. How to create a new tab for the document type.
    How to create a new tab using BADI. what is BADI used to create the tab

    Hi,
    Pls check BAdI 'ME_GUI_PO_CUST'  for your reqmt.
    Pravat.
    <i>*Reward points if helpful</i>

  • How to create a new line in label in Xcode

    How to create a new line in label. for example I have two buttons & one label. when i press first button, l want to change the label text to "Hello World". then when I press the second button, on the same label I need to display"Good Bye" on the next line in xcode 5?
    I want to display the lablel like below:
    Hello World
    Good Bye

    I am using Xcode to develop an app for iOS.
    I tried using multi-line label & belwo is my code.
    - (IBAction)change:(UIButton *)sender {
        self.Screen.text = @"\nHello World";
    - (IBAction)newChange:(UIButton *)sender {
          self.Screen.text = @"\nGood bye";
    everytime when i pressed the button, it replacing the whold lable text instead of adding the second line.

  • How to create a new field for Q3 - QM notification in Header and item level

    Dear All,
    l
               Sub: How to create a new field for Q3 - QM notification in Header and item level
    Ref. the link --> Quality Notification
    We want to create a new field in header level and item level.
    As per the thread the solution is given below.
    In the IMG Config: Quality Management -> Quality Notification -> Notification Types -> Define screen areas for notification types Then Choose 'Define screen areas' Then Click on 'New entries' button Now, select the relevant Notification Type and click in 'Enter'. Select the 'Iten Cases' register and remember to setup the Tabstrip Header, Icon, etc. Set the 'Tabstrip active' flag. Then Save.
    Quality Notification -> Notification Types -> Define screen areas for notification types
    WE ARE UNABLE TO FIND IN CUSTOMIZATION PATH --> DEFINE SCREEN AREAS FOR NOTIFICATION TYPES.
    Please help.
    Question No. 2 :
    THE REQUIREMENT IS GIVEN BELOW.
    We want to hide the field in Q3 - QM Notification
    In header --> Reference tab --> Item (sub heading) --> "DEFECT LOCATION" FIELD TO BE ELIMINATED (HIDE)
    Ref the link --> Quality notification
    The solutiion is given below.
    Hi Sami,
    We can hide the collumns using the Transaction OQM1 and Program Name SAPLIQS0.
    Lets say Defect location need to be hidden, the field TXTCDOT need to have the radio button HIDE.
    Hope this will suffice your requirement.
    Kindly ask me if you need any other details.
    Thanks & Regards,
    Srinivas.D
    Hi Sami,
    We can hide the collumns using the Transaction OQM1 and Program Name SAPLIQS0.
    Lets say Defect location need to be hidden, the field TXTCDOT need to have the radio button HIDE.
    Hope this will suffice your requirement.
    Kindly ask me if you need any other details.
    Thanks & Regards,
    Srinivas.D
    By double clicking the "DEFECTIVE QUANTITY (EXTERNAL), WE COULD NOT GET --> field TXTCDOT .
    Plese do the needful.
    We are using ECC6.0 Ehp3 and Ehp4.
    With Best Regards,
    Raghu Sharma

    Dear Pushpa,
    Transaction Code :SHD0 is working fine.
    Please accept my sincere thanks for your sharing your Knowledge.
    I am able to fulfill my
    Regarding the enhancement, I have not tried.
    Once I will complete, I will award the fulll marks to you.
    With Best Regards,
    Raghu Sharma

  • How do I have new tabs be a blank page with curser in address bar.

    When I create a new tab it opens on yahoo's search page. I have to mouse over and click in the address bar to type an address. Or I can hit tab 10 or so times. I used to just hit control+t and I could start typing the URL.
    How do I change it so a new tab is ready to go, that is, all I have to do is start typing the URL, bookmark name etc?

    A new tab should open with a blank page by default.<br />
    If that isn't happening then you have an extension that is casing it.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • BADI:problem with creating a new tab in BADI

    Hi
    I'm new to BADI's.
    i have a requriement to add a new tab in the MIGO transaction and add a field in that new tab .
    my Functional specification author is suggesting to use the BADI "MB_MIGO_ITEM_BADI" to create a new TAB .
    But i'm not find any function code availale in this BADI .
    Can anybody tell me how to use this BADI "MB_MIGO_ITEM_BADI" to create a new TAB .
    Also can anybody provide me any documentation available in designing a new TAB or new screen using BADI's ?

    Hi pawan
    Try this badi :   MB_MIGO_BADI  -
    (BAdI in MIGO for External Detail Subscreens)  as the name suggest ,
    If you want to add a screen in header level use : Method : PBO_header an code as :
        e_cprog   = 'ZMMPRM0001'.     """ Your screen created
        e_dynnr   = '1000'.                     "Your screen No
        e_heading = 'TEXT ID '(004).    """" Name of the screen to be created .
      ELSE .
        e_cprog   = 'ZMMPRM0001'.
        e_dynnr   = '1000'.                     "External fields: Display
        e_heading = 'TEXT ID '."(004).
    or if at item level
    u can use methid : PBO_DETAIL
    for item level screen creation . and code in the same maaner ..
    You can explore the remaning methods as per your requirements .
    Hope it helps ..!
    Regrads
    Swapnil P KAmble

  • How to create a new Condition for tax as VAT ( 4 % )  in SAP ? .

    Dear All ,
                           Pl guide that " How to create a new Condition for tax as VAT ( 4 % )  in SAP ? . What are all necessary requirements to do so , I need to have all steps so that i should feel very confident . For example what data is to be ticked in Control tab during cond. creation , in the same way how to put this cond. in Pricing procedure ? pl write all necessary thing which are required during this process .
    Thanx & deep regrads to all in adv.
    sap11

    In tax we can configure taxprocedure two types i.e., taxinn and tainj. If you adopt taxinn procedure if  it is other than VAT condition first you have to create the condition type and then you have to go to FTXP and assign the tax required VAT percentage to the repective % to ded or non ded VAT condion type. In second step you have to assign this tax code to respective company code.
    If you adopt taxinj procedure you have to a create tax code with FTXP T-code by assigning the values to the respective and save conditions.
    Regards,
    Bhuvan

  • How to create a new tag in page properties in the sidekick of geometrrix page

    how to create a new tag in page properties in the sidekick of geometrrix pagesame as basic, advanced, blue print??

    Hi prachi,
        Is it tag OR Tab ? Seems like you are looking for Tab. Look at [1] & overlay to custamize per your need. Or define at your page component.
        [1]   /libs/foundation/components/page/dialog/items/tabs/items
    Thanks,
    Sham

  • How to open a new tab in safari

    how do i open a new tab in safari and how do i copy and paste a simple sentence?

    If choose to Show Tab Bar, then there will be a + sign on the right hand end of the Tab Bar, to Create a new tab.

  • How can i add new tab in Business Partner

    hi every body,
    Present i am working on SAP CRM 3.0 version. i need to add new tab in BP.  Here EEWB not available. How can i add new tab?

    Hi  babu,
    you can add new tab in Buisness partner with the help of screen configaration functionality,in screen configaration u select first bp role (sold to party or retailer etc) and click on process screen sequence  and again click on overview and u will get fields right side of the screen, there u will see the field "new screen" click on that and add description for new tab and click on continue,save the document
    now u will again create a bp with modified bp role u will see changes means u will see new tab page on perticular bp role
    i hope this is helpful
    Rewards points if helpful
    Thanks&regards
    kishore kumar

Maybe you are looking for

  • IC Webclient issue

    Hi, I am trying to do the first exercise which is in the IC Webclient Cookbook for CRM5.0. I followed all the steps which are given in the cookbook, but i am not able to view the changes made on the screen. I created new IC Web profile, Assigned requ

  • Color Profile in Safari

    Hello, I'm looking for some help! Any idea why same image is displayed different in Safari on two different computers? I have to laptops, both calibrated the same.. When I try to open image on my main computer blue colors look more purple than on my

  • Weblogic reports error that a datasource exists

    i have a database that was set up in weblogic, and I could see the JDBC connections, but removed this, saved settings and no longer view them in the application in weblogic, nor are the entries in the tools properties file or config.xml. but the syst

  • Translate Hoover Collaboration Link in Tool Area

    Hello, Does anyone know how to change the translation of the hoover description of the collaboration link in the Tool Area? I already tried by translating the Tool Area iView, but it doesn't contain the label 'Start the collaboration launch pad. Look

  • Scrolling question when using JLists

    I have a JList inside of a JScrollPane that I add items to dynamically. When a new item is added to the bottom of the list I would like the JList to somehow scroll so that the newest item is always displayed. Basically I want to anchor the vertical s