How to create new field while upgrading from CRM 4.0 to 7.0

Hi ,
How do we create new field on UI and store data into existing field in database?
Is there any option in AET to skip the creation of new field in the database table ?
Custom field is already created in GUI and database table while using CRM 4.0
Now, after upgrading to 7.0 EHP3 , I need to bring this field on the UI .
Using AET may create new field again in the database table.Please suggest.
New filed needed to be created in Marketing Campaign Element Header data.
Thanks
Jayasri

Hi Jayasri,
As a custom fields are already there in crm 4.0. You don't need to use AET again to add field.
These enhancements still exist after the upgrade. Dependent on the enhancement object and type some manual steps are necessary.
For example regarding a single field enhancement for the BP the whole framework is enhanced after the upgrade. There is only one manual step to bring the field on the relevant view(s) via the UI Configuration Tool. For whole BP tables some more manual steps are necessary, these steps are described in the note 1069791 - CRM WebClient UI for EEW enhancements (reference to more notes regarding the EEW after the upgrade).
For set types, we need to generate UI With the help of the UI configuration tool the settypes could become visible in the Web UI.
I didn't understood your scenario, can add little more information why you want to add field by AET if available in DB?
Refer
FAQ - SAP CRM Upgrade from release 4.0 to 7.0 
Regards,
Arjun

Similar Messages

  • How to create new folders while installing the VI in some other PC

    Hi,
         I want to create a folder while installing the VI to some other maching using installer/setup.exe and also i want to copy some excel file to the c: drive of installing PC while installing is their anyway to do this. Please help me in this regards
    Regards
    Shivakumar Singh

    Hi
    If you are installing vi from CD, then you might use the first approach with application builder.
    If you just want to use any CD, than I think you should consider some interactive script with the user.
    You can easily creat one with the windows commands, by means of *.cmd files. You can read about it by typing "help cmd" and/or "help" in the RUN in Windows. Then I propose to search the web for some examples on how to write the cmd scripts. If you know TCL there will be no problem for you.
    You can also try to ask some dudes on the WinNT newsgroup. They will write it in no time.
    Unfortunatelly I have now no time to write the script for you.
    good luck
    Pawel

  • How to create new field groups in AA master data screen layout?

    Hello,
    We are using ECC 6.0
    We have created bunch of new fields for asset master data, but we want to make them visible only for particular asset class. So we need to customize in SPRO Asset Master Data Screen Layout, but there no specific field groups that we can customize. So how to create and add new field groups to manage them by radiobuttons Required, Optional, No or Display?

    hi,
    think, it's not possible.
    look here:
    http://help.sap.com/saphelp_47x200/helpdata/en/4f/71e05a448011d189f00000e81ddfac/frameset.htm
    "The field groups and their respective fields are defined in system tables"
    kind regards
    Andreas

  • How to add new fields in CRMD_CUSTOMER_H in CRM 3.0 ?

    Hi,
    I I have a requirement in CRM 3.0  to add a new field to crm structure CUSTOMER_H but not sure how to do this. I know in 7.0 we have transaction EEWB to do this but in 3.0 i have no clue. Please help how to do this. Thanks in advance!
    Regards,
    Bhanu

    Moved this over to CRM General & Framework.
    Firstoff technically SAP CRM 3.0 is not even supported in general maintenance by SAP.  However for memory lane, extensions in CRM 3.0 must be coded manually. EEWB did not exist until CRM 4.0.    In general there should be a CI include in CRMD_CUSTOMER_H where you would put your fields.  The drawback is that you need to extend the BDOC structures and write the exits to populate/receive the fields on the inbound outbound bdocs manually along with the transfer to BW. 
    BTW since it is CRM 3.0 you probably have bigger problems than this, but that's just my opinion.
    Wow this makes things feel like 2002/2003 all over again for me.
    Take care,
    Stephen

  • How to create an interface for extractors from CRM to BI/BW

    Hi Experts,
                    My aim is to bring in data from CRM source to BI/BW target so for that we have found few extractors in CRM side which we need to use in BI. I would like to know how i can achieve this. I knw we can use web services for this, but i want to knw the procedure involved in doing this. I have mentioned few extractors which has to come from CRM system to BI/BW target system. Current we dont have these extractors in our BI/BW system. Also we dont have the connection to that particular CRM source. Please advice what has to be done for the above.
    Extractors
    1. 0CRM_FM_BPO
    2. 0CRM_FM_FND
    3. 0CRM_FM_FND_ATTR
    4. 0CRM_FM_FND_EXPENSE_TYPE_TEXT
    Thanks in advance
    Shiva

    Hi,
    First we need to create a RFC Connection between CRM To BW system. BASIS persons will create this connection.
    [Connection between Source Systems and BW|http://help.sap.com/saphelp_nw70/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm]
    1.After that we can need to activate data sources in RSA5 in CRM system,
    2.post processing in RSA6 in CRM.
    3.Replicate source system in  BW system.
    those data sources will come to BW.
    Do Business content activation in BW. After you can create Info packages and load data.
    Regards,
    Madhu

  • How to create new subsite while adding new item to the list by using javascript?

    hi,
    I hav a task ie, when I add item to the list then subsite will create with that list item title and description . So By using javascript, I have to create subsite while adding new item to the list.
    Help me to solve this.
    Thank you, 

    Is your item getting added through Javascript client object model ? If yes, you can write in the success delegate of your list creation method the logic to create the subsite.
    function CreateListItem()
    var clientContext = new SP.ClientContext.get_current();
    var oList = clientContext.get_web().get_lists().getByTitle('List Name');
    var itemCreateInfo = new SP.ListItemCreationInformation();
    this.oListItem = oList.addItem(itemCreateInfo);
    oListItem.set_item('Title', 'My New Item!');
    oListItem.set_item('Body', 'Hello World!');
    oListItem.update();
    clientContext.load(oListItem);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.CreateListItemOnSuccess), Function.createDelegate(this, this.onQueryFailed));
    function CreateListItemOnSuccess() {
    var subsiteTitle = oListItem.get_item('Title');
    //Logic to create a subsite
    function onQueryFailed(sender, args) {
    I have added a sample flow for the above scenario. Have a look at the following lnk for how you can craete a subsite using ecmascript.
    http://ravisoftltd.wordpress.com/2013/03/06/sharepoint-2010-create-site-with-ecma-script-with/
    Geetanjali Arora | My blogs |

  • How to Create new entry, while keeping CoS and nsRoles in tact...

    Hi,
    Here's the short version:
    How can one create a new entry/context in DS, copy the attributes from an existing entry (using JNDI) and save them in the new entry/context WITHOUT duplicating CoS or nsRole/DN info.
    Long version of the question:
    We are using DS 5.2 and Portal 6 (and messenger/calendar etc). We have our employees saved in DS. What I want to do is change a user's name/uid by copying the user's attributes (in JNDI) and create a New entry with the New uid, with all the other attributes the same. Then deleting the original entry.
    This is what I have done...
    1. Get all the employee's attributes... (abriviated)(ctx is the DirContext)
    NamingEnumeration answer = ctx.search(searchBase, filter, ctls);
    SearchResult sr = (SearchResult)answer.next();
    Attributes attrs = sr.getAttributes();
    2. Create a new employee with the same attributes (assume I use a different uid in the dn)
    ctx.createSubcontext(dn, attrs);
    This works...it copies all the attributes to the new entry -BUT- when you look at the LDIF file, it ADDS several more attributes to the new entry.
    Example: it adds the following...
    sunPortalNetletRules
    sunPortalGatewayEnableSSO
    sunPortalDesktopDpDocument
    sunPortalDesktopDpLastModifiedUser
    iplanet-am-user-auth-modules
    And about 20 others...
    Now if I am not mistaken, these are the CoS and roles that the DS uses and propagates down to the entry. But when I copy the attributes over, (using JNDI) I get these attributes too but I want to copy only the attributes that are unique and have DS handle the roles and CoS like it does for the original entry.
    Is there a way to tell the DS to just use the CoS or roles instead of duplicating all these attributes in this individual entry??? (and do it using JNDI)
    (sorry this question is sooooo long.)
    Thanks!
    Eric

    Hello Viji,
    I am extremely thank ful for the document.
    Kindly help me with below points of possible
    1)     if it is standard table (LFBK) , even then shall we will need to do the generate program 
    step in SCDO ?
    2)     does it generate Z-function module ?
    3)     do we need to call this function module at appropriate places to update the CDPOS and CDHDR 
    for changes in the standard table ?
    4)     I have already created custom business object for LFBK so that Iu2019ll be able to create entry 
    in SWEC (fyi)
    5)     how and when are the method used in the table maintenance generator called ?
    6)     Page 14 point 3 says that "Add a new entry to link the Change Document Object ZPRPS_CD and 
    table ZPRPS so that changes are recorded when table entries change."
    Does this mean that once we create SCDO and generate program, these two steps are  enough 
    for the SWED entry to create change log in CDPOS and CDHDR ?
    7)     It is understood that it is necessary that the change object in SWEC should be logged in 
    CDPOS and CDHDR only then the event would be created for the SWEC entry. is this correct ?
    in order to create change log for the change object in CDHDR and CDPOS, is the SCDO entry 
    and generate program steps enough or the methods of table  maintenance generator are also 
    required ?
    thank you very much for your time
    B

  • How to omit unused fields while import from delimited file

    I have a problem to select and load to table only needed fields from delimited free-format file. How to do it ? Anybody know ?

    If you cannot control what gets put in the file, I imagine the best easiest way would to be to create a temporary table which includes the unwanted columns, then move the data you want into the proper table afterwards.

  • How to create new rules and using 'From' condition ?

    All,
    I know, rules are a quota max as 256 ko.
    So, my problem is to move all mail from external writer of my directory.
    I want to create a folder Inbox\external where all mail have to be move on except internal mail.
    So I looked at :
    [-From <RecipientIdParameter[]>] ; [-FromAddressContainsWords <MultiValuedProperty>] and [-ExceptIfFrom <RecipientIdParameter[]>]  but, because of quota limitation, I could add all internal exchange recipients.
    Any idea ?
    Thanks

    Hi,
    If you would like to move the emails from external senders to a specific folder using Inbox rule.
    I’d recommend you create a  Dynamic Distribution Group and name it as
    internalrecipients. Then set it as All recipients in the filter tab. Now it is a group which contains all users and contacts in your organization.
    Next, set the Inbox rule in your client as below:
    Click on the Inbox folder and  new a Rule.
    Apply the rules on messages I receive.
    Send only to me.
    Move to the specified folder (new a folder named external).
    Except if from people or public group (internalrecipients).
    Run the rule now on message already in “Inbox”
    Finish.
    See if it works as you expected.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to create new catalog in OBIEE from presentation service

    Regards
    Frnds

    Hi,
    (1) Create a new directory on your file system where you want the catalog to be stored
    eg: d:\work\catalog\MyNewCatalog
    (2) Open Presentation Services config file, instanceconfig.xml, in a text editor:
    d:\OracleBIData\web\config\instanceconfig.xml
    (3) Set the catalog to your new, empty catalog
    <CatalogPath>d:\work\catalog\MyNewCatalog</CatalogPath>
    (4) Restart presentation server
    Control Panel->Services->Oracle BI Presentation Server (restart)

  • Create New Field in infotype 0001

    Hi
    Can any body guide me how to create new field in Infotype 0001,
    i want to create  two new fields with six reasons in each new field
    Thanks

    Hi,
    his can be acheived through enhancement. Hope these link helps
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/4f/d526be575e11d189270000e8322f96/content.htm.
    General steps are
    Step 1
    Using transaction PM01 chose the 'Enhance Infotype tab' and press the create 'All' button.
    Step 2
    Enter the new fields you wish to add to the Infotype.
    Step 3
    Once saved and activated the new fields will appear in the Infotype screen and database table
    Edited by: Raghu C on Nov 4, 2009 6:15 AM

  • How to create new form fields in several columns (spreadsheet) and have them named consecutively?

    Hopefully someone can help.  I created a new form from an Excel spreadsheet, but the form field recognition didn't "take" well and very little of the spreadsheet translated into form fields.  I need to create new fields (31) for each column (about 10) and I want the fields in each column to have a keyword from the parent column and the fields numbered consecutively.  I'm really hoping I don't have to do this manually!
    Next, is there a way to total the values in a column of fields (the same as the SUM function in Excel?) or does the form user have to dig out a calculator and add everything?
    Can I create an email (submit) button and direct how (ie email) and by what method the form is sent?
    Once the form is completed, is there a way for the user to lock it before sending it - ie a button they could press to make it no longer fillable?  Or can I set the document to be a regular .pdf once it leaves the host machine?
    I think that's it!  Hopefully someone can help soon - this is a work project that could be potentially very time consuming if I have to create each form field manually.  Thank you for any assistance!
    Cheers,
    LostintheNorth

    LostintheNorth wrote:
    Rats!  Thank you for your link - I may take you up on that... however for the purposes of this form I'm more than halfway done, so I might as well keep plugging away.  A workaround I found was to creat 32 of something I only need 31 of, then delete the parent.  Somehow even playing with spacing on the "create multiple fields" option as the fields are being created only gets the vertical alignment close - no matter what I do I still end up manually aligning (vertically) 31 little boxes for each column so they fit visually.  Grrrr.
    Yes, this can be very tricky. If you don't get the exact right offset between each field, the difference will accumulate and after a while it will be completely off.
    You just have to play around with it, until you get it right. Or almost right, and then adjust it manually.
    Another thing I've noticed, is that when you select one field and right click for properties, you get an expanded version, as opposed to select/shift/enter for a bunch of cells only yields an abbreviated properties box - what's up with that?  Is there a way to change this?  For instance, I had set the properties for a column of 31 cells to be number, 1 decimal place.  Halfway through my project, the lady I am doing the favor for tells me she would like 2 decimal places, requiring me to manually change each box for 62 cells!  Apparently cell formatting is not an option in the abreviated properties dialogue!  Is there a fix for that?
    No, there isn't. Some propeties you have to set manually (or get right the first time, before copying and pasting...). There is a way to do it with a script, but it's a bit complex and requires using an undocumented method.
    This next question is a bit more complicated, and may not be possible.  The form I am creating is for payroll purposes, so at the moment it is generic (31 days) and the user fills in the month manually. Is it possible to get the form to recognize a month value (or create a pulldown menu with a selection of months to choose from) and limit the days accordingly?  Or better yet, run a calendar function so that weekends and stat holidays are highlighted on the affected row?  Kind of like what you can do with an Excel spreadsheet, which is what I designed the form in at the start (then printed to .pdf - the form field recognition did NOT work well on my spreadsheet!  hence me doing every cell manually).  Is this even possible, and if so, is it something I could learn to do?
    Yeah, it's possible, but requires quite a bit of scripting knowledge. If you wish, contact me personally (by PM or email at try6767 at gmail dot com) and I could possibly create this for you.
    If you want to do it yourself, you would have to learn a lot about both the Date object in JS and about the various date printing and scanning methods in Acrobat JS.

  • While adding custom field in urgent change-Create new field button in AET is not coming

    Dear All,
    we have requirement to add some custom fields in urgent change document. while adding custom fields using AET, create new field button is not coming.
    Thanks in advance. points will be awarded.
    Rahul

    Hi Jignesh,
    Thanks for your valueble inputs, it really helped me to understand the process.
    I checked in Web UI configuration for urgent change document as you mentioned but still that button is not coming.
    In transaction BSP_WD_CMPWB, i have created enh. set: Z_ENHANCEMENT_SET.
    Can you tell what to selelect in application and page popup which comes after selecting Enhance component button. Actually i tried but i am not able to add new record in conf.
    Thanks in advance.

  • Creating new field in a communication structure

    Dear All,
    I am trying to create new field in a pricing communication structure in the ITEM level. I followed the below mentioned steps to do this.
    1. Added MATWA (Material Entered - Material determination) field in the structure KOMPAZ.
    2. Activated the structure.
    3. Now I need to allocate the new field in the table T681F to the usage and the application area, in which it is to be used.  (These are the steps I got from few documents and in the following link   [Re: Allowed fields are not showing in the Condition table])
    My question is.. How to add this field in T681F table?
    Ultimately, I am not getting this field in the Field catalog while creating condition table.

    Hi Prem,
    I hope you would have added the field MATWA with ZZMATWA as we need to do it with ZZ or YY for custom fields additions in the communication structure.
    After doing this, ideally there should not be any problem in adding ZZMATWA in the field catalogue. Try with the following menu path in the IMG
    Sales and Dist.->Basic Functions-> Pricing->Pricing Control->Define Condition tables Execute - Add field catalogue.
    Or in transaction code VOK0 by selecting the condition tables option in the menu.- Add field catalogue
    I hope this helps.
    Regards,
    Subbu

  • Changing/Creating Country Field in Address from ESS

    Friends,
    I am using country version 99 and working on new Implementation of ESS on ECC6.0.
    Can any body help me with the following:
    -  I am not able to Change/Create Country Field in Address from ESS
    I got the solution. I need to do the Following:
    - viekn field in IT0003 ishould not be empty
    - Need to work on report RPUFACEVIEKN and the feature IVWID
    Can any one help me how to do this?
    Thanks in Advance,
    Preethi

    Hi,
    Please check the threads.
    Personnel Information----Tab
    java.lang.NullPointerException
    Re: PC_UI Switch in T77S0 Table and T582G
    PG162 after upgrade
    Re: action  chanage
    Thanks & Regards,
    Sandip

Maybe you are looking for

  • Error in HR_KR_STRING_TO_XSTRING

    Hi All, I need to convert the string to xstring and using the function module HR_KR_STRING_TO_XSTRING , but I am getting the exception error while converting which says INVALID_STRING , but if I am passing the paramter CODEPAGE_TO  and passing the va

  • Iphone 5 phone reset went wrong

    Different icloud id when i reset my iphone 5 version 8.1.3? i had reset my iphone 5 version 8.1.3 but when i activated the internet ( placed home internet and its password) another icloud id was set on so i want to reset it again but i do not know th

  • If I downloaded a movie on my computer off of iTunes. How do I get it on my phone

    I downloaded a movie on iTunes on my computer, but can't figure out to get it on my iPhone. Can somebody help me please?

  • Is it just me or the geeky side of me?

    Or does this iPad look like the Hitchhiker's Guide to the Galaxy? I mean I want to put DON'T PANIC on my Apple cover. And it's a great compliment to it I think. What do other people think? Oh and Moderators I didn't know where to put this so yeah.

  • IHow to get ringtones back after restoring my phone

    I restored my phone and backed it up from the cloud but the ringtones I purchased are gone.  How do i get them back