UDF fields from Active to not Active suddenly

Hi everyone,
a customer has submitted a problem which is quite strange. For one of the users, about once a month UDF fields in Item Master Data that are set to Visible and Active suddenly are not Active anymore. The user has no permission to change these settings. But there is something even more strange than that: at the same time, the master data for two items are displayed. For one item, the UDF are active, and for the second one they are not ! I have not yet created a message with the support because I don't have enough clues at what is taking place.
Has someone already seen that ? Does anyone as a clue at what I should look at ?
Thanks
Gilles Plante

Hi
Since there is a duplication of data , I would suggest you to log support to SAP.
Please check also if change log is activated on Item master which you can see from Menubar - Tools --change log
If regarding UDF concern ,
You could check --go to tools --customisation tools --setting  (or CtrlShiftB) 
Check what it up there .
I guess it is too hard for troubleshooting because we don't know what exactly trigger your problem.
If you can get more details  like user 1 was doing ...,then...  we can probably look more in detail .
So far i will first, I would suggest you to log support to SAP because your data is duplicated and also check how many data are duplicated also ..
Thank you
Bishal

Similar Messages

  • Using javaScript to change a field from required to not required

    Hi,
    I have what seems like a simple question .I would like to know if it is possible to have a function call from my jsf code to a javascript function which could change a text field input from required to not required .
    I can do this through the server but would prefer to do it in the front end .
    e.g . I have a pull down list and when I click on one of the values it calls a function in javascript which changes a text field from required to not required .
    Hope this is clear .
    Thanks for your help.

    Instead of having the field required on the component defeiniton, put that requirement on code.
    Either way you can't do that on javascript. If you could do that then you could fool the aplication...

  • VERSION FIELD FROM SALES ORDER NOT APPEARING IN COOIS REPORT

    DEAR ALL,
      I am working on make to order scenario. Version field from sales order not updated when im taking MRP Run for specific Sales order in COOIS Report. But when iam creating production order with T. COde CO08 field getting updated. Its very important to get vrsion field as we have maintain old sales order No. in same. How this problem will get resolved?
    Regards
    Atul

    Atul,
    "MRP run" does not normally create production orders, MRP creates Planned orders.  Planned orders do not contain Sales order version.   I have never used this field before, but I would not be surprised if the behavior you are describing is 'standard'.  When you create a production order using CO08, you are creating a 'production order with reference to a Sales order' (which contains Sales Version).  When you create a production order using, say, CO40 or CO41, or using a program such as PPBICO40 in Batch, you are creating a 'production order with reference to a Planned order', (which does not contain version).
    If it is imperative that you have the Sales Order version number in all production orders, you could see if Planning Strategy 82 (Assemble to order) production orders contain the data you seek.  Otherwise, I am afraid you will have to have your ABAPers write some custom code to update this field in the production order.
    Another way to get sales order data into the production order, that does NOT require custom code, is by using Item Texts in the Sales order.  Any text placed in the Sales Order Item Text Field Production Memo (Text ID 0006) can be configured to be duplicated automatically in the Production order in an MTO environment.  Production Memo then displays as another Tab in CO02.
    Regards,
    DB49

  • CRVS2010 beta - Date field from database does not display in report

    Hi there - can someone please help?!
    I am getting a problem where a date field from the database does not display in the report viewer (It displays on my dev machine, but not on the client machines...details given below)
    I upgraded to VS 2010
    I am using the CRVS2010 Beta
    My development machine is Windows 7 - and so is my fellow developer's
    We are using Microsoft SQL Server 2000
    We run the queries within VS and then we send the data table to VS using .SetDataSource
    We have a few reports which display the date on our dev machines (whether we run the EXE or from within Visual Studio)
    When we roll out to the client machines (running Windows XP SP3) then everything works, except that the date does not display (on quite a few reports)
    This is the only real issue I have had - a show stopper for me
    The rest works well - any input will be greatly appreciated
    Regards,
    Ridwan

    Hi Ridwan,
    After much testing I have it all working now using CRDB_adoplus.dll as a data source ( XML )
    Alter your Config file to look like this:
    <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0"/>
    </startup>
    Then using the code below, and CR requires the Schema to be able to read the date format.
    private void SetToXML_Click(object sender, EventArgs e)
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    ISCDReportClientDocument rcd;
    rcd = rptClientDoc;
    string connString = "Provider=SQLOLEDB;Data Source=dwcb12003;Database=xtreme;User ID=sb;Password=password";
    string sqlString = "Select * From Orders";
    OleDbConnection oleConn = new OleDbConnection(connString);
    OleDbDataAdapter oleAdapter = new OleDbDataAdapter(sqlString, oleConn);
    //OleDbDataAdapter oleAdapter2 = new OleDbDataAdapter(sqlString2, oleConn);
    DataTable dt1 = new DataTable("Orders");
    oleAdapter.Fill(dt1);
    System.Data.DataSet ds = new System.Data.DataSet();
    // We need the schema to get the data formats
    ds.WriteXml("c:
    sc.xml", XmlWriteMode.WriteSchema);
    //Create a new Database Table to replace the reports current table.
    CrystalDecisions.ReportAppServer.DataDefModel.Table boTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    //boMainPropertyBag: These hold the attributes of the tables ConnectionInfo object
    PropertyBag boMainPropertyBag = new PropertyBag();
    //boInnerPropertyBag: These hold the attributes for the QE_LogonProperties
    //In the main property bag (boMainPropertyBag)
    PropertyBag boInnerPropertyBag = new PropertyBag();
    //Set the attributes for the boInnerPropertyBag
    boInnerPropertyBag.Add("File Path ", @"C:\sc.xml");
    boInnerPropertyBag.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}");
    //Set the attributes for the boMainPropertyBag
    boMainPropertyBag.Add("Database DLL", "crdb_adoplus.dll");
    boMainPropertyBag.Add("QE_DatabaseName", "");
    boMainPropertyBag.Add("QE_DatabaseType", "");
    //Add the QE_LogonProperties we set in the boInnerPropertyBag Object
    boMainPropertyBag.Add("QE_LogonProperties", boInnerPropertyBag);
    boMainPropertyBag.Add("QE_ServerDescription", "NewDataSet");
    boMainPropertyBag.Add("QE_SQLDB", "False");
    boMainPropertyBag.Add("SSO Enabled", "False");
    //Create a new ConnectionInfo object
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo boConnectionInfo =
    new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    //Pass the database properties to a connection info object
    boConnectionInfo.Attributes = boMainPropertyBag;
    //Set the connection kind
    boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
    //*EDIT* Set the User Name and Password if required.
    boConnectionInfo.UserName = "";
    boConnectionInfo.Password = "";
    //Pass the connection information to the table
    boTable.ConnectionInfo = boConnectionInfo;
    //Get the Database Tables Collection for your report
    CrystalDecisions.ReportAppServer.DataDefModel.Tables boTables;
    boTables = rptClientDoc.DatabaseController.Database.Tables;
    //For each table in the report:
    // - Set the Table Name properties.
    // - Set the table location in the report to use the new modified table
    boTable.Name = "Orders";
    boTable.QualifiedName = "Orders";
    boTable.Alias = "Orders";
    rptClientDoc.DatabaseController.SetTableLocation(boTables[0], boTable);
    //Verify the database after adding substituting the new table.
    //To ensure that the table updates properly when adding Command tables or Stored Procedures.
    rptClientDoc.VerifyDatabase();
    MessageBox.Show("Data Source Set", "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    Thanks again
    Don

  • Copy UDF fields from one user to another user with similar authorizations.

    Hi,
    Is there a way to copy UDF fields viewable to one user to another user wihtout manually checking the boxes in Form Manage User Fields?
    if so how can it be done?
    Jyoti

    For copying Form settings, user field settings, read the following 2 threads for complete details
    Replicate User Defined Field settings
    Form Settings

  • Custom fields from Shopping cart not getting transferred

    We have added a few custom fields in both Shopping cart and PO screens.
    Somehow when a cart is getting converted to a PO, the values maintained in the shopping cart are not flowing in to the PO.
    Please advice as to what needs to be done to take care of this issue.
    Thanks.
    Anuradha SenGupta.

    Hello Anuradha,
    Please go thru the link .
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/20b36c12-685f-2c10-4fb4-ba2e0b969c27?QuickLink=index&overridelayout=true
    Also in your badi BBP_CREATE_BE_PO_NEW, try to implement the code in the similar way which I did for creating PR in Backend.
    DATA : ls_req_item TYPE bapi_te_requisition_item.
      LOOP AT is_sc_document-item INTO wa_sc_item.
        wa_extension-structure        = 'BAPI_TE_REQUISITION_ITEM'.
        ls_req_item-preq_item         = wa_sc_item-number_int.
        ls_req_item-z_req_type_db     = wa_sc_item-z_req_type_db.
        wa_extension-valuepart1       = ls_req_item.
        APPEND wa_extension TO cs_rq_document-it_extensionin.
        CLEAR wa_extension.
        ls_req_item-preq_item         = wa_sc_item-number_int.
        ls_req_item-z_asset_sub_cat   = wa_sc_item-z_asset_sub_cat.
        wa_extension-valuepart1       = ls_req_item.
        wa_extension-valuepart2       = ls_req_item.
        APPEND wa_extension TO cs_rq_document-it_extensionin.
        CLEAR wa_extension.
      ENDLOOP.
    Hope this will help you.

  • Some fields from InfoPath form not showing up in Sharepoint

    I created an InfoPath form containing a checklist that sends data to an InfoPath document library in Sharepoint 2010.
    Most of the fields that I have linked to the sharepoint transfer their data just fine, but 2 of the fields come out blank in SharePoint.
    I have attempted the following fixes to no avail:
    Created site column and linked to it
    Deleted column and had Infopath create a column in the library
    The fields are not identically formatted either.  Both are single item drop down lists, one is populated by an external data source (sharepoint list) and the other has manual list values.  Both fields have other fields in the form that are formatted
    identically and work just fine.
    help!

    Do the choice items match up in the form to the options available in the list?

  • Fields from screen are not known by program.

    Hi All.
    I have this problem since I started using Dialog programming.
    Since I didn't attended any course I might be doing something wrong.
    When you define a field in a Dialog screen and you want to refer to it in the program that calls that screen you get a compilation error that there is no such field.
    If you define the field as at TABLE-FIELD you can work around this compilation issue by defining the TABLE using "tables: TABLE" statement, but now I have a problem since I don't want to use the TABLE-FIELD definition for my field and thus I'm stuck Shocked
    Any help will be appreciated.
    Ayal.

    Hai,
    If suppose, if you define a field in the screen, it is not mandatory to declare same variable in program level.  If we take the same name, after completion of PBO the data automatically transferred to the screen field. If u don't take the same name then you need to pass value of the variable to the screen field in the PBO.
    Example :
    If suppose, you have a I/O field in the screen with name TEXT.
    In the program
    data : text(10) type C.
    if that is 100 screen.
    Process before output.
    module display_100.
    with in this module
    text = 'SRIKANTH'.
    this will directly display on the screen.

  • Line item text field from MIGO are not copied into FI line item text field

    Hi all on SCN, please, I need a help.
    It was created as required by the user a field status group with the text field required.
    This field status group was assigned to some accounts, in order to make my unit tests.
    u2003
    In development envirionment was made some tests directly in FI area, and it works properly.
    u2003
    But the user made a test using MIGO transaction, choosing in this transaction an account that he changed its field status variant to the one created in development environment, that make the text fiels required. So, to start, he donu2019t fill the text item of MIGO, and a message error appear stating that he needs to enter values in this field.
    After fill in the text fiels, he can save his work.
    u2003
    But the FI document generated donu2019t receive the line item text typed in MIGO, but receives the values on Reference document and Document Header text entered in the header of MIGO, what is missing, donu2019t is automatically copied MIGO text line items to FI documents line Items, does there is some additional configuration missing?
    Hope someone help me with this issues.
    Thanks in advanced!

    Hi,
    Material document will get updated in reference field in FI by default.  If for any reason, want to get this updated in text field, you need to define a subsititution in GGB1.
    Best Regards,
    Madhu

  • I literally see email disappearing from my account. not in junk or anywhere most recent was an activation email from wordpress. What is going on? i finally had to make a rule that e from wordpress go to inbox and that worked. why is mac stealing my mail?

    i literally see email disappearing from my account. not in junk or anywhere most recent was an activation email from wordpress. What is going on? i finally had to make a rule that e from wordpress go to inbox and that worked. why is mac stealing my mail?

    i watched this happen several times...i requested an email notification from wordpress over and over to see if i could click on the email in inbox fast enough to open it before it went to never neverland but nada. could not be done. i turned off the junk mail sorter in preferences. even though it was not to be found in junk mail on my mail app or icloud mail or iphone nada...what else is dissappearing?

  • My iphone 4s wilbecasue it says it needs activation (suddenly it did that I'd been using it happily for 12 months then it said it needs activating). So i can get to general seetings. Itunes says switch off find my iphone which i did in icloud l not reset

    My iphone 4s wilbecasue it says it needs activation (suddenly  it needs activating). So i can get to general settings. Itunes says switch off find my iphone which i did in icloud, it will not let me switch off find my phone.
    I tried resetting in general reset all settings, but no luck.
    can anyone help

    I'm also experiencing the same issue.
    I've had to reset my password 3 times in the last 3 days.
    At first, I couldn't get my email. I sweated it out for 12 hours, reset my password and I was good to go again. 48 hours later, I ran into the same issue. Only problem is, not only do I get the 'Incorrect username or password' on my device, but my iCloud.com login no longer works. so now I can't read my messages on the web OR on my device/computer.
    I have went to appleid.apple.com and reset my password there: no luck.
    I have reset the settings on my device: no luck.
    I have Erase and Installed iOS 6.1.2: no luck.
    I have restored my device back to factory settings: no luck.
    I have performed a DFU restore: no luck.
    This is my main account for, well everything.

  • User profiles from Active directory when loggedin then userdisplay, useredit shows blank white screen in SharePoint 2013

    User profiles from Active directory when loggedin then userdisplay, useredit shows blank white screen in SharePoint 2013 
    I can login with the these AD users and AD direct import is working just fine. We are not using UPS.
    With admin user when I click on the user it shows up proper data. But when I login with the same user it does not show me userdisplay/useredit and shows blank data. Also another strange thing is when I add new item in list with these AD users created by
    modified by is blank and its really strange. I checked user information list, tried to rerun user sync with direct AD import option but no success.
    MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead

    Hi Amit,
    According to your description, my understanding is that the page is blank when the use accessed /_layouts/15/userdisp.aspx and the created by field was blank when the user created a new list item in SharePoint 2013.
    I tested the same scenario per your post, however I cannot reproduce your issue.
    For troubleshooting this issue, I recommend to verify the things below:
    Check the permission of the user in the corresponding site collection to see if he can access /_layouts/15/userdisp.aspx.
    Delete the user from AD and SharePoint, then re-add the user to AD and grant proper permission to the user in SharePoint to see if the issue still occurs.
    Did this issue occur with all the users? Add a new user in AD and test the same scenario.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How to create an embedded link with VBScript that references user website from Active Directory?

    I have scoured the web for days and have not been able to quite come up with exactly what I need for this. I have created an Outlook signature deployment using VBScript which sets information in an already formatted Word doc using placeholders. (Ex. [Displayname],
    [Initial], [City])
    All of that works as expected, but now marketing would like to have an embedded link reference some of our users personal web pages. So the link would display some kind of standard text like "Click Here". Once clicked on the user would be redirected
    to the personal web page of the person who sent the email. My problem is, I have no idea how to get the hyperlink to pull in the information from Active Directory...another problem is I know only enough coding to be dangerous so I am stuck. 
    Here is a sample of what I am working with, I am hoping someone can point me in the right direction. Thanks!
    '----- Connect to AD and get user info -----'
    Set objSysInfo = CreateObject("ADSystemInfo")
    Set WshShell = CreateObject("WScript.Shell")
    strUser = objSysInfo.UserName
    Set objUser = GetObject("LDAP://" & strUser)
    strDisplayName = objUser.displayName
    strFirstname = objUser.FirstName
    strLastName = objUser.givenName
    strInitials = objUser.initials
    strName = objUser.FullName
    strTitle = objUser.Title
    strDescription = objUser.Description
    strOffice = objUser.physicalDeliveryOfficeName
    strCred = objUser.info
    strPOBox = objUser.postOfficeBox
    strStreet = objUser.StreetAddress
    strCity = objUser.l
    strPostCode = objUser.PostalCode
    strPhone = objUser.TelephoneNumber
    strMobile = objUser.Mobile
    strFax = objUser.FacsimileTelephoneNumber
    strEmail = objUser.mail
    strWeb = objuser.wWWHomePage
    '----- Apply any modifications to Active Directory fields -----
    'Use company info page if user does not have a Linked-In account specified
     if strweb = "" Then strweb = "http://www.linkedin.com/company/58654"
    '----- Open Word template in read-only mode {..Open(filename,conversion,readonly)} -----
    Set objWord = CreateObject("Word.Application")
    Set objDoc = objWord.Documents.Open(strTemplatePath & strTemplateName,,True)
    Set objEmailOptions = objWord.EmailOptions
    Set objSignatureObject = objEmailOptions.EmailSignature
    Set objSignatureEntries = objSignatureObject.EmailSignatureEntries
    '----- Replace template text placeholders with user specific info -----
    SearchAndRep "[DisplayName]", strDisplayName, objWord
    SearchAndRep "[Name]", strName, objWord
    SearchAndRep "[Description]", strDescription, objWord
    SearchAndRep "[Title]", strTitle, objWord
    SearchAndRep "[Street]", strStreet, objWord
    SearchAndRep "[POBox]", strPOBox, objword
    SearchAndRep "[City]", strCity, objWord
    SearchAndRep "[State]", strState, objWord
    SearchAndRep "[PostCode]", strPostCode, objWord
    SearchAndRep "[Phone]", strPhone, objWord
    SearchAndRep "[Mobile]", strMobile, objWord
    SearchAndRep "[Fax]", strFax, objWord
    SearchAndRep "[Email]", strEmail, objWord
    'SearchAndRep "[Web]", strWeb, objWord
    '----- Replace template hyperlink placeholders with user specific info -----
    'SearchAndRepHyperlink "[email]", strWeb, objDoc
    SearchAndRepHyperlink "[Web]", strWeb, objDoc
    '----- Set signature in Outlook -----
    Set objSelection = objDoc.Range()
    objSignatureEntries.Add "NewCBSig", objSelection
    objSignatureObject.NewMessageSignature = "NewCBSig"
    'see note below if a different reply signature is desired
    'objSignatureObject.ReplyMessageSignature = "Full Signature"
    '----- Close signature template document -----
    objDoc.Saved = TRUE
    objDoc.Close
    objWord.Quit

    Can you ask a specific question? You have posted a script and noted you need a link but there is no question.
    ¯\_(ツ)_/¯

  • Primary contact and contact field in activity

    Hi all,
    I am trying to create few contacts under an account and set one contact as primary contact.
    Then i am trying to craete an activity for that account.In that Activity there are two fields "Contact" and "Primary Contact".But when I try to pick up a contact and save the Activity record I see that the primary contact is not updated properly.(which means the primary contact is different from the one I selected in the account detail page).
    I also found that if the contact's primary account is not the account to which i am adding the activity then the contact name is not coming in the drop down to select for an activity.(in the "contact" and "primary contact" look up field of activity)
    Is there some reason for this??or am trying to overlook something..
    kindly help..
    Thanks in advance,
    Ashan.

    Hello Ashan,
    I tried the same thing, creating 2 Contacts under Account then making one primary, then created the activity and select the contact under Contact Look up and it successfully updated the primary contact field.
    There seems to be a problem with your pod, Have you tried raising an SR with oracle regarding this?

  • Extract data from active directory array

    Hello,
    I have recently connected Crystal Reports XI to Active Directory 2003. I am able to pull back a user's data like sAMAccountName, department etc.
    However I am unable to pull back the groups that a user is assigned to. I am thinking this might be because they have multiple groups assigned to them?
    Here is the code i am using to select and return the data for name etc:
    SELECT name,company,department,samaccountname,mail,manager, mobile, memberof
    FROM 'LDAP://OU=Interne,OU=Users,OU=Orkla Finans,DC=finans,DC=orkla,DC=net'
    How would one return a user's groups that they are assigned to? I have tried entering the memberOf field in my code, but this returns empty. It seems like Crystal is returning the memberOF field as a string while it is stored as an array in Active Directory.

    Hi Lars
    The reason of this behaviour should be related to the type of information; in fact, the particular field that shows blank in CR, is ideally a multi-valued attribute.
    On the other hand, this is not seem actually Crystal related; Microsoft has acknowledged this limitation in the article ID 299410 at
    http://support.microsoft.com/kb/299410
    The workaround is to report off a text file:
    - From Active Directory Users and Computers or from ADSI Edit (where you would get more information), locate the level where you want the information retrieved from, for instance OU= (top level);
    - Right-click on the folder and select u2018Export listu2019;
    - Save the file in TXT format.
    - From Crystal Reports, create new report;
    - From Database Expert, click on u2018Create a new connectionu2019 folder;
    - Double-click on u2018Access/Excel(DAO)u2019 folder;
    - Change the u2018Database typeu2019 to u2018Textu2019 and select the u2018Database Nameu2019, which is the TXT file;
    - Select u2018Finishu2019;
    Should you have any questions, please do not hesitate to let us know.
    Hope this helps!!!
    Regards
    Sourashree

Maybe you are looking for

  • Ignore field in file content conversion

    Hello, I have scenario from RFC to CSV file The RFC Structure is: <?xml version="1.0" encoding="UTF-8" ?> - <rfc:Z_PORTAL_PRICING_PURCH_PRICE xmlns:rfc="urn:sap-com:document:sap:rfc:functions"> <LAND>NL</LAND> - <PURCH_PRICE> - <item> <MATNR>00000007

  • Podcast Album Cover Overrides Album's Album Cover?

    It seems that the artwork for a podcast (Scott Sigler's Infections -- which is the same feed that he's sent a number of audiobooks out over) overrides the artwork for a collection of tracks that are all in the same album within that feed (Ancestor, t

  • BEST PRACTICE QUESTION: XI or direct R/3 RFC?

    We are creating an interface from R/3 to an externally facing (internally built) website. Question: What is the best practice defining whether or not we should pivot thru XI? This is a single interface that will not be reused; there would be no mappi

  • Have recently purchased photosmart 7520 printer

    Generaly the printer works fine but are having problems printing photographs on correct photo paperas the prints come out wet and do not dry and andmake a mess. can you advise any reason for this.

  • Default Connection for SQL scripts

    Hi everybody. Can somebody tell me if there is a way to set a "default connection" in SQL Developer? What I want to achieve: When I'm opening an SQL script with the SQL Developer it should already be chosen a defined connection, so that I only have t