Sunshine Systems provides software consulting services to SAP E-Sourcing and CLM users, electronics equipment manufacturers, and the transportation industry. Check out our SAP E-Sourcing and CLM blog below to learn more about our E-Sourcing expertise. Visit regularly for updated tips and ideas.
Could the E-Sourcing / CLM Workbench be more useful?
December 12th, 2008Could the E-Sourcing / CLM Workbench be more useful? I have thought about this question a bunch of times, particularly when I login to use an E-Sourcing system and I ignore everything on the workbench page and immediately navigate to the area of interest.
With this in mind, I thought about what some of the key things I would like to see on the workbench page that would ease my use of the system and provide real value to me. Some goals that I established for my workbench page were:
1. The workbench page should load fast. I don’t want it to take long to load, particularly when I login to the system. Usually when I am logging in, I have a specific task in mind and waiting for the workbench is not valuable use of my time.
2. The workbench page should be free of clutter. I don’t want things on the page that are not useful and that I won’t use.
3. The workbench page should simplify my use of the system…show me what I am working on and provide quick navigation to the areas of the system I use the most.
With these goals in mind, I set about creating a workbench page…here is what I came up with:
The workbench page I created consists of five desktop channels:
1. My Quick Links: this channel provides one click navigation to the major module areas (Projects, RFx, Auctions, and CLM). This saves me from having to click on the top navigation bar and select the module access point. I can view documents in the module area or create new ones.
2. My Recent Edits: This channel is setup to show the recent business documents that I edited, with one-click access to those documents. In my experience, sourcing professionals are working with a small set of documents in the system, so this simple one-click access to the document can really speed up navigation of the system.
3. My Bookmarks: One of the features that I really like in E-Sourcing / CLM is the ability to bookmark reports. Unfortunately, I don’t think it gets used enough. Bookmarking reports allows the user to “save” the filter parameters they use with the report and run it with those filters without having to re-enter them every time they run the report. This capability can be pretty useful if you have a report that filters by, say, organizational unit and users typically are only interested in a particular organizational unit. Anyway, after bookmarking reports, they are available on the Analysis (report page). I created a new workbench channel that puts them on the workbench page.
My workbench page also includes two of the standard channels that come with E-Sourcing / CLM:
1. Links: If you have configured web hyperlinks on the Company object, keeping the links channel that is provided with the system is a good idea.
2. Technical Support: This channel is very useful so that users know what to do in case of questions and issues.
What do you think? Would such a workbench page work for you? What else would you like to see on the page? Another idea I had was to create a “favorites” area that would allow me to identify certain business documents (Projects, RFxs, Contracts, etc) as a “favorite” and those favorites would be listed on the workbench page…I like this idea, but have not prototyped it yet. Would this be helpful?
For those that are intested in knowing a little more about how I actually, configured this workbench page, read on…for those that are not, thanks for stopping by.
Each of the three “My…” desktop channels was implemented using the E-Sourcing /CLM query definition tool. The My Quick Links channel is a single column query that uses the URL/Internal Page capability of the query tool. It also used images to create the actual links - this enabled me to create the indented effect and include the icon with the link.
The My Recent Edits channel is a query that looks at the MODIFIED BY field on the business documents and selects only the most recently edited documents.
The My Bookmarks channel queries the bookmarks table to generate the URL to the bookmarked report.
Thanks again for stopping by…I hope you enjoyed this post and see how you can use the E-Sourcing / CLM query tool to create some interesting desktop channels.
Expanding the Capabilities of Numbering Tables
December 8th, 2008A colleague of mine recently posed the question: Is there any way to configure numbering tables to use the Organizational Unit id instead of the Company id? I did some research and found that E-Sourcing does not provide this capability out of the box, but with a little scripting, it can be done.
To review, the E-Sourcing/CLM Numbering Table configuration object allows you to establish a configuration for how various business documents can be uniquely identified. For example, the default configuration for the Project numbering table provided with E-Sourcing/CLM numbers the business documents like: PRO-<sequence_number>-<year>, resulting in numbers like: PRO-00018-2008.
The system does come with some additional configuration options called “tokens” that allow you to configure the generated identifier with a value from certain fields on the business document. For example, the identifier can be generated to include the Company id. Unfortunately, however, the system does not provide for inclusion of the Organizational Unit id.
To provide this capability to the system, I did the following:
1. I put my own special token in the numbering table definition. I included the string value “<%ORG_UNIT%>” in the portion of the numbering table configuration where I wanted the organizational unit id to be inserted.
2. I created a script that replaced any instances of the <%ORG_UNIT%> token above with the id of the associated organizational unit id.
Lets look at this in a bit more detail.
The following image shows the configuration of the numbering table object. Notice that the value of the prefix field includes my special token (<%ORG_UNIT%>). The configuration also calls for a three digit sequence number, followed by the year. If the Organizational Unit has an id of “IT”, the generated project identifier would be: IT-001-2008.
WIth this definition of the numbering table in place, I next added a Script Definition that will process the numbering table configuration when the project is saved. The script definition was setup as a field validation on the CREATED_AT field on the Project module. For those that desire to see actual script coding, it is listed below.
With the numbering table defintion and script in place, I was ready to have the system generate the project identifier using my custom numbering scheme. The following image shows the generated identifier on a test Project.
Although, I have demonstrated this solution in the Project module, it will work anywhere that numbering tables are used.
I hope this was an interesting post for you and I look forward to your comments.
Script Contents
pattern = “<%ORG_UNIT%>”;
// See if the numbering table has the <%ORG_UNIT%> token in it
if (hasValue(doc.getDocumentId()) @and doc.getDocumentId().indexOf(pattern) >= 0)
{
// Make sure the org unit has a value
if (hasValue(doc.getOrganizationalUnitRef()))
{
// Get the org unit external id
busUnitHome = IBeanHomeLocator.lookup(session, doc.getOrganizationalUnitRef());
busUnit = busUnitHome.find(doc.getOrganizationalUnitRef());
// Now update the UNIQUE_DOC_NAME
start = 0;
end = 0;
result = new StringBuffer();
// Replace all instances
while ((end = doc.getDocumentId().indexOf(pattern, start)) >= 0)
{
result.append(doc.getDocumentId().substring(start, end));
result.append(busUnit.getExternalId());
start = end + pattern.length();
}
result.append(doc.getDocumentId().substring(start));
// Actually, set the value
doc.getFieldMetadata(”UNIQUE_DOC_NAME”).set(doc, result.toString());
}
else
{
// Generate an error since we should not have a ORG_UNIT token without the value being set (org unit
// should be required)
throw doc.createApplicationException(null, “error.org_unit_not_set”);
}
}
Using Images in Reports
December 2nd, 2008One of my favorite things to do in E-Sourcing and CLM is to develop reports. I have worked with many customers over the years to develop queries and reports using the proprietary report development environment in E-Sourcing.
A couple years back, SAP added the capability for report developers to include images in the report results. You might have seen this capability at work in some standard reports, such as the Project Status Summary report shown here.
This report nicely shows how color images can be applied to result columns providing visual queues to the end user.
I recently was working on a report for a client and used images in another way: as a button for a drill down report. The original report requirements called for the report to show estimated value totals aggregated by the business unit and to hyperlink those totals to the individual projects that made up the totals. Unfortunately, hyperlinking the totaled values threw the formatting off by left justifying the values and removing the numeric formatting. The next graphic shows that result.
The alternative approach I chose makes the drilldown report available via an image (used like a button) in the report results and allows the estimated value data to be shown correctly as a numeric value.
The setup required for this is really easy. First, you need to create the image that you want to use for your drilldown link. In my case, I chose to use a magnifying glass since that is a common user interface metaphor for getting more details. This image is then loaded into E-Sourcing/CLM in the File Attachment Container area (Setup > System Setup > User Interface > File Attachment Container). Typically, the “path” I provide to such images will be like: /reportimages/<gif file name>
Once the image is loaded, you need to create two (2) localized resources. They are shown in the next graphic:
These localized resources are used to show text and the image in the report. Notice that the first one with the text value does not contain the .image suffix. The second localized resource identifier contains the .image suffix and the value must be the value of the “path” field on the File Attachment Container object previously created.
The last component to change is the query that contains the drilldown. The URL column that links to the drilldown report should have the “Show Image” field set to Image Only; And, the value of the URL column must be the localized resource created above (without the .image suffix). Have a look at the next graphic to see the definition of the URL result column.
I hope you found this interesting and maybe inspired you to try using images in your reports.
In a future post, I will write about another report I wrote using checkbox images that enabled some very interesting update capabilities from a list view.
Download RFx Response Attachments
November 24th, 2008I was recently talking to a user of E-Sourcing and one of the challenges they faced with the tool was to be able to review all of the attachments that were provided as part of an RFx response. In order to view all of the response attachments, the user needs to click on each attachment separately in each RFx response and save it to their desktop.
After thinking about this problem for a little while, it occurred to me that downloading all of the attachments in a zip file ought to be something that could be done fairly easily, so I set off to prototype such a solution.
As it turns out, it is not that difficult to use E-Sourcing’s “script definition” capabilities to create a toolbar action that creates a zip file with all of the attachments on all of the RFx responses.
In the solution I prototyped, the script creates a new attachment with the zip file. This is one approach, but maybe emailing the zip would be a better idea. What do you think?
Lastly, by creating the zip file with a directory structure, the invididual response attachments can easily be seen.
Welcome
November 15th, 2008Welcome to my blog web site which will cover various topics related to SAP E-Sourcing. Each week I will provide an interesting post about SAP E-Sourcing. I hope you will comment on the postings and provide me with your feedback.
With any luck, together we can make this THE informative web site on SAP E-Sourcing (formerly Frictionless SRM).
Thank you and I look forward to hearing from you.
Rob Stevenson, Sunshine Systems, Inc.




Posted by rob









