Matrix Columns reset in Documents

My customer continues to lose the setting on the width of the doucment columns. This morning, the quote, sales order, invoice and purchase order matrix columns had all reset.
Has anyone else ever seen this?

You may check this thread:
User Settings lost after session is released
Thanks,
Gordon

Similar Messages

  • How to Calculate Line items Total of Matrix Column

    hai experts,
                  Im facing a problem like
                   1. i have a matrix with a column Labour Costs in that im taking some cost.
                   2. in footer a have a Edit Text like Total Labour Cost
                   3 when i enter amount in matrix column it sholud disply that value in total labour cost and when we add new row ,labour cost it should add to 'total labour cost' in footer.Like Invoice Documents.

    Where do you want to implement this like sapscript / smartforms or adobe forms? please specify.

  • How to set default value in matrix column

    Hi all,
    Does any one know how to set a default value in matrix column ?. I just want , when an event right click and add row. so i set a default value in a column field for example 'Test'. FYI the matrix is in the UDO.
    so my code will be like this
    If pVal.ItemUID = "Matrix" And pVal.MenuUID = "1292" Then
                        Try
                            Dim oColumn As SAPbouiCOM.EditTextColumn
                            Dim matrix As SAPbouiCOM.Matrix
                            matrix = oForm.Items.Item("Matrix").Specific
                           oColumn = mat.Columns.Item("Code").specific
                            oColumn.Value = "Test"
                        Catch ex As Exception
                            Debug.Print(ex.Message)
                            Debug.Print(ex.ToString)
                        End Try
                    End If
    I have run it and when i right click and add row it still can not set the default value in one of the matrx column.
    does any one know how to solve it. thanks in advance

    Hi Bodhi
    Sandeep is right you can set value using SetValue() function
    If pVal.ItemUID = "Matrix" And pVal.MenuUID = "1292" Then
                        Try
                            Dim matrix As SAPbouiCOM.Matrix= oForm.Items.Item("Matrix").Specific
                            oForm.DataSources.DBDataSources.Item("UDT").Clear()
                            matrix .AddRow()
                            matrix .FlushToDataSource()
                            With form.DataSources.DBDataSources.Item("UDT") 
                                    .SetValue("UDF", matrix .RowCount - 1, "Test")
                            End With
                            matrix .LoadFromDataSource()
                        Catch ex As Exception
                            Debug.Print(ex.Message)
                            Debug.Print(ex.ToString)
                        End Try
    End If

  • SSRS 2008R2 : Not able to use Previous aggregrate function in matrix columns cell

    Hi Expert,
    I have used a matrix tablix in my report. It is working fine. But when I am trying to use Previous aggregrate in one matrix column cell I get the below error:
    The use of previous aggregrate function ia a tablix cell with in 'Tablix1' is not supported.
    Please help me regarding that.
    Thanks Rana

    Hi Rana,
    In your scenario, you use previous function in the “Data” cell, right? Previous function cannot be used in the overlapping parts of row group and column group. One workaround of this issue is use custom code to get the previous value.
    Public Shared previous as Integer
    Public Shared current as Integer
      Public Shared Function GetCurrent(Item as Integer) as Integer
         previous=current
         current=Item
         return current
      End Function
      Public Shared Function GetPrevious()
         return previous
      End Function
    Then you can use the expression below in the “Data” cell to get the previous value:
    =Code.GetCurrent(fields!Score.Value) & "-Previous-" & iif(Code.GetPrevious()=0,"",Code.GetPrevious())
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Resetting individual Document ID

    Hi,
    I'm looking for a way to reset the document ID on an individual item in a library. Is this even possible? I don't want to do the default option of resetting all (the ticket box in the Document ID settings). The reason why I need to do this is we moved a
    document from another library and it kept its old Document ID. 
    In testing when using the tick box and resetting it, it fixed the issue. But we have hundreds in the new library and we only want to target the incorrect one. 
    Any help would be amazing.
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

    Hi,
    According to your description, my understanding is that you want to reset the document ID for specific library item.
    We can  update the document ID using Client Object Model like below:
    ClientContext clientContext = new ClientContext("http://sp/sites/mysite");
    Microsoft.SharePoint.Client.List spList = clientContext.Web.Lists.GetByTitle("Shared Documents");
    clientContext.Load(spList);
    clientContext.ExecuteQuery();
    if (spList != null && spList.ItemCount > 0)
    Microsoft.SharePoint.Client.CamlQuery camlQuery = new CamlQuery();
    camlQuery.ViewXml =
    @"<View>
    <ViewFields><FieldRef Name='_dlc_DocIdUrl' /><FieldRef Name='Title' /><FieldRef Name='ID' /></ViewFields>
    </View>";
    ListItemCollection listItems = spList.GetItems(camlQuery);
    clientContext.Load(listItems);
    clientContext.ExecuteQuery();
    ListItem item = listItems.GetById(27);
    item["_dlc_DocIdUrl"] = "http://xxxx";
    item["_dlc_DocId"] = "testxxxx";
    item.Update();
    clientContext.ExecuteQuery();
    Thanks
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Error Rounding Difference too high when reset cleared document using FBRA

    My Client has posted cleared document with T_Code F-51. This cleared document has cleared 6040 open items.
    And now, they want to reset and reverse that cleared document.
    We found error "Rounding difference too high" when we are reset cleared document using FBRA.
    Kindly need your advice.
    Many thanks in advance.
    Regards,

    Hello,
    Please let me know the ERROR number.
    Regards,
    Ravi

  • How to remove or hide Name column while upload document in document library

    Hi All,
    In below print screen the first column Name* which always show when I'm going to upload the file which I don't want. It will be really help full if you provide some solution how to hide this column while uploading the document. Its really confusing the users
    when they are going to upload the document in document library.
    I already tested below steps. After clicking Document Content Type every column is clickable except "Name" column. 
    Go to Document Library settings -> Advance settings -> Allow management of content types -> check the box
    Now go back to Document Library settings -> Under content types -> click Document content type -> select the column -> Hide this column
    Every column is clickable except "Name" column so unable to resolve this issue. Please help.

    Hi,
    Thanks for posting your issue, Kindly browse the below URL to fix this issue
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/c7d0e0d5-084b-4d49-88fe-b411a70042bd/how-to-hide-the-name-column-in-the-document-library?forum=sharepointdevelopmentlegacy
    http://spstipsutilitypack.codeplex.com/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Check box in matrix column bind correctly but doesn't appear check sign

    Dear Sirs,
    I have a check box in a matrix column (the matrix is placed i an extra folder in the item master data form).
    The column is bound to a DBDataSource related to the user defined table @IIT_ITM1 as reported in the following code. The table field bound to the check box column is alphanumeric of size 1.
    I use the following code:
                    oCln = oMtx.Columns.Add("Per_coll", SAPbouiCOM.BoFormItemTypes.it_CHECK_BOX);
                    oCln.DisplayDesc = true;
                    oCln.Description = "For test";
                    oCln.TitleObject.Caption = "For test";
                    oCln.ValOn = "Y";
                    oCln.ValOff = "N";
                    oCln.Width = 60;
                    oCln.DataBind.SetBound(true, "@IIT_ITM1", "U_IIT_PerColl");
                    oCln.Editable = true;
    The problem is: the binding to the database work (if I click on the check box and save the data, then the database content change accordingly) but I CANNOT LET THE USER SIGN APPEAR on the check box control!
    Does anyone have the solution?
    Thank you for help
    Massimo

    No response from the forum

  • Length of Uniqueid for matrix Column

    There appears to be an inconsistency in the length of the UniqueID that can be used for a matrix column.
    For an Addon in 2005 I have UDFs whose name is 12 characters long (including the U_), when appearing in matrix on a system form the system uses the UDF name for the columnID.
    However if I try to do the same thing when adding a column to a matrix on a user form I get error -7013 'The string value entered is too long; it should be less than 10 characters  [66000-14]'.
    Mirroring the UDF name as the column Id allows me to have generic code with out the need to jump through hoops to aling columns and field names.
    Is this a known issue for which there is a fix available?

    Hi Graham,
    It's a known issue but I'm not sure if a fix will be provided (it's a 'by design' feature and not a bug). I tested this in SBO 2007A and you still cannot have a matrix column in a user-defined form with a unique id of more than 10 chars.
    Unfortunately, you'll need to code a workaround or reduce your UDF sizes to 10 characters.
    Also, if you haven't already done so, I'd recommend you create a suggestion on the development collaboration forum:
    /community [original link is broken]
    Kind Regards,
    Owen

  • Reset payment document FBRA

    Hello,
    I have already searched on the portal, but did not find any solution..
    While posting invoice, invoice and payment withholding key (both) are kept.
    Payment is posted without withholding tax through F110. Document is cleared.
    Now, user wants to reset this payment document.
    In FBRA, it gives a message "Payment was posted with withholding tax.  Clearing document will be reversed. Do you want to continue?"
    If I click on "yes" it is resetting the document and reversing the document.
    How to reset the payment document without reversing?
    Thanks

    Hi,
    The clearing document is generated through F110 so check might have also got generated, hence this cannot be reset / reversed through FBRA
    In this case you need to clear the payment through FCH8 as you need to void the check as well.
    Hope this solves your issue else revert.
    Regards,
    Tejas

  • Reverse a reset clear document

    Hello ,
    When I am trying to reverse a reset-cleared document, it is throwing the following error :-
    "Document xxxxxx cannot be reversed due to clearing resets".
    I followed the foll steps.
    1.There was an invoice of 100$.
    2.Incoming payment of 100$-.
    3.Reset cleared the payment by choosing the option "whole clearing" and "create a new open item".
    4.A new open credit item is created.
    5.Now i need to reverse this new open credit item. It throws the above message.
    Please help.
    Thanks in advance
    Debashish

    Hi
    The below  link may provide you some help.
    error while resetting a cleared document
    Thanks
    kamala

  • MMS Hidden columns appearing in Document Library Settings / Column list

    Hello all,
    Before you read this please be aware that I have found a resolution (that might be helpful to others) but I am wondering if anyone else has experienced the same thing and the cause.
    Our scenario is as follows:
    We use a Content Type hub
    Most Content Types include one or more Managed metadata columns
    The MMS Notes (hidden) columns (e.g. mms_column_name_0) have appeared on the 'Document Library Settings page under 'Columns' for 2 document libraries only. They appear under the actual name of the column (e.g. mms_column_name).
    They are NOT visible to the user however (i.e. they are not selectable to be used in a view)
    Looking at SharePoint Manager the mms Notes column's are marked as being Hidden = false. Altering this to true has the desired effect.
    But has anyone else experienced the same issue as I'm inquisitive as to the cause.
    The only thing I can think of that caused this to happen was us using 'Metadata navigation settings' (which allows you to configure navigation hierarchies) for the first time on one of the 2 Doc Libs effected . However, on testing it on other document
    libraries the unhiding of columns has not occurred.
    Can anyone shed any why this may have occurred?
    Jason

    Hi jasonl27,
    this behaviour:
    This is by design. Two separate lists do not have any type of relationship established to distinguish that the
    columns are the same. For example, take an arbitrary column called "Position" being created on two different custom lists. Because the column Position is a custom column created
    in the list, it has no mapping to other lists. The "Position"
    in one list could refer to a title of a person
    in one list, or a physical location on a different list. SharePoint cannot tell if these two items are the same or completely different. As a result, a new column name is added when we move the item.
    perhaps you may try to do these steps:
    $site = Get-SPSite -Identity "http://......../"
    $web = $site.RootWeb
    $field=$web.Fields["column name"]
    $field.Update($true)
    $field.Hidden= "True"
    $web.Dispose()
    $site.Dispose()
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • When add a people picker (user column) in Word document (Template) and try to add a name it stuck!

    When add a people picker (user column) in Word document (un the document Template) and try to add a name it stuck!
    Is it a known issue?
    keren tsur

    Hi,
    According to your description, I have tested in my environment and I  have the same behavior.
    Only if you type the wrong name in the first time, then you click the phone book to search the right name and save, it will stuck. It means if you do other operation(e.g. type the wrong name then click “resolve” button, then search in the phone book) and
    repeat the operation above, it won’t stuck.
    It is appreciate that you can submit a feedback to Microsoft:
    https://connect.microsoft.com/
    Thanks,
    Dean Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to assign a unique number to the name column of a document set?

    How can I assign a unique number to the name column of a document set preferably with workflows? (Perhaps this number can increase by one each time a new document set is created)
    When a user attempts to create a new document set, this unique number should be already there as the name of the document set.
    (However, It seems that access and edit the Name column is more tricky than the other columns)

    Hi,
    To use document ID instead of Name column, you can
    Modify View and hide Name column. Then make Document ID to display at the left column.
    By default, document ID will be assigned to both document items and document sets. You may
    experience delay before you can see document ID assigned to existing document items and document sets because the scheduled document ID assignment timer jobs haven't finished yet.
    Miles LI TechNet Community Support

  • I forgot the password to a pages-document, is there any way to reset the document?

    I forgot the password to a pages-document, is there any way to reset the document?
    Thank You

    No, Apple can't help.  Just connect the iPod to your computer and restore via iTunes. If necessary, place the iPod in recovery mode.  For that mode see:
    http://support.apple.com/kb/HT1808

Maybe you are looking for

  • Error message when installing Oracle 10g on Windows XP Professional

    Hello, I need help installing oracle 10g database. When I attempt to run the installation from the setup.exe icon, I get a message that says "Error in writing to directory C:\Documents and Settings\Owner\Local Settings\Temp\OraInstall2007-04-29_01-19

  • Trigger an ABAP webdynpro from a  R/3 workflow?

    Can we trigger a webdynpro (for ABAP) component from a step in a R/3 workflow? Regards, Gajendra.

  • Creation of Table Dynamically.

    Hi friends,         I am creating one application in Webdynpro java for creating Table dynamically at run time. But i am getting error after deploying the application.       I am getting this error :-       error at runtime table "com.sap.tc.webdynpr

  • Photoshop elements 12 stopped working after swapping mainboard

    Hi everybody! On a Win 7 Pro PC the PSE 12 Photo Editor stopped working after swapping the defective mainboard. I tried uninstall and reinstall as admin, with disabled security software. We always get the welcome screen from where you launch organize

  • Web application with capable of auto update

    Hi All, I have been developing the webapplications using struts (J2ee Technology) and i have developed few web applications and send to the production. now i want to add autoupdate capability of the application, means if any changes was made jsp/acti