Repository Fields delete

Can we remove standard fields provided in repository for E.g. can we delete City, State field from Main table in Business partner repository. As i tried deleting some standered fields provided in Repository and i got an error while accessing MDM data manager (it stooped responding).
Thanks
Bindi

Hi Bindi,
The MDM Business content is the  standard template provided by SAP to accomodate the ERP structure of the master data within MDM,however it is in the Master data administrators control to customize the rep acc to his requirement.Which includes addinga nd deleting fields.
So you can Add as well as delete any fields form the any business content rep.
However make sure to take care of teh below things:
- In Case you are deleting any lookup field which are nested then make sure the nested fields links are also correctly deleted and  recreated later if require with correct linking.
- After deleting the fields and loading the rep again use Load with Update Indices instead of immediate.
- Also check your rep for any fatal errrors and correct if any.
Hope It Helped,
Thanks & Regards
Simona Pinto

Similar Messages

  • Acrobat 9 Pro: fields deleted after changing compatibility of Acrobat for 4.0

    I have pdf's with many of fields in which I need to change compatibility on Adobe 4.0.
    When I try to do this (Save as optimized pdf with the option selected "make compatible with" on "Adobe 4.0 or later") program delete all of fields.
    This problem appears after changing OS from Win XP on Win 7 Enterprise 64-bit.
    Earlier I didn't have that problem.
    I will be grateful for any help, reinstalling Adobe has not helped and I did not find any clues on the internet.

    Unfortunately I can not share this documents.
    However, I noticed that only some of them have above problem. Now I have only to find its cause - changing the OS wasn't the cause of this problem.
    Thank you for your interest.

  • Unable to see the vacant/free space in repository, after deleting VMs/Templates/Clones and even moving the same stuff to another repository

    Guys,
    We've got an Oracle VM Server 3.1.1 and Oracle VM Manager 3.1.1. We're having two repositories, which are presented to the OVM Server. let's name them repo1 and repo2 for ease of communication.
    We're facing space related issue on the OVM Server, because it's showing one of the repository as 99% utilized. We deleted VMs/templates and clones from the repo1 and even tried to move the same stuff to repo2, but the changes are not getting reflected in the space usage % of the repo1 after the same is refreshed.
    Please let us know, how to troubleshoot this issue.
    Ankit

    Here the the results of the commands that you've asked us to run on the OVM server.
    Please let us know, who to know, whether the repositories are mounted on OCSF2 or not, is there a command to know about the same.
    Output of the Command given below :-
    root@OVMServer 0004fb000003000073a4f5dab4b7leeb]# du -h
    ./lost+found
    21G      ./Assemblies/0004fb001123a5d/unpacked
    ./Assemblies/0004fb001123a5d/Imports
    41G      ./Assemblies/0004fb001123a5d
    41G      ./Assemblies
    ./Templates/0004fb0000140000afe0afb9e01d1cdc
    ./Templates/0004fb000006000023e989a13e7aecd0
    ./Templates/0004fb000006000034513ec20e6a9c12
    ./Templates/0004fb000006000009f1645f74c33d8a
    ./Templates/0004fb000014000062603eab8ac805c5
    ./Templates/0004fb00001400000f980b348bdc00ca
    ./Templates
    6.6G      ./ISOs
    744G     ./VirtualDisks
    ./VirtuaiMachines/0004fb0000060000fae38156db652f3c
    ./VirtuaiMachines
    792G
    [root@OVMServer
    0004fb000003000073a4f5dab4b7leebl# df -h
    Filesystem
    Size
    Used Avail Use% Mounted on
    /dev/sda2
    97G
    1.2G
    91G
    2% /
    /dev/sda6
    142G
    188M
    135G
    1% /Data
    /dev/sda5
    200G
    476M
    200G
    1% /DataRepo
    /dev/sdal
    2.0G
    57M
    1.8G
    4% /boot
    tmpfs
    1.5G
    0
    1.5G
    0% /dev/shm
    none
    1.5G
    976K
    1.5G
    1% /var/lib/xenstored
    /dev/mapper/36848f690ec474e00193c719e0acdcb29
    1.9T 734G 1.2T 40% /OVS/Repositories/0004fb000003000073a4f5dab4b7leeb /dev/mapper/36848f690ec474e00193c71b20bf4b9ff
      3.7T 3.6T 70G 99% /OVS/Repositories/0004fb0000030000fe6f4663925ffbOf

  • Runtime FIELD DELETION / HIDING of Internal Table

    Dear All,
    Can Anybody would like to say " How can i delete a field of internal table before passing it the FIELD_CATALOGE_MERGE Function In ALV Report"
    Or i wil be also thank ful to you if you would tell me " How can i hide the field of internal table at runtime In ALV Report"
    Warm Regards,
    Nirav Parekh

    HI,
    We do not have an option to delete a field from an internal table at runtime, we have an option to delete the data from it .
    To hide a Field in ALV :
    set <b>wa_fieldcatalog-no_out = 'X'.</b>
    loop at t_fieldcatalog into wa_fieldcatalog.
    if wa_fieldcatalog-fieldname = 'BOX'.
    wa_fieldcatalog-no_out = 'X'.
    modify t_fieldcatalog from wa_fieldcatalog.
    ENDIF.
    ENDLOOP.
    Regards
    Sudheer

  • System Field Deletion

    Hi,
    I have created a user defined table using coding with single field "typedesc".  When i see in the SQL server
    there are two fields "Code" and "Name" is available.
    But now i need to delete the field "Name" which has been created by the system automatically.
    Please let me know how can i delete the Ssytem Field "Name" using coding. (or) i need to make this field as non mandatory.
    Try
                oUserFieldsMD = Nothing
                oUserFieldsMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
                oUserFieldsMD.TableName = "@PSSIT_PMWCTYPE"
                oUserFieldsMD.Name = "typedesc"
                oUserFieldsMD.Description = "Type Desc"
                oUserFieldsMD.Type = SAPbobsCOM.BoFieldTypes.db_Alpha
                '    oUserFieldsMD.SubType = SAPbobsCOM.BoFldSubTypes.st_Quantity
                oUserFieldsMD.EditSize = 60
                lRetCode = oUserFieldsMD.Add
                If lRetCode <> 0 Then
                    oCompany.GetLastError(lErrCode, sErrMsg)
                    MsgBox(sErrMsg)
                Else
                    MsgBox("Field: '" & oUserFieldsMD.Name & "' was added successfuly to " & oUserFieldsMD.TableName & " Table")
                End If
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
    regards
    Suresh S

    Hi
    You can set value to Name field ugual to Code field value.
    Do it in the ItemEvent...
    Private Sub SBO_ManageItemEvent(...)  Handle ItemEvent
    If Not pVal.BeforeAction _
    And pVal.EventType = et_ITEM_PRESSED _
    And pVal.ItemUID.Equals("1") _     ' When you press "Ok" button
    And MyForm_Validate(oForm) _    ' MyForm_Validate(oForm) is the function to validate data in your form (if eou need to do it)
    Then
      ' USE 1 OF 2 EXAMPLES ...
      ' ...in the case of userdatasource
      oForm.DataSources.UserDataSources.Item("uName").Value = sCode
      ' ...in the case of dbdatasource
      oForm.DataSources.DBDataSources.Item("@YOUR_TABLE_NAME").SetValue("Name", 0, sCode)
    End If
    End Sub
    this method work fine and I hope this can be the solution for you.
    Regads
    Sierdna S.
    Edited by: Sierdna S on Oct 23, 2008 8:55 AM

  • Safari 3.0.4 (523.12) weird text field & delete button behavior

    Just installed the software update (10.4.11), and now have a weird problem with Safari 3.0.4 (523.12).
    When entering text into a text field _on a web page_ (i.e. NOT the address bar or the built-in Google search field), the screen scrolls when the space bar is pressed (oddly, a space IS entered into the text field).
    Also, once a few pages have been visited, hitting the delete key makes the browser act as if the "back" button had been pressed!
    What gives?
    I tried disabling plug-ins (and restarting Safari) in case one of them was causing a conflict, but it didn't help. I also repaired permissions with Disk Utility. For clarity, I hadn't tried rebooting before launching Safari.
    Is it possible to revert back to a previous version?

    Hi,
    Some other things to try:
    - delete the Safari prefs file at /Users/YourUsername/Library/Preferences/com.apple.Safari.plist
    - try resetting Safari via the Safari menu
    - a test you can do to help narrow down things is to try Safari in another user account. This will help us to know whether your problem is local to your account or system wide. If you don't have another account you can use System Preferences -> Accounts -> \[+\] to create a test one (and \[-\] to remove it if needed)

  • Field deletion

    i have a internal table from which i want to delete one field called matnr

    If u r able to go in chnage mode of the program u can delete the field directly...
    Data: begin of itab occurs 0,
             field1 type c,
    field2 type c,
    field3 type c,
    end of itab.
    here, if u want to delete field2, then u can directly modify the internal table...
    Data: begin of itab occurs 0,
             field1 type c,
             field3 type c,
             end of itab.
    If u want to delete the values from the field,
    then u can clear it...
    loop at itab.
    clear itab-field2 .
    modify itab index sy-tabix.
    endloop.
    Edited by: Sumi Vasu on Apr 22, 2008 8:50 AM

  • AET Fields Delete Problem

    I have added some fields in WEB UI through AET.
    After some time due to change in requirement I have deleted one field and Saved and Generated again.
    The problem is :
    The field still displayed in the Context node and in the Table .
    I want to remove it completely.

    HI Rafael,
    deletion of AET field happens in two steps:
    1. Go to Edit Mode. Select a field that you want to delete and press the Delete button. This will mark your field to be deleted.
    2. Press on Save and Generate button. "Save" persists the deletion mark. "Generate" processes the deletion of the field, namely delete the field from the DB and BOL structure, delete the dataelement and domain, etc.
    Regards,
    Steve

  • ODI  Master and Work Repository schema deleted

    Hi,
    I found that the ODI  Master and Work Repository schema were deleted by someone, I want to know if there is a way to detect and find who committed the deletion.
    I will appreciate any idea to help me .
    Thanks.

    Hi, Your left with trying to track the schema deletion at the database level im afraid, without a Master Repos you dont have an ODI Environment so there is nowhere to look.
    If someone 'Detached' a work schema - you might be able to track this from a Master repos but if as you say they have been deleted / dropped then I might check th DB alert log but I dont think it will be registered unless you have Auditing enabled in the DB.
    Last solution would be to use something like logminer to read the DDL from the database logs, see if you can spot the drop that way.
    Rgrds
    Alastair

  • Keyboard error jump field to field delete

    Hi
    I am using several external keyboards such as Swiftkey or Swipe. And I noticed when I edit
    a contact and press the delete key, the cursor delete and jump to the next field instead of staying
    where it should.
    Do you noticed the same thing ?
    Thanks

    Hi,
    how is your dropdown done? by key/index?
    because with an indexed one, none is selected, thus returning a dump when you try to have
    an attribute error message (initial selected element).
    Greetz,
    Koen

  • Original Repository Owner deleted in Designer 6.5.93.2.8

    Hi all,
    I am currently working in a new environment where a cleansing action of Repository users has been executed. By error, somebody has deleted an account that on hindsight had the privileges to manipulate roles and privileges. We are not able to manipulate ever since that ID was deleted.
    How can an account (there is no user REPOS_OWNER or REPOS_MANAGER) be reinstated, provided with the relevant privileges to grant privileges to other users and fulfil the role of a Repository Owner? Could this be any user? Are there any scripts available that were supposedly run when the Repository was first installed that can be run again?
    Hopefully somebody can be of assistance, which would be greatly appreciated.
    Kind regards,
    Victor Bax
    The Netherlands

    You can use the script "Oracle_home\repadm61\utl\ckrorole.sql",
    which creates the role CK_ORACLE_REPOS_OWNER and grants it a set of system privileges.
    Then grant the role to the user.

  • Using CC field deletes To field recipient

    When addressing an email using both the primary recipient and a secondary in the CC or BCC fields, the contact/email address entered in the CC field (selected from the pull down menu as a CC) becomes the primary recipient, wiping out the original contact/email address. This is a new Windows 7 PC that I set up for a family member - fully patched and latest TB available.
    Has anyone else ever seen this? We support TB for many users at my workplace (I'm an IT Director) and so far, no one other than my family member has had this problem.
    thanks...

    Are you sure that the previously entered address hasn't just scrolled up out of sight?
    Look for a scroll bar at the right, or alternatively, if you hover the mouse cursor over the top edge of the text box you should be able to drag it down to make room to display more addresses.
    Additionally, if you hover the mousre cursor over the address box, you should get a pop-up window summarizing the addresses entered so far.

  • Changing From Field deletes email content - 2010

    Our users usually send emails from a different email address
    [email protected] rather than their normal email address.
    In Outlook 2010 they have the From field showing and usually change this prior to composing their email. However if they forget to do this and they compose their email, then chane the From field the content (but no their default signature) disappears.
    Any ideas? I'm a bit stumpted

    A little late to the party, but I encountered this issue in Outlook 2010 recently and could not find a solution documented anywhere online.
    It turned out in our case that the entire body of the email was being recognised as a signature, so any text entered in the body of the email was cleared when changing the "from" field.
    Hope this helps someone.

  • New MDMCAT Repository Field in OCI Transfer

    I followed this wiki describing how to add a new OCI field for mapping to SRM (we are already using all of the 5 provided custom fields).
    https://wiki.sdn.sap.com/wiki/x/9QMsAg
    When I go into the Configuration UI, the new field does not show up in the default OCI fields list (step 4) nor does it show up in the OCI Fields list when you Preview Configuration.  It DOES show up in the OCI Mappings list because of my entry in the XML config file (step 2).
    Has anyone experienced the same or know what else is needed?
    Thanks,
    Keith

    My understanding about your problem is that you are not getting fields in OCI mapping or in preview.
    You can give following a try:
    1. Make sure while editing Configuration XML file, you have passed correct MDM Field Code.
    2. Check you are doing configurations in UI for the same user which you have edited in configuration file.
    3. Also try by restarting SRM MDM Application.
    Kindly let me know the results. your problem is looking interesting
    REgards,
    SHiv.
    -- I thought you already did that configuration...

  • Genre field deleted after syncing

    Hi
    after syncing my ipod with my music library i discovered the genre field in itunes was blank. this has never happened before in all the years that i have been using itunes. i have several playlists which are based on this category. i have over 2500 tunes in my library so as you can see, to restore this category would be quite time consuming for me. has this happened to anyone else out there, and is there an easier solution? please email any responses to me at [email protected]
    thanx.
    ron

    My sister had this problem before with her first gen Nano. Macs format the iPod after a sync differently than PCs do.
    This is typical and expected behavior because when you hooked it up to the PC, it had to reformat the iPod.

Maybe you are looking for