Quantcast
Channel: SCN : All Content - Supplier Relationship Management (SAP SRM)
Viewing all 2866 articles
Browse latest View live

file attachements in shopping cart/PO

$
0
0

Hi,

 

My client is trying to attach a pdf file in shopping cart, the file is 414 KB, I did tried from my end i could able to attach pdf file.please  anyone can help me out what are the circumstances that affecting not attach the files for my client.I am looking forward for reply.

 

Regards


SRM-SUS 7.02 role issue /SAPSRM/SUS_ORD_COLL_USER_EHP1

$
0
0

Hello experts,

 

I am involved in an SRM 5.0 to SRM 7.02 upgrade project, where the client has SRM-SUS in the landscape.

We are using the Portal Independent Navigation Frame.

 

After copying standard role /SAPSRM/SUS_ORD_COLL_USER_EHP1 to a "Z" role, and assigning this role to a vendor user, user was able to login but encountered 2 issues:

 

1. An SRM 5-type left menu appeared

2. In the "content area" section, a menu appears at the top (with text: Supplier Self-Services, with links: Home, Find, Help, FAQ, Log off). I've attached a screenshot so you can have a better idea of what I'm talking about.

 

 

Issue #1 was resolved by going into PFCG transaction -> Menu -> Menu Options and activating checkbox "Hide Menu from SAP Easy Access"

However, I have not been able to resolve issue #2.

 

Any help is appreciated.

 

Regards,
Gilberto Gallardo

UI Add-on extension with custom BSP

How to get the potential vendor status in SRM 7.02 from webdynpro ABAP

$
0
0

Dear SRM Expert,

 

Could you please suggest how can we get the vendor status(like NEW,ACCEPTED,REJECTED,ON HOLD Etc.) from Supp Registration WD ABAP application.

 

Thanks

Shuvrajyoti

Plan Driven Procurement

$
0
0

Hi Sap Gurus,

 

Can someone list us what are the required settings from XI/PI side for Plan driven procurement scenario in SRM 7.01??

Plan Driven Procurement XI settings

$
0
0

Hi Sap Gurus,

 

Can someone list us what are the required settings from XI/PI side for Plan driven procurement scenario in SRM 7.01??

 

 

 

 

 

Thanks in advance

Set same Number for SRM and ECC Central conract in SRM7.0

$
0
0

Hi Experts,

 

In our project we are creating Contracts in SRM system and the same will be replicated to ECC through PI.

While replicating contracts from SRM to ECC the number will be different.

 

Our requirement is that, contracts should have same number in both ECC and SRM.

 

 

Thanks

Manimaran K

How to disable multiple logins by the same SRM user in SRM EP?

$
0
0

Dear Experts,

There is need in our SRM 7.02 system to disallow the multiple logins for a single user in SRM.

How to go about doing this?

Rgds


Disable Product Category based search UI addon

$
0
0

We're currently implementing the UI addon for SRM.

 

On the home search screen we have the drop down menu for the product categories available. We now want to deactivate it. We've set the customizing setting to "Disable Product Category based search".

 

 

 

When performing this setting the drop down menu is still visible on the home search screen.

 

We cleared the server cache in smicm and the also the browser cache. Do we need to perform an additional action to hide the field on the home search screen. Any pointers are welcome.

SRM User Interface Addon - MDM catalog extraction

$
0
0

Hello,

I have a project for extend our SRM 7 to SRM User Interface Addon SP06.

Until now my troubles are with MDM data extractions, so I will be great full for suitable advise.

1) In our MDM repository we have more than a 20 catalogs

2) In SRM I had config the web services for 2 MDM catalogs, also they are set for OCI extraction.

3) A dummy MDM catalog was set and configured in MDMAPIC. Linked to the MDM repository with successful RFC connection.

4) When I execute /SRMNXP/CAT01 for the dummy catalog, all the content from the repository is downloaded (including data from catalogs not defined as web services).

5) The data was indexed and applicable in the UI search.

6)  I had assigned the 2 MDM catalogs in PPOMA_BBP, but despite of this, in UI search, I had the results for all data from the repository, not just for the catalogs assigned in the attributes.

I suppose, something is missing in my catalog data extraction process.

Thank you in advance for any proposals.

BR Petar Antov

Customize Preferred Supplier search help in SRM UI Addon

$
0
0

I am facing an issue.

 

I need to hide a UI element ( Logical system ) and make Purchase Org as read only in the search help attached to Preferred supplier in " CAN'T FIND" screen in SRM UI ADDON.

 

How to do it? Can we do it using SPRO settings or some with the help of some BADI ?

 

Kindly help.

 

Regards,

Ajay Kumar

OTR-Label for Custom fields SRM UI Add-on

$
0
0

Hi,

last Week I started with SAPUI5 and JavaScript within my SAP SRM System. I never worked with JavaScript and so on before.

I followed the Cookbook to add Custom fields with my search result list.

 

Extensibility in SAP SRM User Interface Addon 1.0

 

The Cookbook was hiding one of the most essential parts , adding the custom fields to trex model, to keep this working. But I solved it by myself.

 

Now I wanted to add my Custom fields in other view, like Produkt Details to.

 

Therefore I created a Custom JS and put the path to the customizing.

 

 

 

 

 

function modify_dynamic()
{  if (sap.ui.getCore().byId('zcustomlayout') != undefined)
 {
 sap.ui.getCore().byId('zcustomlayout').destroy();
 };  // "get DOM Element by classid"  var oElement = document.getElementsByClassName("listProdDetails sapUiVlt sapuiVlt")[0];  if (oElement != undefined)
 {
 // "get oData model"
 var srview = sap.ui.getCore().byId('mini_search_results');
 var data = srview.getController().getSelectedModel();
 // "create customer fields"
 oRsaetze = new sap.ui.commons.TextView( { text: "{/RSAETZE}"});
 zcontent2 = new sap.ui.commons.layout.HorizontalLayout("zcustomlayout", { content : [
 new sap.ui.commons.Label({ text : Appcc.getText("RSAETZE") + ":" }),
 new sap.ui.commons.TextView().setText(data.RSAETZE) ] });
 zcontent2.addStyleClass("listProdDetails");
 var zid = oElement.attributes.valueOf("id")[0].nodeValue;
 var zcontent = sap.ui.getCore().byId(zid);    //zcontent.addContent(zcontent2);
 zcontent.insertContent(zcontent2, 9);  }

As you see within my Screenshot and Coding the Custom Field "RSAETZE" Appears and the Data is filled. Thats great but one Problem exists!

 

 

I found in severals SAP JS Coding a solution to add Label text from OTR depending on User language.

 

Coding is:

Appcc.getText("RSAETZE")

I found out, that this is an App Controller. Within Browser I found out there is an Object containing all these Texts translation Called Appcc textManager

 

 

Theare are several text stored in the logon language of the current user.

 

Long story short:

My Question is, how can I add texts to this textManager to call them within my Coding?

 

Is there another solution to get texts from OTR or from somewhere else depending on user logon language?

 

 

Hope someone can tell.

Thank you very much

 

Regards

Rico

SRM 7.0 POWL Button and several Links are redirecting to Portal Home Page.

$
0
0

Hi Experts,

              

We have upgraded from SRM 5.0 to SRM 7.0.

 

Now we are facing a very strange issue, several links redirecting to Portal Home Page .

 

Below are the list of Action/links that redirecting to *Home Page*:

-


 

1. Employee Self Service->POWL button Dispaly/Edit and Shopping Cart Number link.

 

2.Employee Self Service -> Advance Search->Search Button at the TOP.

 

3. Manager->Overview->WorkOverview-> Work items link and Resubmit/Forward button in UWL screen

 

4. Manager-> Navigation->All Links under navigation.

 

 

There are many more...

 

Please help me to solve this issue..

 

 

Regards,

Sambran Chakraborty

How to get the selected query name in runtime in SRM POWL query?

$
0
0

Dear all,

 

 

I have three query ID's ( SAPSRM_AL_CONTRACT_02_01, SAPSRM_AL_CONTRACT_02_02, SAPSRM_AL_CONTRACT_02_03 ) under POWL type ID (SAPSRM_FEEDER_E_CTR). I have implemented some logic in the feeder class but this logic should work only for query ID SAPSRM_AL_CONTRACT_02_03. The problem is I am not able to get the selected query name in the runtime. System shows only POWL type and application ID. Please help to achieve this.

query.PNG

 

 

Regards,

Muthukannan.M

Function Module to get permissions details against RFx

$
0
0

Hi Team,

 

I have requirement to get the permission details against the RFx in SRM, can any one guide me how to get this.

 

Please let me know if any table relationship also.

 

Thanks & Regards,

Srinivasan R.


Master Data Replication in SAP SRM 7.01

$
0
0

Hi Sap Gurus,

 

In SRM 5.0 master data comes into SRM from ECC in BDoc format and GR and IV will be transferred to ECC with the help of ALE/IDOC's in IDOC format.

 

Is this same in SRM 7.01??

 

I read in one of the threads that there is no change or background job required to get master data from ECC...it will be same as SRM 5.0

 

Please give us your suggestions/idea on this...

 

 

Thanks in advance

SRM UI5 Workflow

$
0
0

Hi,

 

We are currently working on SRM UI5 addon. We have to implement process controlled workflow in the same.

Has anybody any document/details etc on the same.

 

We have a requirement such that for one region we would be having UI5 environment, so the workflows for that region should also be in the UI5 environment, while rest of the regions would continue on the older WebDynpro based environment.

 

As per my understanding we will need to have two set of decision tasks, one set of tasks linked to the webdypro components for the older environment and the other set of decision tasks linked to the UI5 components for the new environment. (i.e. SWFVISU config)

 

Please let me know if anybody has worked on SRM UI5 environment and the workflow in the same.

 

Thanks,

Sameer Tapre.

One SRM and 2 ECC systems- Query

$
0
0

Dear All,

 

We have a requirement to connect 1 SRM with 2 ECC systems. I have found some posting here that discuss this. But have some queries.

 

1. Can The vendors be replicated  under 2 root nodes so that we can provide different values for attributes like the Vendor sys.( vendor X1,X2 ... etc belong to ECC1 and Y1, Y2 ..... etc belong to ECC2 ). Also  do the attributes in the Vendor Structure really used in SRM?

 

2. The Buyer org structure can have 2 sub Org Units that can point to the 2 ECCs and hence it seems there are not much issues here i assume.

 

3. The purchase orders can flow to the respective ECCs by making the product categories unique ( product categories are disjoint in ecc1 and ecc2 ).

 

4. Pulling product categories and material master from the 2 ECC systems into 1 SRM - Hope this also should be fine.

 

Except point number 1, it seems SRM can be easily connected with 2 ECCs technically and functionally is my understanding. Please let me know if this is okay. Also, please provide your views to address # 1.

 

Thanks and Regards

velu

Error loading current rule - Document Builder Configuration

$
0
0

Hello,

 

I did some configuration in document builder in our development portal. I created 7 new elements by copying some of our already existing elements, but re-named them. I can view and edit the rules to these elements in our development portal. I transported the configuration I did up to our testing portal. In our testing portal, I cannot view the rules to the new elements I created. When I try and view the rule, I get the error message "Error loading current rule" Message no. /IPRO/DBMC000. I checked the variables for both portals and they are the same. I can view all of the other rules in the testing portal. It is only the new rules I created that I get this error. What could be causing this?

 

Thanks.

Remove "convert to auction" button - SRM 7.02

$
0
0

Hello Experts,

 

After a RFx (Bid) is completed, SRM 7.02 shows button "convert to auction" (among others).

Client is using a modified version of standard Operational Purchaser role.

 

I've removed all authorization objects related to auctions in the role (as far as I can tell), but the button is still visible.

 

Can this button be removed by means of authorization objects, or should it be removed via configuration/development?

Pleas note that this button should be available for other role (s), so it's not a system-wide removal.

 

Your inputs are appreciated. Thanks!

Viewing all 2866 articles
Browse latest View live


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