When is the next Strategy Management (SSM) Technical Overview class?

The next SSM class is February 4-8 in Chicago. To register:
1. Go to http://www50.sap.com/useducation/index.asp
2. In the Course Search Field type in CPM.
3. On the list select  TZCPM1 SAP Strategy Management Technical Overview (Chicago).
Any questions?

The next SSM class is February 4-8 in Chicago. To register:
1. Go to http://www50.sap.com/useducation/index.asp
2. In the Course Search Field type in CPM.
3. On the list select  TZCPM1 SAP Strategy Management Technical Overview (Chicago).
Any questions?

Similar Messages

  • The next level manager is unable to view or access appraisal forms for all

    I am facing an issue where in the next level manager is not able to see the appraisal docs of employees.
    Follwing is the link that we found on SDN related to the same issue-
    Next higher level manager should see the appraisal docs of the employees
    During the PM testing, an issue was discovered with the existing logic of the ‘Default Next Level Manager’ BADI.
    When a manager manually reports to a NL manager’s organization unit, the next level manager is unable to view or access appraisal forms for all the employees who report to the manager.
    For example,
    NL Manager/Cheif: Susan
    Manager/Chief: John
    Employees: Mary and Matt
    If John’s position (manager/chief) has a “A 999 Reports to dotted line” relationship to Susan’s organization unit (NL Manager), then Susan is unable to access, approve or reject the appraisal forms for Mary and Matt (John’s direct reports).
    The relationship type is A 999 – Reports to dotted line
    Type of related object – O (Organizational Unit)
    We need to update the BADI in order for the next level manager to be able to access appraisal forms as described in the example above.
    BADI implementation Name : Z_HRHAP00_DOC_DEF_DO
    Method - IF_EX_HRHAP00_DOC_DEF_DO~DEFAULT_OTHERS
    Now we are facing the following issue-
    After identification of the employees who report to the manager’s organizational unit using the  A 003 – ‘Belongs to” relationship we are not sure how to pass these employees information from BADI to appraisal form, so that the previously identified Next Level Manager will be able to access, accept and reject appraisal forms for these employees.
    For further details please refer the thread. I was not able to understand how this can be achieved.
    Can anyone please mention in brief how I should be able to do this. I am new to this and I would appreciate any help .
    Regards,
    Satish.

    There are no Function Modules to my knowledge. Pls try the transaction S_AHR_61016530 which would display the User's approvers as per hierarchy. This would bring datas from the HR tables. If this helps pls award points.

  • SelectedItem return null when hit the NEXT page or Submit

    Hello All,
    I try to add the paging to the open source Alfresco content management. We need to process a large dataset (e.g. > 50K files) so after we gather a list of data files we display them with the checkbox and each checkbox has default checked status.
    If the value="#{FixItemList.selectedItems} is omitted in the <h:selectManyCheckbox> then the paging is fine when hitting the NEXT page or Submit button. If we set the value in the selectManyCheckbox then it returns null for selectedItems.
    Would please point out what I have done wrong? Appreciate for all yours helps.
    This is the managed bean object.
    public class ToolsContext
         private FixItemList fixItemList;
         private ToolsContext()
              this.fixItemList = new FixItemList();
         public void addFix(Fix fix) {
              if(fix != null) {               
                   fixItemList.addFixItem(new SelectItem(fix, fix.getPath(), fix.getDetails(), false));
                   fixItemList.addFixSelectedItems("" + fix + "");
    public class FixItemList implements Serializable
         private static final long serialVersionUID = 123784764562L;          
         private List<SelectItem> items;
         private List<String> selectedItems;
         private int displayItemPerPage;
         public FixItemList() {
              displayItemPerPage = 100;
              items = new ArrayList<SelectItem>();
              selectedItems = new ArrayList<String>();
         public void setItems(List<SelectItem> items) {
              this.items = items;
         public List<SelectItem> getItems() {
              return this.items;          
         public int getItemsSize() {
              return this.items.size();
         public int getDisplayItemPerPage() {
              return this.displayItemPerPage;
         public void setDisplayItemPerPage(int displayItemPerPage) {
              this.displayItemPerPage = displayItemPerPage;
         public void addFixItem(SelectItem selectItem) {          
              items.add(selectItem);
         public List<String> getSelectedItems() {
              return selectedItems;
         public void setSelectedItems(List<String> selectedItems) {
              this.selectedItems = selectedItems;
         public void addFixSelectedItems(String selectedItem) {          
              selectedItems.add(selectedItem);
    }My faces-config.xml
        <managed-bean>
         <description>
            This bean is to display in the Web Project tool as the pagination. HOPEFULLY SO
         </description>
         <managed-bean-name>FixItemList</managed-bean-name>
         <managed-bean-class>org.alfresco.module.websitetools.util.FixItemList</managed-bean-class>
         <managed-bean-scope>session</managed-bean-scope>
        </managed-bean>The JSP page.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
    <%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
    <%@ taglib uri="/WEB-INF/wcm.tld" prefix="w" %>
    <w:avmList id="files-list" viewMode="details" pageSize="#{FixItemList.displayItemPerPage}" styleClass="recordSet"
    headerStyleClass="recordSetHeader" rowStyleClass="recordSetRow" altRowStyleClass="recordSetRowAlt" width="100%"
    value="#{FixItemList.items}" var="row">
    <%-- checkbox column --%>
    <a:column id="col1" primary="true" width="5" style="padding:2px;text-align:left">
       <h:selectManyCheckbox id="wpt" value="#{FixItemList.selectedItems}">
            <f:selectItem itemLabel="#{row.label}" itemValue="#{row.value}" />
       </h:selectManyCheckbox>
    </a:column>
    <%-- file name column --%>
    <a:column id="col2" primary="true" width="50%" style="padding:2px;text-align:left">
         <h:outputText value="#{row.description}" />
    </a:column>
    <a:dataPager id="pager1" styleClass="pager" />
    </w:avmList>When I hit the NEXT page the #FixItemList.selectedItem return null. We use myface version 1.1.5. And below is the stack error
    SEVERE: Servlet.service() for servlet Faces Servlet threw exception
    java.lang.NullPointerException
         at javax.faces.component._SelectItemsIterator.hasNext(_SelectItemsIterator.java:73)
         at javax.faces.component.UISelectMany.validateValue(UISelectMany.java:268)
         at javax.faces.component.UIInput.validate(UIInput.java:354)
         at javax.faces.component.UISelectMany.validate(UISelectMany.java:297)
         at javax.faces.component.UIInput.processValidators(UIInput.java:184)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIForm.processValidators(UIForm.java:73)
         at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:627)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:149)
         at org.apache.myfaces.lifecycle.ProcessValidationsExecutor.execute(ProcessValidationsExecutor.java:32)
         at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:95)
         at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:70)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:139)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.alfresco.web.app.servlet.AuthenticationFilter.doFilter(AuthenticationFilter.java:104)Appreciate for all yours helps,
    Anh

    I put the print out statement in the _SelectItemsIterator and found out that the selected item's value doesn't binding. How would I be able to select an item? Attached is the code with debug print out in the SelectItemsIterator.
    Would some one please point me a direction? Appreciate.
        public boolean hasNext()
            if(_nextItem != null)
                return true;
            if(_nestedItems != null)
                if(_nestedItems.hasNext())
                    return true;
                _nestedItems = null;
            if(_childs.hasNext())
                UIComponent child = (UIComponent)_childs.next();
                getLogger().debug("-----_SelectItemsIterator---child is UIComponent---" + child.getChildCount());
                getLogger().debug("-----_SelectItemsIterator---child is UIComponent---" + child.getAttributes());
                Map m = child.getAttributes();
                Set s = m.keySet();
                Iterator i= s.iterator();
                while (i.hasNext()) {                 
                     getLogger().debug("value  = " + m.get(i.next()));
                if(child instanceof UISelectItem)
                     UISelectItem uiSelectItem = (UISelectItem)child;
                    Object item = uiSelectItem.getValue();
                    getLogger().debug("-----_SelectItemsIterator---child is UISelectItem---getValue()--" + item);
                    if(item == null)
                        Object itemValue = ((UISelectItem)child).getItemValue();
                        String label = ((UISelectItem)child).getItemLabel();
                        String description = ((UISelectItem)child).getItemDescription();
                        boolean disabled = ((UISelectItem)child).isItemDisabled();
                        if(label == null)
                            label = itemValue.toString(); //////////////////////IT THROWS THE EXCEPTION HERE, BECAUSE THE
                                                                 ///itemValue is null
                        item = new SelectItem(itemValue, label, description, disabled);
                        getLogger().debug("-----_SelectItemsIterator---create item - label---" + label);
                        getLogger().debug("-----_SelectItemsIterator---create item - descp---" + description);
                        getLogger().debug("-----_SelectItemsIterator---create item - disable---" + disabled);
                        getLogger().debug("-----_SelectItemsIterator---create item - itemValue--" + itemValue);
                    }

  • When is the next patch on 8.1 due

    Can some one tell me when is the next patch on 8.1 (Latest is SP6) due.

    The AD310 is already the modified course by AddOn. It will just be no classroom training but will be held remotely. The official VMware equivalent is [VMware vSphere: Install, Configure, Manage|http://mylearn.vmware.com/mgrreg/courses.cfm?ui=www&a=one&id_subject=10103]
    If you attend to AD310, there is no need to book the VMware standard course because the AD310 already includes its lessons.
    Sorry that I still don't have a date for the course. As soon I have it I'll post it here.

  • ACE30: When will the next software version be released in the A5(2.*) train

    Hi Guys,
    Looking through the release notes for A5(2.1) I noticed that there are a number of open caveats which indicate that the bug has been fixed in a version that is not available as yet on CCO.  Example:
    •CSCuc04894—The ACE reloads without generating the core file and displays the crash reason as "Unhandled kernel unaligned access or invalid instruction". Workaround: None.
    Fixed in: 3.0(0)A5(2.1.5)
    or
    •CSCub43983—The ACE CP is not reachable on the network which affects all ARP entries and results in the ACE losing all routes. This problem affects the traffic through the ACE and the applications running at the backend which happens when the communication between the internal ACE components (CP and NP) is blocked because of the VERNI FPGA interface. Workaround: None.
    Fixed in: 3.0(0)A5(2.1.40)
    When will the next version (which presumably has a fix for the ones above) be available?
    Also can I confirm that a bug with a status of "Terminated" is not going to be worked on?
    thanks
    Sheldon

    Hello Sheldon,
    Both of the software defects you mentioned will be fixed in A5(2.2).
    A5(2.2) is due out tentatively in March 2013.
    Joel Lamousnery
    CCIE R&S - 36768
    Engineer, Customer Support
    Technical Services

  • When is the next release of ios 6.0.2 for ipod 4g? Ios 6.0.1 not pleasing

    When is the next update ios 6.0.2 available for ipod 4g? Any date?
    Cause i encounter apps crashing with a lot of space available (56.9 gb) and the longer i use my ipod 4g the more it is laggy, unresponsive and delay, then i need to restart or turn off then turn on, to be able to use my ipod 4g normal again (then after long run same situation) But before posting my concern in the apple support, i tried downgrading as a result, error. i tried resetting and putting 50% apps plus music plus video and it turns out the worst (what if 80%?). In my readings some people with 64gb ipod 4g encountered this too, some friends of mine who updated there ios into ios6 are encountering the same way. So i concluded ios 6.0.1 might be the problem. I apologize but i am waiting impatiently, the service of my ipod 4g, i am not very contented and disappointed.
    Please fix this issues on the upcoming update.
    I hope the update will be as soon as possible.

    There is no way to know such a thing unless Apple announces, which is rare.

  • When is the next firmware released after v21.0.016...

    When is the next FW upgrade after V21.0.016 which hav known bugs reported . I hope nokia to rectify it in next FW near soon.....My N95-1 getting slower & slower in response...when boot up it takes 15 minutes, some phone pre-installed function like Nokia Search, Dictionary, WLAN (wifi) already hided inside the phone (cannot see their icons), when receiving calls , i cannot see the loudspeaker function to be on...Video centre cannot be added anymore new services...& many more ...i only used up 3GB data for my Sandisk 4GB card...my phone still hav 58MB space left...i cannot imagine what will happen if more problems coming...

    Your problem is elsewhere, not with the firmware.
    How many themes and third-party applications have you installed? Did you install them into the phone's memory or the memory card? If your phone takes 15 minutes to start up there's a serious overload somewhere.
    Regardless of that, nobody knows when new firmware is due out. It just appears. The thing to do is to check on http://europe.nokia.com/A4577225 periodically.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • When is the next ios update and will it fix/address the issue with photos not being shown in chronilogical order?

    when is the next ios update and will it fix/address the issue with photos not being shown in chronological order?

    All of us here are users just like you. We have no inside info of when Apple products or operating system updates/upgrades will be released. The next iOS may not even change the issue you have.
     Cheers, Tom

  • When is the next generation Time Capsule expected to be released?

    When is the next generation Time Capsule expected to be released?

    Sorry, but no one on a user-to-user support forum will know anything about what plans a notoriously secretive company like Apple might have.
    When/if Apple announces a new product, we'll all know.

  • When will the next ISO be released?

    When will the next Arch ISO (based on 2.6.21) be released?
    The kernel in the 0.8 ISO (2.6.20.4 IIRC) has a problem with the nForce chipset in my laptop, therefore I have to use the 0.7.2 ISO, which is pretty outdated.

    Weeks wrote:Yes, but once you've installed the 7.2 CD you can ugrade (using pacman) to 8.0. So there's no need for a new ISO
    I know, but I reinstall all the time, and since a native driver for my sucky Broadcom network card don't exist, I can't do an FTP install. And I have a really slow internet connection, so upgrading packages takes a while.

  • When is the next release/update for iPhone iOS.5 ? (concerning SIRI)?

    Hi,
    Given that Siri is in beta, when does Apple plan to update us with a proper version with the bugs ironed out?
    Are they going to remove the annoying design of Siri that requires an internet connection to ask it the local system time?
    If anyone has any news on this, please let me know.
    Thanks,
    H

    Hatim M wrote:
    When is the next software update for iphone 4 and which version will be available. Release date for IOS7, and is it compatible with iphone 4 ???
    Already asked and answerd many times on these forums and by a simple Google search.  Search before posting.

  • When is the next software update

    when is the next software update for iphone 5c

    Apple has not announced any future updates, and none of us here, who are all fellow users, will know until they do. We'll all just have to wait.
    Regards.

  • When is the next update for iphone carrier setting?I cant change my carrier to 2g!!!There is only 3g or LTE available for me.

    when is the next update for iphone carrier setting?I cant change my carrier to 2g!!!There is only 3g or LTE available for me.

    Carrier Settings are dependent entirely on your carrier.  2G is old outdated and slow etc, most carriers are phasing out their 2G service. You would need to ask your carrier when they plan on releasing a new update.
    Why on earth do you want to set your iPhone to 2G?  It will automatically switch to 2G if 3G is not available, and 2G is found.

  • When is the next nokia asha 501software update ?

    Hi when is the next nokia asha 501 software update ?

    hi mate,
    Nokia does not specify when the next updates for devices will be. you will need to wait if/when there is an upcoming update, for which Nokia will usually state them here on the boards or thru a blog post on Nokia Conversations. bear in mind that the v14 update was only pushed last month to the Asha series.

  • When is the next generation iPhone going to be released?

    When is the next generation iPhone going to be released?

    There is no official date as of yet, but "we" as in every one of us, are expecting to hear from apple about the new iphone this fall.

Maybe you are looking for

  • J2SE Adapter

    Hi all, We are planning to install J2SE adapters. We are looking for some answers for these question: 1. Our server environment are based on Microsoft server 2000/2003, so I think its not a problem to install J2SE adapters. 2. What's the system requi

  • Java Install,  Cannot insert a key value pair into the secure store fails,

    Dear All, I'm doing Java Intallaion in BI7 on CI and in the midle of installtions we encounter, TRACE      [iaxxejsexp.cpp:199]            EJS_Installer::writeTraceToLogBook() NWException thrown: nw.secureStore.cannotInsertIntoSecureStore: Cannot ins

  • Auto creation of purchase orders in background

    Hi, Can anyone help me with auto creation of purchase orders in background while saving production order as in standard sap only purchase requisition is getting created.

  • Costing - in SAP PS

    Dear SAP PS Experts, We have a requirement that we need to do cost calculation based on certain rules. i.e. There are  equipments and each equipment has certan length and type. Each equipment incurrs cost based on length and type. e.g. one equipment

  • ALV tree: code is getting dumped............................

    Hi all, I want to display output using ALV tree. I havent worked on this before, So kindly provide me useful sample programs to display output using ALV tree. Also i am creating field catalog using following code:   data :  gt_fieldcatalog type lvc_t