Quantcast
Channel: SCN : All Content - SAP CRM: Webclient UI - Framework
Viewing all 4552 articles
Browse latest View live

RSPPFPROCESS - Batchpgm

$
0
0

Hi,

 

I have action profile setup for quotations. It will set the status of the quotation if the today date is less than valid until date.

Processed At - Processing using selection report. 

This action profile can be executed only one time successfully executable one.

 

I have scheduled batch job using report RSPPFPROCESS with parameters

1. Application

2. Action profile

3. Action definition

4. Processing at - Processing using selection report.  

5. Processing without dialog 


The pgm is running forever.


My questions is

1. Whether this pgm will pick all the documents in production and check whether action has met the selection criteria or not ? if yes process the document

or 2. It will pick only the quotation where the criteria is met ?

3. It will ignore already processed document i.e PPF processed and pick only not processed one. ? 


If its picking all the documents, then it will take time because i have 30K + entries in production. 


Kindly clarify


Regards

Kishore. 






PLs. find link between a case and its activities?

$
0
0

Hi ,

 

I need a function module or a table relation  in order to make a link between a case and its activities.

and also want to know the relation between *crmd_orderadm_h-guid with SCMGRECP01-PHIO_ID. *

 

Please help me .

NWBC for HTML - F4 / drop down does not work, Export to excel not working

$
0
0

Hello Experts,

 

I am working on NWBC for HTML client with SAP CRM for incident management. Everything looks good except, on Customer field (in Incident create screen), if I press F4 or click on drop down button, a dialog box does not come up for selection/search for customer.

 

Also, on search incident screen result list, when I try to click on excel button, I get following error:

"DNS could not be resolved"

 

  • NWBC patch level is 42 as required.
  • NWBC for HTML is used with version 3.5.2.30

 

Any help on this?

 

Shital Kansara

Survey Data creation in service

$
0
0

Hi all,

 

I have requierement to upload data for survey for transaction service Request.

 

But when i am trying this then it is deleting all and creating new survey .

 

CALL FUNCTION 'CRM_SURVEY_DATA_GET'

  EXPORTING

    iv_object_kind        = 'A'

    iv_object_guid        = '46237A4EBD780B64E10000000A8D6829'

  IMPORTING

    ev_object_guid_header = guid_h

    ev_object_guid_item   = guid_i

    ev_process_type       = process_type

    ev_item_type          = item_type

    ev_object_type        = object_type

    ev_process_mode       = process_mode

    et_survey_ui          = it_survey_ui

  EXCEPTIONS

    error_occurred        = 1

    OTHERS                = 2.

IF sy-subrc  = 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  •         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

 

  • Create survey runtime object

CLEAR:  o_survey_runtime.

CREATE OBJECT o_survey_runtime

  EXPORTING

    i_runtime_mode   = 'INBOUND'

    i_application_id = 'CRM_SURVEY_SERVICE'

    i_survey_id      = 'Z_GOODWILL_SRVHISTORY'

    i_survey_version = '0000000005' "your survey version

    i_language       = 'E'

    i_media_type     = '01'

    i_valueversion   = '0000000001'

    i_no_value_save  = ''.

 

o_survey_runtime->get_values( IMPORTING

er_survey_values = o_surveyvalues ).

 

IF o_survey_runtime->gv_valueguid IS INITIAL.

  CALL FUNCTION 'GUID_CREATE'

   IMPORTING

  •       EV_GUID_16       =

  •       EV_GUID_22       =

     ev_guid_32       = survey_value_guid

            .

  o_survey_runtime->gv_valueguid = survey_value_guid.

ENDIF.

 

IF o_survey_runtime->gv_valueversion IS INITIAL.

  o_survey_runtime->gv_valueversion = o_survey_runtime->gv_valueversion + 1.

ENDIF.

CALL METHOD o_surveyvalues->values_get_all

  IMPORTING

    et_all_values     = t_all_values.

 

CALL METHOD o_surveyvalues->values_delete

  EXPORTING

    i_question_id = 'q1'

    i_answer_id   = 'a1'

    it_values     = it_values.

 

value = 'Sample survey value / answer'.

APPEND value TO it_values.

CALL METHOD o_surveyvalues->values_set

  EXPORTING

    i_question_id = 'q1'

    i_answer_id   = 'a1'

    it_values     = it_values.

 

CALL FUNCTION 'CRM_INTLAY_SET_HEADER_GUID'

  EXPORTING

    iv_header_guid = '46237A4EBD780B64E10000000A8D6829'.

.

wa_survey_param-name = 'SurveyId'.

wa_survey_param-value = 'Z_GOODWILL_SRVHISTORY'.

APPEND wa_survey_param TO it_survey_param.

wa_survey_param-name = 'SchemaVersion'.

wa_survey_param-value = '1'.

APPEND wa_survey_param TO it_survey_param.

wa_survey_param-name = 'q15k'.

wa_survey_param-value = 'id_4b31aa4c7cce2a72e10000000a8d6829'.

APPEND wa_survey_param TO it_survey_param.

wa_survey_param-name = 'onInputProcessing(SUBMIT)'.

wa_survey_param-value = 'Save'.

APPEND wa_survey_param TO it_survey_param.

 

CALL FUNCTION 'CRM_SVY_SERVICE_PAI'

  EXPORTING

    i_application_id    = 'CRM_SURVEY_SERVICE'

    i_survey_id         = 'Z_GOODWILL_SRVHISTORY'

    i_survey_version    = '0000000001' "your survey version

    i_language          = 'E'

    i_valueguid         = o_survey_runtime->gv_valueguid

    i_valueversion      = o_survey_runtime->gv_valueversion

    ir_survey_values    = o_surveyvalues

    it_survey_params    = it_survey_param

  IMPORTING

    et_survey_params    = et_survey_param

  CHANGING

    cs_evaluation_infos = cs_evaluation_infos.

s_objects_to_save = '46237A4EBD780B64E10000000A8D6829'.

APPEND s_objects_to_save TO t_objects_to_save.

 

IF t_objects_to_save IS NOT INITIAL.

  CLEAR: t_saved_objects.

  • Save lead

  CALL FUNCTION 'CRM_ORDER_SAVE'

    EXPORTING

      it_objects_to_save = t_objects_to_save

    IMPORTING

      et_saved_objects   = t_saved_objects

    EXCEPTIONS

      document_not_saved = 1

      OTHERS             = 2.

  IF sy-subrc NE  0.

    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

 

 

  ENDIF.

CALL FUNCTION 'CRM_SURVEY_DATA_GET'

  EXPORTING

    iv_object_kind        = 'A'

    iv_object_guid        = '46237A4EBD780B64E10000000A8D6829'

  IMPORTING

    ev_object_guid_header = guid_h

    ev_object_guid_item   = guid_i

    ev_process_type       = process_type

    ev_item_type          = item_type

    ev_object_type        = object_type

    ev_process_mode       = process_mode

    et_survey_ui          = it_survey_ui

  EXCEPTIONS

    error_occurred        = 1

    OTHERS                = 2.

IF sy-subrc  = 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  •         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

 

  • Create survey runtime object

CLEAR:  o_survey_runtime.

CREATE OBJECT o_survey_runtime

  EXPORTING

    i_runtime_mode   = 'INBOUND'

    i_application_id = 'CRM_SURVEY_SERVICE'

    i_survey_id      = 'Z_GOODWILL_SRVHISTORY'

    i_survey_version = '0000000005' "your survey version

    i_language       = 'E'

    i_media_type     = '01'

    i_valueversion   = '0000000001'

    i_no_value_save  = ''.

 

o_survey_runtime->get_values( IMPORTING

er_survey_values = o_surveyvalues ).

 

IF o_survey_runtime->gv_valueguid IS INITIAL.

  CALL FUNCTION 'GUID_CREATE'

   IMPORTING

  •       EV_GUID_16       =

  •       EV_GUID_22       =

     ev_guid_32       = survey_value_guid

            .

  o_survey_runtime->gv_valueguid = survey_value_guid.

ENDIF.

 

IF o_survey_runtime->gv_valueversion IS INITIAL.

  o_survey_runtime->gv_valueversion = o_survey_runtime->gv_valueversion + 1.

ENDIF.

CALL METHOD o_surveyvalues->values_get_all

  IMPORTING

    et_all_values     = t_all_values.

 

CALL METHOD o_surveyvalues->values_delete

  EXPORTING

    i_question_id = 'q1'

    i_answer_id   = 'a1'

    it_values     = it_values.

 

value = 'Sample survey value / answer'.

APPEND value TO it_values.

CALL METHOD o_surveyvalues->values_set

  EXPORTING

    i_question_id = 'q1'

    i_answer_id   = 'a1'

    it_values     = it_values.

 

CALL FUNCTION 'CRM_INTLAY_SET_HEADER_GUID'

  EXPORTING

    iv_header_guid = '46237A4EBD780B64E10000000A8D6829'.

.

wa_survey_param-name = 'SurveyId'.

wa_survey_param-value = 'Z_GOODWILL_SRVHISTORY'.

APPEND wa_survey_param TO it_survey_param.

wa_survey_param-name = 'SchemaVersion'.

wa_survey_param-value = '1'.

APPEND wa_survey_param TO it_survey_param.

wa_survey_param-name = 'q15k'.

wa_survey_param-value = 'id_4b31aa4c7cce2a72e10000000a8d6829'.

APPEND wa_survey_param TO it_survey_param.

wa_survey_param-name = 'onInputProcessing(SUBMIT)'.

wa_survey_param-value = 'Save'.

APPEND wa_survey_param TO it_survey_param.

 

CALL FUNCTION 'CRM_SVY_SERVICE_PAI'

  EXPORTING

    i_application_id    = 'CRM_SURVEY_SERVICE'

    i_survey_id         = 'Z_GOODWILL_SRVHISTORY'

    i_survey_version    = '0000000001' "your survey version

    i_language          = 'E'

    i_valueguid         = o_survey_runtime->gv_valueguid

    i_valueversion      = o_survey_runtime->gv_valueversion

    ir_survey_values    = o_surveyvalues

    it_survey_params    = it_survey_param

  IMPORTING

    et_survey_params    = et_survey_param

  CHANGING

    cs_evaluation_infos = cs_evaluation_infos.

s_objects_to_save = '46237A4EBD780B64E10000000A8D6829'.

APPEND s_objects_to_save TO t_objects_to_save.

 

IF t_objects_to_save IS NOT INITIAL.

  CLEAR: t_saved_objects.

  • Save lead

  CALL FUNCTION 'CRM_ORDER_SAVE'

    EXPORTING

      it_objects_to_save = t_objects_to_save

    IMPORTING

      et_saved_objects   = t_saved_objects

    EXCEPTIONS

      document_not_saved = 1

      OTHERS             = 2.

  IF sy-subrc NE  0.

    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

 

 

  ENDIF.

  READ TABLE t_saved_objects INTO s_saved_objects INDEX 1.

  WRITE: / 'ID:' , s_saved_objects-object_id.

*READ TABLE t_saved_objects INTO s_saved_objects INDEX 1.

*lead_id = s_saved_objects-object_id.

*activity_id = s_saved_objects-object_id.

 

    • Commit work

  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

ENDIF.

    • Commit work

  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

ENDIF.

New field in CRM getting refreshed every time

$
0
0

Hi All,

 

I got a requirement to add new field in CRMCMP_CCS_EML component..in view Mailbody...when I looked at the component it does not have any context nodes..all the fields are added using BSP code..So I thought of doing same for my New field&Button ..

 

I have placed below BSP code in MailBody.htm page..Now my new field is coming with F4 help and button is also coming and it's triggering the event when I clicked on the button..every thing works fine..

 

 

I added my new field as shown below..

<thtmlb:inputField id = "UNAME"

                      description = "Forward To  "

                      helpId  = "USER_ADDR"

                      helpOutputFields="UNAME=BNAME;"/>

 

 

 

<thtmlb:button id      = "Go"

                text    = "Go"

                tooltip = "<%= otr(CRM_IC_APPL/check) %>"

                enabled = "X"

                onClick = "ITEMFORWARD" />

 

 

My Issue is it's keep on getting refreshed every time when we enter hit or if you do any thing on the CRM UI screen..Could you please let me know how to resolve this Issue..

 

And How do I read new field value in my class...

 

I appreciate your help on this.

 

 

Thanks,

Sara.

Uploading a PDF File on a CRM WEB UI screen

$
0
0

Hi All,

 

 

  Please help by providing some documents for Uploading a PDF file in an CRM WEB UI Screen .

 

 

 

Thanks and Regars,


Harikrishna M

Enhancing Standard javascrpit

$
0
0

Hi Experts,

I'm having a javacrpit in one of the web ui Component(UICMP_LTX -> PAGES WITH FLOWLOGIC -> LaunchTransactionAdmin.Js). I'm able to enhance views, but not able to enhance java scrpit. Could anyone please suggest me on how to enhance the standard javascrpit.

 

Thanks & Regards,

S.Gangireddy

Search in Notes of Business Partner or Business Transaction

$
0
0

Hi experts,

 

The standard search offers only normal fields for selection (ID, Name, Date etc.), but how about searching in notes.

Is it possible to search for Business Partners or Business Transactions based on the notes?

E.g. Show me all accounts which have the text "Important customer" inside their notes.

 

Is it maybe possible with the TREX Search?

 

Thanks for your help,

 

Wladimir


How to keep content selection on double-click in table cell?

$
0
0

Dear all,

Does anybody know a simple trick (without messing with SAP standard delivered javascript files) to be able to select the content of a cell by double-click in a table? You know: usually on any Web page you can double click on a word to select it and use Ctrl+C to copy the content... I find it far more convenient than passing over the field content with the mouse to select what I need.

 

Unfortunately (at least in SAP CRM7.0 EhP3) this is NOT something you can do in MULTISELECT or SINGLESELECT tables in WebUI (guess that's working for selection mode NONE only), because double-clicking in the cell content will trigger the whole row selection (RowSelectionByLineClick) and will lose the focus that you just set. Kindly see the following video for more details: Youtube - Table cell selection on double click doesn't work

 

I just got the confirmation from SAP support that it is the intended behavior: they disabled the cell content selection on double click to be able to navigate through the table cells with right and left arrows keys. I still don't know what you can do once you've navigated to a cell though...

So if anybody already found a simple trick to disable this rowselectionbylineclick function, or to keep the selection, that would be great! (maybe Jean-Yves Guyomarc'h's got a clue?).

Thanks a lot!

Nick.

 

PS: I just got the final word from SAP support: "the queries raised by you are consulting issues and falls outside the scope of Product support. Please refer to SAP Note 83020 for more details". So if anybody knows why this makes sense to navigate between cells without being able to copy their content, please tell me.

Transport Req Display in WEB UI SAP CRM

$
0
0

Hi experts

 

I'm having a problem with transport request in SAP CRM UI

 

After customizing in UI, the transport request necessary to save the change is not displayed (the pop up is shown but without the content).

dump_.png

 

When the empty browser is closed, I have to either close or cancel the action. But i'm getting a dump or bug after that.

 

dump_2.png

 

Do you know how to solve this?

 

Thanks

Making a field dynamically mandatory-Issue in get_p

$
0
0

Hi friends,

 

I am working on a very simple requirement.

 

I have a custom field A (drop down with 4 values).

 

1

2

3

4

 

If I select the value 1 in drop down, the field B(which is again a custom drop down field) should be mandatory. If I select any other values like 2,3 or 4, Field B shouldn't be mandatory. I followed the typical approach of making mandatory via get_p with following coding.

 

WHEN if_bsp_wd_model_setter_getter~fp_input_mandatory.

      IF lv_field_active = '1'.
           rv_value = abap_true.
         ELSE.
           rv_value = abap_false.
       ENDIF.


It's working fine to make it mandatory. However, If I choose some other value again, it's not setting the field to non mandatory in the first step. If I allow one more server round trip by clicking on some other fields or choose any other value in the drop down, it's non mandatory.


Eg.


I choose value 1 ->Field B mandatory.

I choose value 2 -> Field B mandatory again(not expected)

I click on some other fields which have server round trip or I choose value 3 ->Field not mandatory.


What is the reason it's not working in the first step?.


I could achieve the functionality via iterator class though, need to know the reason here.


Thanks,

Faisal

Servcie contracts are not opening...

$
0
0


Hi Experts,

 

In service contracts search screen  when I try to open the contract by clicking on hyperlink of Service contract id ,it is not opening only the header text of the contract is displaying and remaining we can see only the previous screen.

 

Even if we click the contract ID from recent items same thing happens.

 

SC_ISSUE.JPG

SC_ISSUE1.JPG

 

I have gone through configurations , and ran the report bsp*delete*personalization*  on BT112H_sc component but no use.

Even checked the log through tcode - SAAB with the available Checkpoint groups still no logs found.

 

Can you please help me in solving this issue?

 

Thanks in-advance for your timely help.

 

Thanks & Regards,

Vishnu

Currency exchange rates from ERP to CRM

$
0
0

Dear Experts!

 

We have currency exchange rates entered daily in ERP system. We have a need to have it in CRM system. Are there any standard ways (customizing, background jobs) for doing it?

 

Kind Regards,

Alexander Smirnyagin

Delete all entities of a collection in one statement

$
0
0

Hi All,

 

I have created a web service to create/Update product.

 

Product - Root entity

Features - Child entity ( 0..n)

 

In this I have  to delete all child entities of relation Features and create new entities.

 

lv_feat =  lv_product->get_related_entities ( relation_name = Features ).

               while lv_feat is bound.

                         lv_feat->delete( ).

                         lv_feat = lv_features->get_next( ).

               endwhile.

               lv_bol_core->modify( ).

 

 

loop it_feat into wa_feat.

    lv_product->create_related_entity( relation_name = Features ).

endloop.

 

 

There are more than 200 entities for deletion. And more than 300 entries for creation. This is taking lot of time( more than 10 sec ). How can I improve its performance?

Is there a way to delete all entities in one method call? I am aware of method CLEAR. I think I can't use this in web service. When I used CLEAR method, after executing the LOOP statement I could see both previous and newly created entries in the relation.

 

 

Please provide some suggestions.

 

 

Thanks,

Pallavi

Business Partner Geocode Maintenance via FM/BAPI

$
0
0

We maintain our stores as business partners. They must have a very precise geo-location (longitude and latitude) for web purposes. E.g. it's not enough to point on a market place address. We need to point on a specific place within the marketplace. Therefore we have developed a java tool for fine adjustment of the geo-location.

 

We can read the geo-location by using function module BUA_GEOLOC_GET_GEODATA with the business partner guid and address guid as export parameters. But we cannot maintain the fine adjusted geo-location with function module BUA_GEOLOC_CHANGE_FROM_ADDRESS. And we cannot use function module GEO_UPDATE_GEOLOC, because we cannot find any functions, bapis or similar to return the key of table GEOOBJR.

 

Please tell me the best practice to read and update geo-locations in SAP ERP from a web UI.


TPM deduction management BADI

$
0
0

Hi,

I 'm trying to search for BADI for status change event in TPM deduction management.

For example, there is TPM deduction and user set status to 'settled', it goes to ECC case management

and change the reason code which is the event I defined there.

Is there relative BADI for me to do that? or could you instruct me how I can achieve this?

Thanks.

Error: Service process cannot be confirmed due to its status

$
0
0

Hi Experts,

 

we want to create a Service Notification (BUS2000117) as a follow-up document of a service order (BUS2000116). The problem is that we receive the following error:

 

Service process cannot be confirmed due to its status

*Diagnosis*
You cannot enter a confirmation for the service process due to its status.

*System Response*
To enable you to enter a confirmation for a service process, it must be released and may not yet have the status Closed .

*Procedure*
Check the service process status and if necessary, change it.

How can i shut off the control of the status as we need to create service confirmation of service orders which are still in process. Is there any customizing?

 

Best Regards

 

Oliver

Custom field in Service Request not getting updated back to SAP Data Base

$
0
0

Hi All,

 

   I am new to CRM and have done couple of enhancements. Now I am struck up with one of the Web UI enhancement. Using AET our functional consultant has created a check-box field in Service Request screen. The ZZ* field is there in the CRMD_SERVICE_H table as well.

 

   Now this new field is found in the Component -> SRQM_INCIDENT_H, View ->IncidentHeaderEF under the context node BTADMINH. The new field is found as EXT.ZZ* field. I have implemented Setter & Getter methods as well.

 

   The requirement is that this field should be Checked (its a check-box) by default based on some condition which I implemented in GET_ZZ* method which is working fine. But the value ('X') is not getting replicated back to the table when the Service Request is saved from WebUI.

 

    When I checked the SET_ZZ* method, its the same standard code as below. When I debug it, its getting the exception cx_crm_cic_parameter_error at the statement "dref = current->get_property( 'ZZFLD000006' ). "#EC NOTEXT" and since the dref is not bound, exiting out of the method.


    Before the methods are implemented, the value used to be updated back to SAP Data base. I checked on different posts in sdn but not sure how to fix it.

 

Any help on this is very much appreciated.

 

Thanks & Regards,

Raja Sekhar K

 

method SET_ZZFLD000006.
     DATA:
       current TYPE REF TO if_bol_bo_property_access,
       dref    TYPE REF TO data,
       copy    TYPE REF TO data.

     FIELD-SYMBOLS:
       <nval> TYPE ANY,
       <oval> TYPE ANY.

*   get current entity
     if iterator is bound.
       current = iterator->get_current( ).
     else.
       current = collection_wrapper->get_current( ).
     endif.

*   get old value and dataref to appropriate type

   TRY.

     TRY.
         dref = current->get_property( 'ZZFLD000006' ). "#EC NOTEXT
       CATCH cx_crm_cic_parameter_error.
     ENDTRY.

     CATCH cx_sy_ref_is_initial cx_sy_move_cast_error
           cx_crm_genil_model_error.
       RETURN.
   ENDTRY.


*   assure that attribue exists
     CHECK dref IS BOUND.

*   set <oval> to old value
     ASSIGN dref->* TO <oval>.
*   create a copy for new value
     CREATE DATA copy LIKE <oval>.
*   set <nval> to new value
     ASSIGN copy->* TO <nval>.

*   fill new value using the right conversion
     TRY.
*        TRY.
         CALL METHOD if_bsp_model_util~convert_from_string
           EXPORTING
             data_ref       = copy
             value          = value
             attribute_path = attribute_path.
*        CATCH cx_bsp_conv_illegal_ref.
*          FIELD-SYMBOLS: <l_data> type DATA.
*          assign copy->* to <l_data>.
*         please implement here some BO specific handler coding
*         conversion of currency/quantity field failed caused by missing
*         unit relation
*         Coding sample:
*         provide currency for currency fields or decimals for quantity (select from T006).
*          cl_bsp_utility=>instantiate_simple_data(
*                             value = value
*                             reference = c_currency
*                             num_decimals = decimals
*                             use_bsp_exceptions = abap_true
*                             data = <l_data> ).
*      ENDTRY.
       CATCH cx_sy_conversion_error.
         RAISE EXCEPTION TYPE cx_bsp_conv_failed
           EXPORTING
             name = 'ZZFLD000006'."#EC NOTEXT
     ENDTRY.

*   only set new value if value has changed
     IF <nval> <> <oval>.
       current->set_property(
                       iv_attr_name = 'ZZFLD000006' "#EC NOTEXT
                       iv_value     = <nval> ).
     ENDIF.
endmethod.

Reverse Tax Code

$
0
0

In CRM, we generate an intercompany transaction requiring an automated creation of an accounts payable transaction.  We are creating transactions using standard CRM functionality, generating a financial transaction (only) within
ECC. The desired tax result on a particular transaction is a Reverse Charge of VAT.

    

However, during the transaction, the reverse charge accounting is not applied to the transaction, nor does the functionality appear
to be available in CRM to accommodate two separate account keys for a single tax code, as is required for reverse charge taxation.

 

Although no system error is generated and the appropriate tax code is assigned to the transaction, only one line of tax is
applied to the transaction.

 

For a reverse charge, we expect two lines of taxation totaling to a zero tax total (although each line will post to separate
accounts).

 

1.png

 

 

In ECC ftxp, a reverse tax input code ‘T2’ is created using ESE and ESA account keys to handle the reverse charge accounting.  Accounting is also maintained in ftxp:

        1.png

 

 

 

 

In CRM, AR Tax Codes are mapped to tax code T2 (and other appropriate tax codes) via ‘Map Tax Codes for Intercompany Payables).

 

1.png

 

 

We attempted to maintain ESE and ESA under Assign Tax Transaction Key to see if this fixed the issue. But it has not.

 

 

1.png

 

After looking into this i got a badi that i can implement : bea_crmb_icv_if->map_tax_code

 

Please if anyone can help me with this

 

Thanks in advance

CHARM CRM UI SICF Session maximize button missing ?

$
0
0

Hi All,


Can anyone tel me how to customize or enable sessions window to big in CHARM CRM WEB UI. When I try to select the any project or any values from that f4 option, it opens new session window but it doesn't contain the maximize button. I have attached the screenshot FYR. Please can anybody assist on this.


Regards,

Gopinath CB

Viewing all 4552 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>