Custom Field & "Solved" post

I inadvertently posted this to the iPhone group - sorry for the second posting...
I am trying to create a Custom field in address book on a group of contacts. Is this possible or does each one need to be changed individually.
Also, I can't seem to mark a previous post as "solved" I've tried on several machines over the last 24hrs the error I get is:
Error
+An error in the system has occurred. Please contact the system administrator if the problem persists.+
+Useful links :+
+Forum Home -- browse the forums here.+
+Search Forums -- visit the search page to query all forum content.+
Any ideas on what the problem is?
Thanks.
Betsy

That is not the normal way to write an itemRenderer and I am
not surprised it behaves strangely.
Item renderers are tightly integrated with the Flex framework
and can be a bit complicated. I advise that you find an example or
two of a renderer and mimic its structure. I have never seen a
changeWatcher used in a renderer.
Briefly, renderers should override the set data(),
commitProperties() and updateDisplayList() methods to work well
with the framework.
Alex Harui has several good examples on his blog, and there
are many others available as well.
Tracy

Similar Messages

  • Add Customer Field while posting Journal Entry

    BSEG-KUNNR is not exposed while posting journal entry using FB01. It is not available in the field status group also. How to add customer number field in the field status group to make it available during posting journal entry using FB01.

    Hi Jac,
    1, There is a known issue in a lower version before  2005A SP01 PL30when you try to run a retirement operation for a fixed asset with Net Price equal to the Net Book Value, it failed and you got the following error message:
    21141 error while posting journalentry: -5012 /Unbalanced Transaction.
    If you are in this scenario, please upgrade your Fixed Assest to the latest patch.
    2. If you are not in above scenario, this problem is possibly caused by the incorrect configuration of accounts in G/L
    Account Determination.
    There should not be 'Default VAT Group' related to these accounts except for account 'Default Revenue Acc. Retirement' in G/L Account Determination.
    1) Go to Administration - Setup - Fixed Assets - Open G/L Account Determination;
    2) Select an Account Determination Group;
    3) Under the G/L Account Determination window, open the account linked to 'Balance Sheet of Asset Acc.' by clicking on the yellow arrow;
    3) The Chart of Accounts window will open, click on the'Account Details' button beneath the window to open G/L Account Details;
    4) Empty the field 'Default VAT Code';
    5) Execute the Retirement functionality again.
    You can also refer to SAP Note 1050423 for reference. https://service.sap.com/sap/support/notes/1050423
    I hope it is helpful!
    Regards,
    Ivy Zhang
    SAP Business One Forums Team

  • AFABN - RAPOST2000 - depreciation posting granularity with customer field

    Hi,
    My Client implemented a "ZABC" customer field in the new GL accounting (via FI new GL / ledgers / customer field).
    This ZABC field is maintained in the asset masterdata.
    During monthly depreciation run (AFABN) we would like to have postings done at GL account/ Cost Center / ZABC level in order to have depreciation postings sort by ZABC values in a dedicated financial reporting.
    ZABC field is not a cost object, so no entry can be maintained in IMG "Account assignment Elements for AA"
    We checked oss Note 1131960 (Documentation: Business Add-Ins for new deprec. calculation) to get explanation for
    Business Add-Ins FAA_DC_CUSTOMER and FAA_EE_CUSTOMER.
    These 2 BAPI give options for segmentation or new way for depreciation calculation, however, our client requirement is to change only the depreciation posting granularity (GL account/ Cost Center / ZABC) instead of GL account/ Cost Centers
    How did you answer similar requests using New GL customer field ?
    Thanks,
    Arnaud

    Hi,
    I think you need to create Z-include in ABAP so that depreciation docs are also posted with these custom fields.
    From 4.7 onwards, the depreciation program is RAPOST2000. In RAPOST2000, there is no longer batch input. It post directly to GL.
    For the difference between RABUCH00 and RAPOST2000, please refer to SAP Note 683313.
    Thanks
    Aravind

  • Custom fields in Field status variant and Posting keys

    Hi,
    We have defined some custom fields in BSEG table for which we wish to control the field status through Field status groups and Posting keys as well.
    Has some one addressed this requirement before? Please provide me some inputs on this.
    Regards,
    Swapnil

    Hello Chakardhar,
    Since the same fields for document entry are required for several G/L accounts, you define the status of fields for a group of G/L accounts.
    You create the definition under a field status group. Enter the key of the group in the master record of the G/L account. Field status groups are cross-company code, that is, they do not depend on the company code but on the field status variant. In the standard system, a separate variant for field status groups exists for each company code. The name of the variant is the same as the company code. Every company code is assigned to the variant with the same name. You can work in several company codes with identical field status groups as long as these company codes are assigned to the same field status variants. You define the field status for each individual posting key.
    Hope I ahd been able to hep you out. Please assign points and let me know if you need anything specific.
    Rgds
    Manish

  • Problem in posting Custom fields in Purchase Order using BAPI_PO_CREATE1

    Hi friends,
    Did any body tried populating custom fields using BAPI_PO_CREATE1?
    I am trying to populate custom fields in Header.
    I am populating EXTENSIONIN-STRUCTURE with 'BAPI_TE_MEPOHEADER' and EXTENSIONIN-VALUEPART1 with respective values of fields using the code below.
    T_CUSTDATA_IN-PROJECT_ID_NUM = '543211'.
    T_CUSTDATA_INX-PROJECT_ID_NUM = 'X'.
    MOVE 'BAPI_TE_MEPOHEADER' TO T_EXTENSIONIN-STRUCTURE.
    *CLEAR T_BAPI_TE_PO_HEADER-PO_NUMBER.
    MOVE-CORRESPONDING T_CUSTDATA_IN TO T_BAPI_TE_MEPOHEADER.
    MOVE 'T_BAPI_TE_MEPOHEADER' TO T_EXTENSIONIN-VALUEPART1.
    APPEND T_EXTENSIONIN.
    MOVE 'BAPI_TE_MEPOHEADERX' TO T_EXTENSIONIN-STRUCTURE.
    *CLEAR T_BAPI_TE_PO_HEADER-PO_NUMBER.
    MOVE-CORRESPONDING T_CUSTDATA_INX TO T_BAPI_TE_MEPOHEADERX.
    MOVE 'T_BAPI_TE_MEPOHEADERX' TO T_EXTENSIONIN-VALUEPART1.
    APPEND T_EXTENSIONIN.
    But still it is not populating the custom fields.
    Can some body help me on this?
    Thanks & Regards,
    Ramesh Kodavati

    Hi,
    You require to implement the Badi ME_BAPI_PO_CUST
                                               Method MAP2I_EXTENSIONIN or INBOUND
    for changing the parameter CH_EXTENSIONIN in method INBOUND
                                       or  CH_STRUC in method MAP2I_EXTENSIONIN.
    in addition to passing the extensionin parameters in bapi.
    implement the above said bapi and put a break point in both of the methods (exactly i don't remember)
    and check values are populating in the CH_STRUC structure.
    Regards,
    Dwaraka.S

  • How can I add a Custom Field in Work Item "Bug" in VisualStudio Online agile MSF Template?

    We are using Visual Studio Online for task and bug tracking. The problem we are facing is that very few fields are available to working with. We need to add custom fields to filter bugs on multiple attributes like OS, Device model, Verified in build etc.
    We do not have local TFS server setup. The support questions i have read, they ask to update XML file for work item but i dont know how and where to get that xml file. Also is there any particular Role needed to access such configuration files?

    hi Zahid
    as already written above currently it is not possible to customize a process template on Visual Studio Online.
    but for your purpose you can use tags to save the attributes.
    see here Visual Studio Online - Work Item Tagging
    Please use Mark as Answer if my post solved your problem and use Vote As Helpful if a post was useful.

  • Custom field in Bid Quote not editable/input enabled/changable

    Hai All,
        In the SRM Surrogate Bidding process , PO is generated from the Quotation which corresponds to the bid which has been accepted. Now before generating the PO we need to pass the Ordering vendor address information from the Quotation back to the PO. We added a custom field to the Quotation following “ Note 672960 - User-defined fields 2” and it is being added to the ‘BASIC DATA TAB’ in the Header data of the Quotation, but we are not able to enter any values since it is in display mode.
       We then referred “ Note 809630 - Customer field in bid invitation and bid - How does it work? ”  ( after referring Notes 458591 and 672960), and found that we need to implement the methods MODIFY_SCREEN and MODIFY_MODE_QUOT of the BADI BBP_CUF_BADI_2.
             The MODIFY_SCREEN method works fine, but the MODIFY_MODE_QUOT is not getting called during the Bidding process.  MODIFY_MODE_QUOT is already existing in the system as per the “ Note 822424 - CUF. Customer fields cannot be changed in the bid ”. Also Function-Pool SAPLBBP_PDH_CUF does not have any calls to the method MODIFY_MODE_QUOT but it has calls for the other 3 methods present in that BADI.
           We would like to know (1) How we can make this MODIFY_MODE_QUOT work? (2) And if it is working, Will MODIFY_MODE_QUOT along with MODIFY_SCREEN make the field in the Quotation Input enabled, and/or (3) Is there any other way by which we could make the field Input enabled, for the Users to enter some values, before they Click the Generate PO button.
    Please help.
    Thanks,
    Ghanesh

    Hi Ghanesh and SRM experts,
    I went through your link mentioned below and I have the EXACT same issue. I am using SRM 5.5 and I have added a custom field to the quotation item level. I am unable to make this field editable no matter what I do .
    1)  I have gone through all notes mentioned in your scrap and I have implemented them all .
    2) I have added the custom field to INCL_EEW_PD_ITEM_CSF_QUOT and INCL_EEW_PD_ITEM_CSF.
    3) I have also implemented BADI BBP_CUF_BADI_2 and I confirm that the method MODIFY_MODE_QUOT is never getting called. MODIFY_SCREEN is getting called , and the value of the flag ET_FIELDS-XINPUT is always 'X'. Still the quotation field is display only.
    Your post is dated a few months back. If you have solved this problem could you please let me know how.
    Help from anyone who anything about the above will be appreciated.
    Thank You .
    Regards,
    Ajali Sen

  • Batch input with customer fields

    I have to create a batch input process that post documents through FB01L.
    As the lines of each document have been added customer fields, when I tried to go from one line of the document to the following one, a screen appears when I have to introduce some data (two of the fields are mandatory). I had solved these issue by ending with a "Call Transaction" with option "No batch input" = 'X'. This way, these customer fields appear directly in the screen, and not in a popup screen, so the batch input process was very easy.
    But, I have been told that I don't have to use "Call transacion", I have to create a session, and the user will post the document by launching it in SM35. This way, even adding "No batch input" = 'X' in the options of "BDC_INSERT", the popup screen appears when running the session.
    So, is there any way of running the session in SM35 with the option "No batch input"? If it's not possible, which is the best option of dealing with these popup screens? I have been able to go from one dynpro to another, and to open that popup screen, but I can't fill the mandatory fields.
    I hope you understand my problem, please excuse my English.

    Hi ,
    Go to the T code Mass , put the object as KNA1 for customers .
    Execute the same and you will find all the option available for making mass changes .
    In case if your requirement does not meet here then you will have to go for a LSMW .
    Regards ,
    Dewang T

  • Saving custom fields to MSEG added in additional TAB in MIGO transaction

    Hi Experts,
    I am facing an issue with an enhancement in MIGO transaction for which i need help. I have gone through several threads with similar issues but none of them have solved my issue. I have worked around with all BADIs of MIGO and user exits available but to no avail so I am posting a new thread.
    The requirement is pretty straight forward of adding a custom TAB in item details section of MIGO transaction. I have done that using BADI: MB_MIGO_BADI, method PBO_DETAIL. I created a screen with my custom fields and passed them in this method. The TAB appears as expected with all the fields. The custom fields are in MSEG table which has been enhanced and it needs to be updated with the user values on the screen.
    The issue creeps in when there are multiple materials in the purchasing document and user works around with them. Say he clicks on the second material and in the custom TAB changes its details in custom fields. Now he clicks on the fourth material and changes its details. Continues this for all the materials in random order. How do i identify in my custom screen [developed separately and called in PBO_DETAIL of the BADI] which details belong to which material or line number. The only way to do it is by using the purchasing order number and line item number. These are not available in my custom screen and needs to be exported from somewhere and imported there. I have not been able to identify the point where export can be done.
    Can anyone help me out with this problem? Either the point where export can be done or any other way of identifying the link between the line number / material number and the custom field details entered by the user.
    Thanks,
    Ritvik

    Hi Ritvik,
    you will not need it.
    The item methods will process exactly the item what the addional item data are related to. In PBO_DETAIL and PAI_DETAIL, use parameter I_LINE_ID for the item reference.
    Note: Not only read SCN etc,  also the parameters desciption of the methods used.
    Regards,
    Clemens

  • ESS custom fields - data entered in ESS screen is not saved in SAP record.

    I am working with an ABAPer on the BAdI HRPAD00INFTYUI. We are trying to make a few customer Z* fields avaialble on ESS for IT0021. We followed the document posted at
    https://www.sdn.sap.com/irj/scn/wikipath=/display/profile/ESSPersonalInformationUIenhancementwithoutmodification
    I managed to make the fields visible on the iview as per instructions from document at link above (I don't know much about portal config).
    Problems we have:
    When I enter data in the custom fields on ESS and press Review button the custom fields no longer show. In addition, the data record does not save the information entered in these custom fields.
    Cannot figure out how to change the order in which they appear on the screen. They are not in the same order that they appear on the 'Edit custom extension fields' screen where I made them visible.
    Any input is appreciated.
    Thanks,
    Nicoleta

    Hi,
    I think there are a few tasks that you can try to solve your problem (if you haven't already)
    - First you will have to repeat the personalisation steps that you performed (on the initial portal i-view screen) in the the review screen to get the fields to display on this screen.
    - to get the fields to update you will need to add them to the view V_T588MFPROPC or possibly V_T588MFPROPS though this table should be for SAP namespace
    - You may need to check your code in the INPUT_CONVERSION method of the BAdI
    Hope this helps
    Andrew

  • Multi line custom field badly saved to database

    Hello community,
    we're fighting currently against a strange issue.
    All projects has some multi line custom fields to fill every week for project status.
    During this exercise, some of the comments seems not well saved to database.
    While coming back to the PDP, we are seeing a strange behavior :
    Starting from that, I tried to look in the database and the saved html format is badly formatted, you can see a </div> in the middle and a missing one at the end of the sentence:
    <div>Révision et approbation de l&#39;ODS de Facilité.</div> <div>&#160;</div></div> <div>Compléter&#160;le questionnaire à soumettre aux experts.</div>
    <div>&#160;</div> <div>Présentation et choix des experts.
    As of now, we did not find any reason why this is happening.
    While opening back the PDP in edition and saving back ,the problem is solved.
    This is annoying because we are treating the html code as xml for reporting as seen here (http://aboutmsproject.com/converting-rtf-to-text-in-sql-revisited/
    ) and this is crashing because of badly formatted html code
    any advices?
    regards
    Jérome

    Hi Jerome,
    I've seen this issue occur when text is pasted into the field from other applications, like Outlook and Word. I've not yet been able to determine how to get it to stop. The error then causes the invalid XML issue you are seeing. A former co-worker had successfully
    integrated the use of jQuery into PDPs. I'm wondering if they have a HTML clean function.
    Thanks for finding my post useful!
    Treb Gatte, Project MVP, Tumble Road LLC |
    @tgatte | http://AboutMSProject.com

  • Adding custom fields in table control of PO

    Hi Everyone,
    I have a requirement which i need to display the custom fields in the Table Control(Item Overview) of PO. Since our Version is 4.6C there is no badi's avilable to do the changes. Please let me know how can we solve this problem.
    Mentors: Forgive me if it is repeated Post...
    Edited by: subas  Bose on Feb 5, 2010 12:10 AM

    Hi,
    Search for user exit...either screen or field exit..this will solve your problem.
    Small help on how to find a exit;
    1. find out the package
    2. go to se84 with the help of package in the cutom exit tab look for all the exit.
    3.put the brek point and tack where you can get the solution.
    Pooja

  • Custom Fields in ME51

    Hi all,
    There is a requirement to include additional fields/columns in PR service specification level for additional data input.
    <b>For example:</b>
    Users want to enter separate descriptive text besides the service short text in the same line item (they do not want to use the long text feature).
    Can anyone enlightened me on:
    1. How do I add additional fields? Do I append to the current table?
    2. How can I modify the line item view in all ME51,52 and 53 to rearrange and display input for the new fields?
    3. Can this be achieved by enhancing the standard program or a new screen is needed?
    Please advice.

    Hi
    You would have to add additiional sub screen to your transaction via a screen exit.
    First you would create a sub screen  with all fields you want to put including a PAI and PBO.
    Then you find the appropriate screen exit for it. For ME51/52/53 the following exits apply...
    AMPL0001            User subscreen for additional data on AMPL
    LMEDR001            Enhancements to print program
    LMELA002            Adopt batch no. from shipping notification when posting a GR
    LMELA010            Inbound shipping notification: Transfer item data from IDOC
    LMEQR001            User exit for source determination
    LMEXF001            Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001            Customer-Specific Source Determination in Retail
    M06B0001            Role determination for purchase requisition release
    M06B0002            Changes to comm. structure for purchase requisition release
    M06B0003            Number range and document number
    M06B0004            Number range and document number
    M06B0005            Changes to comm. structure for overall release of requisn.
    M06E0004            Changes to communication structure for release purch. doc.
    M06E0005            Role determination for release of purchasing documents
    ME590001            Grouping of requsitions for PO split in ME59
    MEETA001            Define schedule line type (backlog, immed. req., preview)
    MEFLD004            Determine earliest delivery date f. check w. GR (only PO)
    MELAB001            Gen. forecast delivery schedules: Transfer schedule implem.
    MEQUERY1            Enhancement to Document Overview ME21N/ME51N
    MEVME001            WE default quantity calc. and over/ underdelivery tolerance
    MM06E001            User exits for EDI inbound and outbound purchasing documents
    MM06E003            Number range and document number
    MM06E004            Control import data screens in purchase order
    MM06E005            Customer fields in purchasing document
    MM06E007            Change document for requisitions upon conversion into PO
    MM06E008            Monitoring of contr. target value in case of release orders
    MM06E009            Relevant texts for "Texts exist" indicator
    MM06E010            Field selection for vendor address
    MM06E011            Activate PReq Block
    MMAL0001            ALE source list distribution: Outbound processing
    MMAL0002            ALE source list distribution: Inbound processing
    MMAL0003            ALE purcasing info record distribution: Outbound processing
    MMAL0004            ALE purchasing info record distribution: Inbound processing
    MMDA0001            Default delivery addresses
    MMFAB001            User exit for generation of release order
    MRFLB001            Control Items for Contract Release Order
    You would have to check which applies to ur requirement and then code accordingly.
    Hope this helps to solve ur problem....
    <b>do reward if useful....</b>
    regards
    dinesh

  • Custom fields in PO item Overview

    Hi Everyone,
    I have a requirement which i need to display the custom fields in the Table Control(Item Overview) of PO. Since our Version is 4.6C there is no badi's avilable to do the changes. Please let me know how can we solve this problem.
    Mentors: Forgive me if it is repeated Post...

    Hi,
    Search for user exit...either screen or field exit..this will solve your problem.
    Small help on how to find a exit;
    1. find out the package
    2. go to se84 with the help of package in the cutom exit tab look for all the exit.
    3.put the brek point and tack where you can get the solution.
    Pooja

  • Custom Field

    I am trying to create a Custom field in address book on a group of contacts. Is this possible or does each one need to be changed individually.
    Also, I can't seem to mark a previous post as "solved" I've tried on several machines over the last 24hrs the error I get is:
    Error
    +An error in the system has occurred. Please contact the system administrator if the problem persists.+
    +Useful links :+
    +Forum Home -- browse the forums here.+
    +Search Forums -- visit the search page to query all forum content.+
    Any ideas on what the problem is?
    Thanks.
    Betsy

    Hi Aasim,,
    Is the addition of the Field in SAP GUI Transaction - CRMD_ORDER is valid one. If in case you are at SAP CRM 7.0 or Higher version then SAP has already recommended using the new WebUI for all the Business Functionality and SAP GUI only for administrative purpose. Also, you should take care of whether SAP will support SAP GUI CRMD_ORDER or not.
    You can make the changes in the CRM BOL and GENIL Layer using the Easy Enhancement Work Bench (EEWB) or Application Enhancement Tool (AET). That will add the fields but for the UI you have to make use of the Enhancement Set and Configure the changes in it. And you can add many Custom Fields based on your requirement.
    You can have a look at the following link for:
    EEWB:
    Adding Custom Fields using EEWB Transaction
    AET:
    Adding Custom fields using AET
    Hope this helps.
    Best Regards,
    Shakun.

Maybe you are looking for

  • A Tip for using EJB 3.0 with WebLogic Ant Tasks

    I started out writing this up as a problem, but then I found the answer so I'm, posting a tip instead. When I tried to write an EJB [stateless] using EJB 3.0 in my legacy Weblogic ear project I started getting this error: <pre> No EJBs found in the e

  • A question about development of livecylcle forms

    Hello,  I have been asked to build complex static forms for a client of ours using Livecycle Designer version 8.2.  The forms are static (fixed field) forms that will not interact with users in any way.  We will be populating the form fields from a .

  • Email and spambots

    OK, I've been reading the many threads about how to change the email link and all that. I've consulted ken and allysun's sites, probably more at Rowan cottage. I'm not sure I'm fully in the know, but I think I've got it in general terms. My question

  • Having to re-enable sharing on 2008R2 server after each reboot.

    I have a 2008R2 EE server that has some foder shares located on a drive. We have an application that uses those shares but evertime the server reboots I have to go in and manually re-enable the sharing for the shares to reappear. Has anyone seen this

  • Compare current row of iterator with row.rowKeyStr of af:iterator

    Hi, I have an af:iterator looping though all employees. For each employee I display a button. When the user presses the button then the current row of the iterator is set (with setCurrentRowKey). This works so far. Now I need to mark the button which