What is "Customer Fields" Tab in the CHaRM

Hi All,
can any one explain what is the "Customer Filelds" tab in the Change Request for?
It is found under the Transaction Data button  of the Change request ticket.
Thanks in advance.
Regards,
Pradeep L

Pradeep ,
This tab is used for creating additional customer fields
note
Note 816456 - Customer enhancements for CRM business object types
Regards
Prakhar

Similar Messages

  • To change a field to edit ,which is in customer fields tab of an item in crmd_order transaction.

    Hi All,
    My requirement is to change a "field to edit" which is in "customer fields tab" of an item in "crmd_order" transaction.
    Please find the screen shot.
    Please help me with this issue

    Use easy enhancement workbench
    The Easy Enhancement Workbench is a development tool with which SAP applications (called Business Objects in the following document) can be extended in a simple manner.
    Customer enhancements to a Business Object are defined via wizards. The Workbench then does all development work for the user; databank tables, screens and application logic are created automatically. Finally the customer enhancement is included in the SAP standard.
    This also allows users without ABAP knowledge the simple possibility of extending the SAP standard.
    An extension created using the Easy Enhancement Workbench does not differ technically from one created manually. In both cases transportable ABAP objects are created and the same Customer Exits, Business Transaction Events or BAdIs are implemented
    You need to use EEWB feature to achieve the same.
    Tutorial
    http://www.scribd.com/doc/6755615/Eewb-Steps
    http://help.sap.com/saphelp_crm50/helpdata/en/9f/a19c921f0911d6b1d500508b6b8b11/frameset.htm
    In addtion check this note
    Note 484597 - Customer enhancement of CRM applications
    a guide is attached to it for telling u steps
    Hope query is solved
    Regards
    Prakhar

  • Using ms project 2007 and vba macro to list all the custom fields used in the project?

    Hi,Using ms project 2007 vba macro, I would like to be able to list all the custom fields used in the project and their corresponding field names. e.g. let us say I create a calculated duration field and name it "expected duration" and the name
    of the field I select is Duration1.
    I am trying to write a macro that will list all the used custom fields such as the result would look like:
    Duration1 ---> "expected duration"
    Text1       ---> "anything"
    Flag1        ---> "....."
    Number1  ---> "..............."
    Can anyone provide me with the solution?
    Regards,
    Chuck

    John,
    I found this module, which provides the the list of custom fields used in the project but does not provide the name given to the field. Here below is the module and hope you could help me achieve this by modifying the macro to list the renamed field.
    ' MSP Checks all Custom Task Fields
    Sub checkfields2()
    'This macro will check and report out which custom task fields are used
    'It requires Project 2002 and above as it relies on the GetField
    'and FieldNameToFieldConstant methods which were not introduced until
    '2002.
    'It does not include resource fields, however it is a simple matter to
    'do it by replacing the pjTask constant with pjResource.
    'Copyright Jack Dahlgren, Oct. 2004
    Dim mycheck As Boolean
    Dim myType, usedfields As String
    Dim t As Task
    Dim ts As Tasks
    Dim i, it As Integer
    Set ts = ActiveProject.Tasks
    usedfields = "Custom Fields used in this file" & vbCrLf
    myType = "Text"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 30
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Number"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 20
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Duration"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If Left(ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)), 2) <> "0 " Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Cost"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> 0 Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Start"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    myType = "Finish"
    usedfields = usedfields & vbCrLf & "--" & UCase(myType) & "--" & vbCrLf
    For i = 1 To 10
    mycheck = False
    it = 0
    While Not mycheck And (it < ts.Count)
    it = it + 1
    If Not ts(it) Is Nothing Then
    If ts(it).GetField(FieldNameToFieldConstant(myType & i, pjtask)) <> "NA" Then
    usedfields = usedfields & myType & CStr(i) & vbCr
    mycheck = True
    End If
    End If
    Wend
    Next i
    MsgBox usedfields
    End Sub
    This is what the module gives me. But I would like to have beside Text 1 the name that is shown as below. e.g Text1 is "Test".
    Would you mind helping me achieve this?
    Thanks in advance.
    Chuck

  • Get the custom fields data at the time of save

    Hi,
    We have added few fields in the ICWC for the complaint screen.
    At the time of save i am trigering a BADI.
    I would like to check the data that is entered in those fields of complaint screen.
    Is there any FM which can be used to get the data from the buffer ?
    I have the header GUID available to me .
    Thanks.
    R

    Hi,
    Let me elaborate a bit.
    Users would create the complaints in the ICWC.We have addeded few custom fields in the complaint screen.
    CRMT_CUSTOMER_H_WRKT is extended with the custom fields.
    At the save i am trigerring the Partner Determination BAdi.
    Here i have the complaint guid at run time.
    I would like to check the data entered in the custom field in the complaint screen. Based on this i would like to determine one more partner.
    My question is how can i get the custom field data in the complaint screen in this BAdi.
    The FM:  CRM_ORDER_READ is not returning this data.Is there any FM to get this ?
    Thanks.
    R.

  • Required a customer field(located in the profitability segment box) as mand

    our client is requested  that the customer field (located in the Profitability Segment box) be a mandatory field for GL accounts which are getting posted directly from FI. This field is needed so that proper reporting can be generated for bad debt and product liability claims. Currently this field is not a mandatory when making journal entries, so there were some postings happened with out customer field. Due to this we are unable to extract exact values in CO-PA reports . Please can some one help me on this and explain the process and settings for this??
    Thanks in advance.
    Regards,
    Venkat

    Hi Eli,
    I have posted note to SAP and i got the below reply from them.
    Get this functionality you should change
    the coding of form DERIVE_CRITERIA_EXTENDED from include RKEVRK2L after
    uninstallation of note 115500(in case you have installed) like this:
    Im Dialogfall (Kontierungspopup) Verprobung ob für Feld
    Mußeingabe erforderlich (Merkmalsgruppe!)
    (nicht f. Faktura, da dort keine Fehlermeldung moeglich)
    if ( xt_criteria-field is initial
    BEGIN OF DELETION *****
    and xt_criteria-status eq '2'
    and not is_status_flags-dialog is initial ) .
    perform send_message using 'KE' 'E' '494'
    END OF DELETION *****
    BEGIN OF INSERTION *****
    and xt_criteria-status eq '2' ) .
    data: l_mtyp type c.
    if not IS_STATUS_FLAGS-DIALOG is initial.
    l_mtyp = 'E'.
    else.
    l_mtyp = 'W'.
    endif.
    perform send_message using 'KE' l_mtyp '494'
    END OF INSERTION *****
    xt_criteria-fieldname
    is_cobl-vorgn
    i_char_group
    endif.
    Afterwards you have to run function module RKE_GENERATE_INTERFACE_ACT
    for your operating concern to update the generated program RK2LXXXX.
    Thanks & Regards,
    Venkat

  • What does Customer refer to in  the following script?

    What does Customer refer to in the following script? Is it a class name?
    What does return refer to?
    public class Order
    +{+
    +// ...+
    public Customer getCustomer()
    +{+
    return (Customer)m_cacheCustomers.get(m_customerId);
    +}+
    +// ...+
    +}+
    Thank you

    jetq wrote:
    What does Customer refer to in the following script? Is it a class name?
    What does return refer to?
    public class Order
    +{+
    +// ...+
    public Customer getCustomer()
    +{+
    return (Customer)m_cacheCustomers.get(m_customerId);
    +}+
    +// ...+
    +}+
    Thank youHi Frank,
    in this example the Customer is the Java class of objects which are put into a cache and is not Coherence specific at all. This is just the return type similarly to how a (stored) function in Oracle may return a row-type containing multiple values.
    The return is a Java keyword which in a non-void method instructs the JVM to return the value of the expression following it from the method as the method return value if an expression follows it, and in a void method it simply returns from the method (no return value in this case, similarly to stored procedures).
    Sorry for my saying so, really no offense intended, but judging from your questions you might want to attend at least a beginners Java course.
    Best regards,
    Robert

  • How do I add new fields to the 'Customer Data' tab under the BP

    I had previously found a screen in the SAP GUI to add fields so that they would show up on the 'Custmer Data' tab under the Business Partner screen. I thought it had been somewhere in se80 but I cannot find it again. Does anyone know where this is? Thank you!

    Hi Mark,
    You can do this using transaction EEWB. This is the Easy Enhancement Workbench.
    within this, you can use the wizard which will guide you through a step by step process to add the fields you need. Basically, there are 2 ways to add new fields  :
    1. Add new fields - this adds fields to table BUT000, but places the fields on a new tab called 'Customer Data'
    2. Add new attributes table - creates a new table and links it to BUT000 using the partner number.
    Hope this helps you.
    Cheers,
    Rishu.

  • Problem is with the custom field validate in the custome tab

    Hello Experts,
    We have created additional tab in cProject Project definition level
    with some Custom fields.
    1. These all custom field we have maintained search help with Check
    table. But cProject screen these fields it is allowing other values
    also aprt from check table values. It is not through any error while
    entering wrong value apart from check table values. Properly maintained
    the check tables in back end.
    2. One custom fields my client need only to allow Numeric values only.
    For this we change the data element as 'NUMC' in field. But it is
    allowing entering the char value also.
    Kindly suggest if anything is needed to be done in webdynpro component
    level to maintain validations for custom fields.
    Thanks in advance for your help.
    Thanks & Regards,
    Raj

    Hello Raj
    I am having the same issue. Have you been able to resolve yours, and how did you ressolve it?
    Thanks
    Chatsworth

  • ChaRM: Customer fields Tab & Documentation

    Hi
    In the Change request screen there is a tab for customer fields under transaction data.  In this Tab there is a "Documents" button that allows me to attach project documentation to the CR.
    However if I try to do that when the CR has been approved it just says "Function cannot be performed".
    How can I change this behaviour to allow me to attach documentation after the CR is approved?

    Thank you
    This table is configured in the IMG area
    SAP Solution Manager
    Scenario Specific settings
    Change request management
    extended configuration
    assignment of documents
    configure action menu
    In this area I took the 2 entries for SDCR user status E0004 and copied them
    Set the activities to Change Document & saved these
    Then copied the original 2 entries again
    Set the activies to Assign document
    That gave me the activitie I require.
    Many thanks for your help

  • Custom fields to change the actions ;list

    Dear all,
    I had put a custom check box in the new custom tab.
    Based on this check box value I want to set the actions in the action list.
    for example ...say the custom check box is 'Approval required' . if this is checked only then the action list should have action as Approved ...otherwise not.
    This is field is created in the crmd_customer_h table thru the structure.
    Now I have created a parameter in the container editor like the same screen field (with import and export options checked) and in the condtions for this action, I have written to display this action only if this parameter has the value 'X'.
    Its not working.please advice me how to proceed.
    Also can we set the break point here.
    thanks
    regards
    sanjeev

    Hi,
    please use BADI CONTAINER_PPF to fill the value of your parameter.
    Check note [865619 - Actions should only be scheduled if status is newly set|https://service.sap.com/sap/support/notes/865619] for further examples.
    Regards,
    Christoph

  • Restricting the Custom fields while copying the satandard TA

    Dear Experts
    I have a scenario where i have to create new Transaction type ZSBC for B2C sales in R3 4.7 ; and i want to map same in CRM2007 inorder to flow transaction type for further execution in both the systems.
    so my problem is when i try to copy from the standard Transaction type (TA) which has got Custom fields they are also getting copied in CRM2007 where i am  able to copy Standard order (OR) in R3 4.7.which does not have any custom field. the thing is i don't want copy those custom field  so how do i restrict them ,in order to make both the transaction types and item categories as same.
    Hence i request you all could you please help me
    Thanking you in advance.
    Regards
    Rao

    HI,
    This kinda functionality can be achieved through standards and dont need any developments.
    THis can be achieved via Partner determination procedure.
    In partner determination procedure, for a particular partner function, say Payer, you can assign an access sequence.
    Use acess sequence 0001 or 0002 whichever satisfies your criteria.
    SPRO > SAP Implementation Guide > Customer Relationship Management > Basic Functions > Partner Processing
    Under this node you will find Access sequence definition and Partner determination procedure.
    Hope this helps.
    Kindly reward with points in case helpful
    Sharif.

  • Adding Additional Custom Fields to Alerts

    in the Custom Fields tab of the alert properties, there are 10 custom fields. a few questions regarding "custom fields"
    is there a way to add addtional custom fields?
    can variables be placed in the custom fields so data that changes from alert to alert can be passed?
    is there a way to add additional custom fields and give them a more formal name (e.g. MyHomeGrownField)
    thanks.

    Yes you can put values in these custom fields. but you cannot change the field names to something else.
    Values can be put in these fields through OpsMgr PowerShell. Check the links -
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/dde47a28-ce70-4144-b7f3-70cb8a3d3cb9/using-custom-fields-in-scom-alerts?forum=operationsmanagergeneral
    http://scug.be/dieter/2012/01/23/scom-2012-pass-data-to-custom-fields-with-monitors/
    Thanks, S K Agrawal

  • Custom field in PO header tab and its editable status

    Hi All,
    I have added an input field in the PO header (Customer Data) tab.
    The same field has been appended in the EKKO table.
    The update as per user's entry in PO is getting done in database table.
    The field will get grayed out for ME23N tcode and will be editable for ME21N and ME22N.
    The logic has been written in the PBO section.
    Now, within the tcode ME23N, user has option to get into change mode by pressing F7.
    Once user clicks F7, the PO gets into change mode, but the custom field will be still in uneditable mode itself.
    There are couple of other custom fields are in the same tab. They get into change mode with F7, but this alone remains un editable.
    How to make it editable in this scenario???
    Regards
    Pavan
    Edited by: Pavan Sanganal on Dec 26, 2011 6:56 PM

    HI Pavan,
    so only one custom field will not update in update mode after clicking f7 , so what happend exactally when user clciks on f7 the field properties are changed in to editable mode, in module pool program we can change field properties using internal table SCREEN , so loop the screen check this input field properties , like
    loop at screen .
    if screen-name = 'custom_field'.
    input = 'x'.
    endif.
    endloop.
    Regards
    Siva

  • Help ! I can't find the "field" tab for an object in the library

    Just starting out with the software. I want to place a text box that spans several lines and "allow multiple lines" in a form I am building. The only problem is I can't find the field tab for the text box object. The only two tabs I have at the top of the object library is "Object Library" and "Fragment Library"
    What am I missing?

    Click on the Object Library. Below that there shoudl be three libraries (My Favorites, Standard and Custom). The Textfield is in the Standard library. If all else false you can use the Insert Menu and then choose standard from there.
    Paul

  • New Tab in WBS Elements & need to pull fields from Std SAP Tab to the New

    Hi All,
    I would like to create a new TAB in WBS Element & I need to pull fields from Basic data tab,Origanization Tab,Control Tab & user Fields Tab  to the New Tab.
    Basically my clients wants to see all the fields (based on the requirement) in one TAB.So user will directly  go to the Custom Tab & enter the input data & save.
    So Kindly guide me how to proced.I tried WBS Layouts ,but am confused.
    Any ABAP work is required?or can we do it in PS Configuration itself?
    Thanks
    Suresh

    Configuration:
    Project System>Structures>Operative Structures>Work Breakdown Structure (WBS)>User Interface Settings>Layout of WBS Element Detail Screens>Define Layout of WBS Element
    Detail Screens
    Do do something as below:
    Project Profile:000CAP1
    Act Cat:*     
    Tab Page ID: TAB01     
    Tab page Title:Basic Data
    ICON_HEADER
    Details Screen 1: 2 (WBS Element Basic Data)
    Details Screen 1: 5 (WBS elements, organization)
    Details Screen 1: 8 (WBS Element: User Fields)
    Regards
    Sreenivas

Maybe you are looking for

  • Windows Vista Home Version and Adobe Flash Player 10.

    I use Windows Vista Home Version and I am finding it difficult to download Adobe Flash Player 10. It appears to have been downloaded but on examining Control Panel, I discovered that its content is empty (no size is aportioned to it). Most importantl

  • HT1014 i movie 08, 7.1.4 not recognising clips to import from camcorder

    Hi , I have a panasonic HDC - SD40.I have imovies '08  version 7.1.4 The first 2 clips I recorded on it last year are the only 2 clips that i movies will recognise each time I connect it to  my PC .So I have a year of recordings that i cannot get ont

  • Recovery Issue

    Hello Team, I did recovery using recover datbas***** until cancel. Mistake:- Gave wrong undo tablespace name, Error cam while recover:- disconnected forced, alert log says:- undo tbs not found. So, now i did resetlogs also and now when i do recover u

  • Premiere pro or encore?

    hi all-some advise needed. I want to make the best quality professional wedding dvd for a client nd I have a few options and i just want to get feedback on which is the best method. pc=win xp, prem pro 2 and encore 1.5, PAL, 4x3 plenty of hard disk s

  • [MAC OS X - Illustrator CS5.1] DragDrop between Illustrator and Extension

    Hi, What I would like to achieve is to handle Drag and Drop between Illustrator and Creative suite extension (specially from Illustrator to extension, designed for Illustrator). I would like to get a reference or a pointer on the selection / objects