Quantcast
Channel: SCN: Message List - SAP Master Data Governance
Viewing all 5383 articles
Browse latest View live

Re: MDG C Enhance Address UI with new search criteria

$
0
0

Hi Ankur,

 

The address search is based on the DB mode. Go to MDGIMG --> General Settings --> Data Quality and Search --> Search and Duplicate Check --> Define Search Applications.

 

Here you have the search model DB which uses the search class CL_USMD_SEARCH_DATA_DB.

One level below the search appl. you have the searh help allocation to the search class. Here you will find that the included search help name is MC_BP_ADDRESS which has the description "Address Data" which matches with the text in the BP search application (as in your picture).

 

That is the configuration part.

 

The logic is implemented in the handler class. For address search it is in handler class CL_MDG_BS_BP_HANDLER methods

Execute query:

IF_MDG_BS_BP_ACCESS_HANDLER~EXECUTE_QUERY  and for address data  are in QUERY_BP_HEADER  and QUERY_BP_BY_ADDRESS

 

Define search attr.:

IF_MDG_BS_BP_ACCESS_HANDLER~GET_QUERY_PROPERTIES QUERY_PROP_BP_HEADER and QUERY_PROP_BP_BY_ADDRESS.

 

So if you want to add additional attributes you have two options. Extend/modifiy handler class CL_MDG_BS_BP_HANDLER or create your own handler class with DB search and add it as a new Search application and search help (configuration).

Then you also need to update the Communictor configuration and add the new search UIBB.

 

Hope this helps to get you in the right direction.

Cheers,

Henk.


Re: Flex entity 1:1 cardinality with BP_Header is read only

Re: Change Request error

$
0
0

Hi

 

Which version you are using? Is any BRF+ rule is defined in your MDG system?

Re: MDG to ERP Using the Same Client

Re: Change Request error

$
0
0

Hi Sanjay,

 

This is MDG 7.0. Yes, BRF+ is implemented. Steps:

1) NWBC-> processing of multiple materials->Create change request.

2) In CR step, when I enter CR description and clicking "next", it showing that country field is mandatory. However, there is no country field on my UI screen.

Re: How to hide attributes for Mass change/File Upload in NWBC UI screen

$
0
0

Hi All,

 

Please provide your help on issue as how to hide attributes from UI screen for Mass Change/File upload for MDG-M.

 

Your help is very much appreciated. Thank you.

 

Best Regards

Bhupal

Error Creating Customer

$
0
0

Hi,

 

We are trying to create a Customer from BP after performing following CVI steps

  • Activate PPO Requests for Platform Objects in the Dialog
  • Activate Creation of Postprocessing Orders
  • Activate Synchronization Options
  • Set BP Role Category for Direction BP to Customer
  • Define BP Role for Direction Customer to BP
  • Define Number Assignment for Direction BP to Customer
  • Define Number Assignment for Direction Customer to BP

But we get the following dump in ST22 when we create a Customer from the ERP like Customer UI and neither the BP nor Customer gets created (There is no error in Workflow)

CVI error.PNG

The error is in the highlighted line in below code

----------------------------------------------------------------------------------------------------

method on_deliver_customer_data.

 

   data:

     lt_kna1    type table of kna1,

     lv_count   type i.

 

   field-symbols:

     <kna1>     like line of lt_kna1,

     <comp>     type bapiupdate,

     <customer> type cmds_ei_extern.

 

   check i_current_partner = get_partner( ).

   assign i_current_customer_data->* to <customer>.

 

   get_data_new( importing e_data_new = lt_kna1[] ).

   check lt_kna1[] is not initial.

   read table lt_kna1 assigning <kna1> index 1.

 

   if <kna1>-ktokd is initial.

     <kna1>-ktokd = <customer>-central_data-central-data-ktokd.

   endif.

   move-corresponding <kna1> to <customer>-central_data-central-data.

   do.

     lv_count = lv_count + 1.

    assign component lv_count of structure <customer>-central_data-central-datax to <comp>.

     if sy-subrc <> 0.

       exit.

     endif.

     <comp> = true.

   enddo.

 

   super->on_deliver_customer_data(

     i_current_partner       = i_current_partner

     i_current_customer_data = i_current_customer_data

   ).

 

endmethod.

--------------------------------------------------------------------------------------------

Can anyone please let us know if we're missing any steps in CVI or how to resolve the above error?

 

Thanks,

Sagar Dixit

Re: MDG to ERP Using the Same Client

$
0
0

Hi,

 

The reason for this could be missing business system configuration in SLD. MDG framework checks for the configuration with FM LCR_GET_OWN_BUSINESS_SYSTEM . If this FM returns error , MDG replciation will fail.

 

 

Execute transaction SLDCHECK. You should see something like this if everything is fine.

 

If this is not green , check with your basis team. Alternatively , you could maintain entries in table

lcrt_clntcache

 

Regards,

Raghu


Re: Error Creating Customer

$
0
0

Hi Sagar,

 

The datax component in the assign is of type structure CMDS_EI_VMD_CENTRAL_DATA_XFLAG.

It looks to me there is an append to this structure which has fields which are not of type BAPIUPDATE (or char 1).

Because there is a type conflict in the assign. And <comp> is of type XFELD (char 1).

 

Cheers,

Henk.

Re: MDG to ERP Using the Same Client

$
0
0

Activate the Replication model by checking the check box because not able to determine the business system(logical system).


Bala



Re: Finance Master data

$
0
0

Hi Melane,

 

This guide describes the MDG Finance solution in detail: SAP How-To Guide for MDG-F Overview

 

In a nut shell:

 

What big difference is that in MDG F you can manage FI objects with edition logic. This way you can maintain FI data time dependent. So cost center change to be active now and other change for next year (together with all otter changes).

 

Besides that you have the governance process where you steer who maintain and approves maintained data.

 

Cheers,

Henk.

Re: Master data governance strategies before using MDG Tool

$
0
0

Hello Praveen

 

Email!!!!!!!!! If you observe, most of the companies use email as a tool for approval. Details through excel or word file or plain mail used for approval.

 

Kiran

CR issue...

$
0
0

Hi Experts,

 

   As I build a process for Material create, where I successfully add workflow template with CR type, create rule based workflow with several steps in decision tables and activated, add UI application configuration details along with various steps, also I do have authorization of change request.

 

    But, while I am trying to click create material from NWBC, the required CR opens for a while, then it disappeared.

 

Can anyone help me on this issue?

UI Component for Search Help Restriction on Custom field of MM Data Model

$
0
0

Hi Techies,

 

Want to restrict search help on custom field of material creation in Basic data of  MM data model so here please can you help me the exact name of UI component.

Re: UI Component for Search Help Restriction on Custom field of MM Data Model

$
0
0

This method has already been backdated, now is enhancement inside feeder class.


Customer User determination not working with GetAgent

$
0
0

Hi,

We are trying to do user determination for MDG customer, For that we are trying to use Getagent but it is not working for us. We have made the configuration but somehow Workflow (WS54300004) is not supporting because when we are going for decision table, it is not having CR step number instead simple Workflow steps due to which decision determination would fail.

Please let me know how can GetAgent can be worked.

Re: MDG to ERP Using the Same Client

$
0
0

Hi,

 

The funtion module that you used in BADI doesn't work if SLD is configured. Infact , if you look at my previous reply , the framework uses the same FM .

 

Just pass sy-sysid to ev_local_system and check.

 

Regards,

Raghu

Re: Customer User determination not working with GetAgent

$
0
0

Hi,

 

I don't get your issue. If you use WS54300004 the Workflow steps are preset in the binding of the agent rule. Values 1 Approval, 4 Revision After Rejection, 5, 6 and 7 are used.

 

The CR it self does not have a step number.

 

In BRF+ you use Appication MDG_BS_ECC_CUSTOMER_WF_CUSTM and Decision Table: GET_AGENT.

 

So which step number are you using, when it fails, and how did you fill the BRF+ table.

 

I suppose you are using the standard USMD_WF_AGENT enhancement implementation MDG_BS_CUST_WF_AGENT_ERP.

 

Cheers,

Henk.

Re: Initial upload of Materials with accounting view

$
0
0

Hi Ingo

 

I tried also in another system for MDG 7.0 SP04. Here also I am able to create CR for staging area with MAT0B but it also created without accounting view. Idoc-XML file contains segment MBEW

After opening CR there is one warning message

 

Change Request locked by user &1, limited date maintenance only! from message class USMD_CRUI with number 001.

Also I observed that in UIBB for Valuation Area Plant there is no data available - create/assign plant assignment

 

Can you suggest regarding this?

Re: MDG C Enhance Address UI with new search criteria

$
0
0

Thanks Henk for the quick response ..

 

Can you share any document ( having steps to do ) regarding the same, would be really helpful.

help will be highly appreciable

 

Thanks

Ankur 

Viewing all 5383 articles
Browse latest View live


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