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

Similar Messages

  • 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.

  • How to update sales order number (KAUFN) characteristic in the profitability segment of the PA document created at the time of service entry sheet confirmation, as a result of shipment cost document

    Hi,
    We have a scenario wherein we create shipment cost documents against delivery. As a result of shipments fully transferred, a PO for freight vendor is automatically created and a service entry sheet confirmation happens. As a result of service entry sheet confirmation, we have Financial accounting, Controlling and profitability analysis documents created. We have a requirement wherein we need to have the characteristic “sales order number (KAUFN)” populated in the profitability analysis document created as a result of service entry sheet confirmation.
    Could someone please advice how could this be attained in COPA. Thanks for your help in advance.
    Regards,
    Sandeep

    Hi Ajay,
    Thank you for the quick update.
    The document is updated to COPA through OKB9 settings. The profitability segment is updated with fields like customer, product, company code, plant, sales area data, profit center, etc; however the sales order number is missing.
    Could you please elaborate further how could FI substitution be implemented to call for the FM COPA_PROFITABILITY_SEGMENT through user exit? Are you recommending the substitution through GGB1? What could be the possible validation to call for the user exit to be implemented?
    Regards,
    Sandeep Kulkarni

  • Question about the profitability segment

    Hi,
    How can the profitability segment be picked up when posting a cost via a PO?
    Thank you.
    Kind regards,
    Linda

    Hi,
    The Profitability segment can be picked from the Account Assignment category which needs to be selected during creating PR or PO. In this, you can make profitability segment mandatory so that the user will have to specify this at the time of creating purchase requisition or PO itself .
    Additionally, you can create a Characteristic group and assign this to the Assignment screen (T-Code KE4G) and here you can assign the Business transactions RMBA (Material purchase requisition) & RMBE (Material purchase order) to this Characteristic Group so that these Characteristics are mandatorily required to be input when creating a PR or PO. Further, you need to maintain the GL Accounts in the PA Transfer structure for direct postings from FI/MM.
    Assign points if useful.
    Regards,
    Rajaram

  • Long text field required in customer field

    HI everybody,
      We are in the implementation of SRM 5.0. Here requirement is using z include structure, the customer fields have to be added.
    In structure, i can add my own fields. But customer wants long text in customer fields.
    If i maintain a field with 300 character means, screen displayed as single field as lengthy one.
    But customer wants long text.Main worry from customer side is, they want to able to copy and paste paragraph into SRM customer field.
    So please suggest me that how can i acheive this issue.
    Txns in advance

    Hi.
    You call read/write this field with FM REAd_TEXT of WRITE_TEXT, check this example:ù
    ztdline       TYPE tline           OCCURS 0   WITH HEADER LINE,
            CALL FUNCTION 'READ_TEXT'
              EXPORTING
                client                  = sy-mandt
                id                      = 'F01'
                language                = 'I'
                name                    = ekko-ebeln
                object                  = 'EKKO'
              TABLES
                lines                   = ztdline
              EXCEPTIONS
                id                      = 1
                language                = 2
                name                    = 3
                not_found               = 4
                object                  = 5
                reference_check         = 6
                wrong_access_to_archive = 7
                OTHERS                  = 8.
            IF sy-subrc <> 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
    the table ztdline have the long text.

  • 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.

  • 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

  • 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

  • Mandatory field set up for Profitable segment entry

    Dear All,
    Is there any way to set up Customer as mandatory field in profitable segment while manually posting  to GL for which Profitable segment is required.
    Thanks,
    Ram

    Hi Ram,
    You could try to use Enhancement COPA000 for this requirement.

  • Order value fields by field label in the profitability analysis document

    Hello,
    I am displaying a profitability analysis document and I want to order the value fields by their technical name (VV001, VV002, VV003...) instead of in alphabetical order (the system orders them by the field label).
    Is it possible?
    Thank you very much
    Bea

    Hello,
    Check in KE4M whether sd condition type FKLMG  is mapped corresponding value field in COPA.As you are getting the value for other company codes, this setting should be there.
    You can also try checking simulation of billing document transfer through KE4ST. Check the details analysis
    thanks
    Hari

  • Want to put URLs into a custom field in the requirements

    I tried to put some code into a custom field in Empirix eManager. I was trying to add a URL to the requirement where the person could see more information. Specifically, we have use-cases online and a mockup of the final product to be developed. I wanted to put a mockup URL and use-case URL for each of the requirements where appropriate to help the developers further understand their task.
    So, I did added something like this into the custom field when creating the test case:
    View Textbook Use Case
    Unfortunately the javascript didn't execute because the eManager application put the whole command in as a string. What displayed is exactly what you see above. I'm sure this is done for security reasons so that cross-sight scripting is protected against. However, I'm not trying to do anything suspect -- just trying to link things together.
    So I went to the database for our project in eManager. I could bypass the security coding that disallows code to be placed into the field by adding it at the database level. However, when I got there it became evident that I didn't know the datamodel well enough to successfully add a field value there without possibly causing some problems. In the past I've only queried the database and not any modifications.
    Can someone tell me how a custom field value is inserting into the database? Which tables does it need to be added to to maintain referential integrity? Or alternatively, do you have a document with the schema outlined? Are there any important stored procedures we'd be missing if going directly at the database. Can anybody advise me?

    Hello Gandalf,
    If you created a customer field in OXK3, I am afraid that the customer defined field created is only
    available on G/L account line items but not Customer or Vendor line items(The field is not available on SAPMF05A screens 301 and 302).But it is possible to use it in fast entry screens SAPMF05A 8xxx (see note 2596).
    Best Regards,
    Gladys xing

  • New custom field in the POWL search criteria

    Hi experts,
    My requirement is to add a new custom field in the search criteria (Parameters)
    In my Easy shopping card POWL. I need to add custom fields in search criteria.
    I tried appending my custom fields in structure /SAPSRM/S_SEARCHFIELDS
    And customized the POWL type DB criteria SAPSRM_FEEDER_SC by adding the custom field
    But still the newly added search criteria is not displaying in the
    Query   SAPSRM_E_CHECKSTATUS_01 in powl_query transaction.
    Kindly help me to solve this issue
    Regards
    Chinnaiya P

    Hello Konstantin,
    thanks for the reply...
    I tried to add an extra Field(Company code) in POWL Search. the problem is the Field Company code doesnt get updated in BBP_PDHSC and BBP_PDISC with the value used in while creating SC.
    I only get the Company code value in table BBP_PDBEI for SC.
    So when i give any value in POWL search for company code no data is shown even though the SC was created in the inputted Company code.
    so how to go about adding CC as search criteria in POWL so that the resultant output is filtered on the basis of CC value.
    Thanks
    Rajat

  • Adding Custom fields to the layout of the screen

    Hi,
    I am facing a weird problem .When I try to add my custom fields(Requestor Price/Currency) to the end of Item Basic data screen(Similar to fields "Price/Currency),by enhancing the web dynpro component,then all the fields above the custom fields are shifted 1 place down in the layout(Right Container).I have no clue why it is not happening?could anybody pls help me in solving this issue

    Hi Kiran
    Thanks for your reply.My requirement is to add the custom fields similar to the Price/Curreny field in the Currency,values and Pricing section of Item basic data in Shopping cart.Whenever I try to add an ui element(say a label with ui element of matrix head data) to the RIGHT_CONTAINER in the layout page,all the elements in the container are getting changed.Is deleting the RIGHT containe and creating again is the only solution because it is quite a tough job to recreate again(with so many fields and ofcourse I should be careful).It is working fine in my sandpit system but not in my dev system(SRM version with latest patch ).This issue is really driving me crazy.Could you please help on this.
    Thanks,
    Rohini

Maybe you are looking for

  • Bluetooth mouse and keyboard do not work

    I purchased an iMac G5 about 6 months ago. I got it with a bluetooth mouse and keyboard. I have had trouble with it from day 1. Apple had me replace the logic unit, and it worked for a couple of weeks. Then as soon as the 90-day warranty for complime

  • Adobe X std will not print pdf.

    I have new HP envy dvt7 with acrobat X standard. and win 8. If I try and print pdf from any office document, the document just spools. I cannot delete doc in queue unless I turn computer off. If I go to task manager it says Word/Excel/Outlook"not res

  • Illustrator won't launch

    I updated Updater and Illustrator and now it won't launch. I am using OSX 10.8.2 and Illustrator CS6.

  • Goods Receipt - Periods - SAP Business ONE

    HI I made an error wlhile posting a goods Receipt :this is what i did i posted a goods issue in January 2012 but by error i posted the goods receipt in the receiving Warehouse in January 2011 after adding the transport cost to the Product in question

  • Mixing 1262 with 2600/3600

    Guys, would there be a reason not to mix up 1262 APs with 2600/3600 APs in a new deployment? I need the flexibility that the RP-TNC antennas provide for some areas, but in other areas, I am don't need anything unusual and I would love to go with the