Item Remarks Field Text Synchronisation

I notice that the Remarks Text field , OITM.UserText in B1 is updated on synchronisation to the PartsNotes table.
Each time it is changed in B1 it creates a new record in PartsNotes. Is this a remnant of functionality which used to exist in NetPoint. Is there a reason for this behaviour and if not could it be corrected so that it correctly updates a single record in Webtools?
I am just thinking that it may ocassionally be useful to be able to use this field data in Webtools since the existing description ( at 254 characters ) may not always be sufficient and the Remarks field (ntext) is at least maintainable from within B1 unlike the extended use of PartsNotes for a product which can only be maintained in Webtools.

Michael,
I'd love to do this, my problem here is that it is difficult to do from scratch without an example to follow when you're just starting out!
If someone was willing to share the necessary steps and suggested code to simply get a one-way synch of an additional B1 field synched into a WT field it would be more than welcome ( I'm sure it can't be too long-winded!)
Other than that it's down to trial and error and I'm sure enough folks have been down that route but it would be nice to get some help just to get started - I know that this is a topic that has been discussed and requested before in this forum
Geoff
PS - I have just seen your useful post in relation to a query from Yusuf Abbas  - the comment on doing your own work based upon the sample plugin provided was useful and it looks like I'll just have to roll my sleeves up and have a go

Similar Messages

  • How to display HTML formatted text in the field with Item Style: Raw Text

    How can I display HTML formatted text in the field with Item Style: Raw Text.
    Currently the Item Style is Raw Text, but the text is being displayed along with HTML tags without formatting.
    Regards

    Hi,
    Use Item Style formattedText.
    Regards,
    Gyan

  • How 2 deactivate 'Director's Remark' field  under tabstrip 'TEXTS' in ME21N

    Hello Gurus,
             My requirment is that i have to deactivate 'Director's Remark' Field Under Header Text Under Tabstrip Texts in ME21N.
    I can not find same field when i use SHD0. I can only hide tabstrip 'TEXT', which i don't want,
    With Regards,
    Vikram Salvi

    Hello
    Please can you run the standard payslip GR01 (please make sure that
    you have the latest version in your system - you can use RPUFRM00 to
    cmpare and copy the form  GR01 from client 000).
    1) If you run GR01 for an employee is the NI category ouput correctly?
    2) If not, does the employee have a NI category in structure NIC?
    You may also refer to SAP notes 385943 & 399641- How to output NICAT in window on
    payslip for further information.
    Thanks and Kind Regards
    Ramana

  • Maintain "Remarks" field in Material Receiving Notes

    Hi All,
    Can we maintain the "Remarks" field in Material Receiving Notes?
    Kindly advise.
    Thanks in advance.
    rob

    Hi Mr Rahim and Mr Dhinakar
    Thanks for the reply.
    Yes it is on GR transaction.
    I have just tried filling text in both Header Text or Text in the item with short text.
    Unfortunately while I tried to print preview through MB90, the field "Remarks" remain blank.
    Is there any setting I missed out?
    Thanks in advance.
    Rewards awaiting.
    rob

  • ITEM REMARKS

    Dear Friends,
    I am not able to migrate the Item Remarks in Item Master Data through DTW. I am using DTW Version 2005.0.17. Please let me know if there is any special syntax that has to be used while transfering data in the field that is of type Long Text 64000 Characters as I am also facing the same problem while migrating data in Business Partner Master Records in the Block/Buildings/Floor Field.
    Thanks & Regards

    Hi,
    The field you must use is user_text in DTW item but from SDK helpfiles it is only 10 characters. I also confuse about it but in excel, maximum digit amount is 13. I think it seems irrelevant with with description in the SBO GUI. I try to import 111111111111111111100000 in user_text object, it is success. So I think it is no problem to use until 64000 characters as long as the excel template gives no error.
    In BP master data excel template for DTW, it is no problem to use 64000 characters since it is stated in SDK helpfiles. What is API version you are currently using ? try to reinstall it.
    Rgds,

  • Is there a way to Search (List search) for more then one field text from a column for Bulk uploading?

    I've been trying to find more information on this and I apologies if this has already been answered. I just don't know the correct way to ask this. We have a SharePoint List at the company that we have people input information into different columns. The
    problem is most of those information are very repetitive. Is there a way for me to search more then one field text in the column and just input that same information in?
    ex:
    Column 1
    Column 2
    Date:
    883851
    MidWest
    User input 
    8831518
    MidWest
    User input
    On the search field in the SharePoint List, I would need to search for 883851, 8831518 etc,  would view those requested numbers, then I would click edit and change dates to those rows. Does that make sense? I'm sorry I'm fairly new at sharepoint.

    I think what you're asking is about having repetitive options in a list, show up easily for new items being created.
    This can be done by setting the columns that contain repetitive information to Choice fields.  In the configuration of the Choice field, check the box for "Allow custom values".  Now as users are entering data into the list, the dropdown of options
    for a given field grows and users can quickly see and select previously entered and thus repetitive values for the given fields.
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • Trying to customize a multiple item lookup field using JSLink

    I'm trying to Customize a multiple item lookup field using JSLink, in SP 2013. This illustrates what I want to do:
    I can replace the ";" with <br /> in the Text column, but not the Lookup column. Here is the JSLink code I'm using for the Text column. 
    (function () {
    var overrideCtx = {};
    overrideCtx.Templates = {};
    overrideCtx.Templates.Fields = {
    'Text': { 'View' : '<#=ctx.CurrentItem.Text.toString().replace(";","<br />")#>' }
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
    How can I display each item on separate lines in the Lookup column?

    You can retrieve the values of the lookup column and reformat their display by replacing the following:
    overrideCtx.Templates.Fields = {
    'Text': { 'View' : '<#=ctx.CurrentItem.Text.toString().replace(";","<br />")#>' }
    with something like this:
    overrideCtx.Templates.Fields = {
    'Lookup': { 'View' : function(ctx) {
    var arr=[];
    var fld=ctx.CurrentItem[ctx.CurrentFieldSchema.Name];
    for (i=0; i<fld.length; i++) {
    arr.push(fld[i].lookupValue);
    return arr.join("<br/>");
    Here we are looping through each lookup value contained in the multi value lookup field and adding it to an array. Once complete, we use join to flatten the array and separate each entry with the <br/>. Note...this will show each value on a new line,
    but it will be the string value without the hyperlink.  If you want the actual hyperlink to the item, you can rebuild the hyperlink and add that to the array instead. You can get the item's display form from ctx.CurrentFieldSchema.DispFormUrl and the
    item's id from fld[i].lookupId for rebuilding the hyperlink.

  • Length of field TEXT in structure MTREEITM

    Hello,
    I would like to build up a tree control but the lenght of the field TEXT seems too less(72 chars) in structure MTREEITM. I would like to use strings with 255 characters in the tree.
    Is any other way to build up a tree control and not using structure MTREEITM?
    Best,
    Gabor

    Hi Gabor,
    you can use the Class CL_GUI_COLUMN_TREE for this requirement. In the method ADD_NODES_AND_ITEMS you have the following three importing parameters:
    NODE_TABLE
    ITEM_TABLE
    ITEM_TABLE_STRUCTURE_NAME
    The structure need not be the MTREEITM structure always. I would suggest you to create a new DB structure which would include MTREEITM and an extra field for your CHAR255...
    When  calling the ADD_NODES_AND_ITEMS method pass the new Structure name and Item table based on the new structure...
    Hope this works for you....
    Regards,
    Sitakant

  • Items (imput field) only numeric?

    Hi all,
    I m trying to create items (imput field) to insert new record into table
    TABLE_A(id numeric, value numeric) value is desired column, id is sequence and not important.
    So I have format mask $5,234.10(FML999G999..) 5,234.10(999G999G999..) 5,234.1000 5,234 5,234.10- -5.234,10 <5.234.10>
    but i need only this digit 0123456789. or this format 5234.00
    is there any simple solution for this items numeric only format ?
    regards
    Gordan

    APEX Version?
    Database Version?
    Browsers in use?
    Answering these questions will go a long way in answering you question..
    (Why I say this is, if you are using a PRE 4.x version of APEX, you would use some java script, a 4.x version of APEX would allow you to use a plugin  like this: - Item Plugin - Text Field with Masked Input
    Thank you,
    Tony Miller
    LuvMuffin Software

  • For Z Po order type - Item category field is  greyed out.

    Hi MM Experts,
    I am an ABAper working on PO creation with respect to PR( PR with account assignment N)  for Z order type . The requirement includes to update item category of PO with B , But for this Z order type both PO transaction Create/Change(ME21/ME22) the field item category has been greyed out ( Non editable). I checked the SPRO setting for this order type ( SPRO-MM->Purchasing-PO->Define Screenlayout at document level .The field item category has been made as optional.
    Please let me know why this field ( item category still showing in display mode) and How to make it as editable .I need it as editable in ME22 to implement the new requirement of updating that field with item ategory B.
    Thanks in Advance
    Pravee.

    Hi All,
    Since I was creating a PO with respect to PR - after running through all the screens the item category field was becoming non editable, But during the create in one of screen the field item category was still editable, so I updated the item category with B during the create and created the PO, I have used BDC to do the same and its working fine. Thanks for all your inputs.
    Thanks
    Pravee.

  • Alv-field text-80 characters needed.

    Hi experts,
    in my alv report, field text is coming like below.
    Emp (excl. apprentices & temp. emp on si----upto this only it is coming.
    i need like this.
    Emp (excl. apprentices & temp. emp on site) - Beginning of year   
    how to get like this  -
    i need the complete text....
    i am writing like this
    gs_fieldcat-fieldname = 'E_BEG_YEAR'
      gs_fieldcat-tabname   = 'GT_FINAL_HCT'.
      gs_fieldcat-outputlen = '70'.
      gs_fieldcat-seltext_l = text-006.
      gs_fieldcat-do_sum    = 'X'.
      APPEND gs_fieldcat TO gt_fieldcat.
      CLEAR gs_fieldcat.
    can u give any modification for this.suggest me........................................

    Hi,
    First check the internal table i.e. the field that is holding the value of text. Check whether its length is sufficient or not.
    Second declare the layout for e.g.
    w_layout TYPE slis_layout_alv.
    and do.
    w_layout -colwidth_optimize = 'X'.
    and pass the layout to the alv function module .
    I hope this will help you.
    Help children of U.N World Food Program by rewarding them and encourage others to answer your queries

  • Field Text is a required field for G/L account (VF02 release to accounting)

    Hi gurus,
    the following error message shows in VF02 when releasing to accounting:
    "Field Text is a required field for G/L account in E178 (=CoCd) 4420000000".
    We checked the G/L master (FSS0) - information tab - G/L Account texts in Company Code (for G/L 442*) but did not work. Any  idea of which text is to be maintained?
    Thanks,
    VL

    hi,
    this is to inform you that,
    in SPRO - financial accounting - g/l accounting - master data - g/l accounts - preparations - addational activities - define screen layout for each transaction.
    or
    OB26.
    make the field text mandatory and fill the data in it.
    confirm
    balajia

  • Field Text is a required field for G/L account ZA01 476900

    Dear SAP Guru's,
    When I am doing the MIGO for the purchase order from the Sales order purchase requisition.
    I am Getting the error.
    Field Text is a required field for G/L account ZA01 476900
    Where can i define the feild text for G/L Accounts.
    regards,
    Amlan Sarkar

    Dear Freinds,
    Thanks for you valuable input.
    But I have maintained the Header Text for the MIGO transaction But the error persists.
    Even the OBC4 also I have checked.
    What should I do?
    regards,
    Amlan Sarkar

  • Field Text is a required field for G/L account BP01 45600000

    hi mm
    i wa screating migo
    i ahve entered all the details
    but when i go to post i face a error called :
    Field Text is a required field for G/L account BP01 45600000
    Message no. F5808
    Diagnosis
    The value for field "Text" in the interface to Financial Accounting is an initial value but you are required to make an entry in the field selection for G/L account "45600000" in company code "BP01" linked to the field selection for posting key "93".
    System Response
    Error
    Procedure
    It might be an error in the configuration of the G/L account field selection. The initial application, used to call up the interface must otherwise define a value for field "Text". If this is the case, contact the consultant responsible for the application used to call up the interface or get in contact with SAP directly.
    can u plz tell me
    Regards
    Vinit

    Hi Vini,
    Goto the TCode OBC4 and select the field status group which you have given in the GL Account BP01 45600000 and make the text as the optional entry.  Then your document gets posted.
    If you think that other postings will be affected if you change the Field status group, then copy that field status group with another name and make the text as optional in that new field status group and assign the same in the GL Account BP01 45600000.  This will solve your problem.
    Regards,
    Sreekanth....

  • Field Text is a required field for G/L account 1000 24505000

    hi,
    while posting MIRO i am facing the problem the following message i am getting
    Field Text is a required field for G/L account 1000 24505000
    The value for field "Text" in the interface to Financial Accounting is an initial value but you are required to make an entry in the field selection for G/L account "24505000" in company code "1000" linked to the field selection for posting key "40".
    with regards,
    jaya prakash

    Hi,
    To avoid this error in MIRO, under "Basic Data" Tab, enter some text in "Text" field.
    OR  to make Text as optional, first get the Field status group for GL 24505000 in FS00, under "Create/bank/interest" Tab.
    Then go to FBKP, here click on last option "Field status group" and enter Field status variant assigned to your Company Code and PRess Enter.
    Here Double click on the Field status group and then double click on "General Data" and make "Text" field as optional.

Maybe you are looking for

  • Issue with Reports using costume measures - BPC 10.0 NW

    Hello BPC Colleagues, I’m having a problem with some BPC reports using costume measures and I would like to have your inputs about this issue. When all the reports are executed using a costume measures the report execution fails after a long time of

  • Master Recipe

    Hi, How can we trach changes in Recipe? Perhaps a change/history document like the ones in BOM. If ECM, how do i see the document? Thanks!

  • Word processing, alternatives?

    I have Appleworks installed on my PB. It works for everything I need to use it for. I will be purchasing iWork soon for the Keynote feature for my public programs. However, the GOV Agency I work for uses MS XP for all the work computers. What I need

  • Error cluster in XControls Property node

    Hello! Property Nodes of XControls do have Error Clusters, but how can I change those out of the Facade? I'm setting an object through a property node for tree data. It is possible that some of the object methods generate an error while executing in

  • Trouble with camera roll, pic transfer to iPhoto since update to ios 5.

    since I updated to ios 5; when I take a picture it goes to the bottom left corner as before but when I click on it, it opens and shows a 'saving' icon that never goes away. I now have 'albums' that show 'camera roll' and 'photo stream' but neither of