Shift Management functionality - EHP4

Hi,
I couldnt find  Shift Management config settings for Confirmation parameters.
i am doing  as per following link
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0fa9a04-376a-2c10-c396-86d32ac80614?quicklink=index&overridelayout=true
i have done shift grouping with shift definition and shift sequence.
EHP4 has been applied.
Is there any additional configuration settings required?
Pl let me know
Thanks

Business function LOG_SRN_CONF should be activated

Similar Messages

  • Process Order Confirmation COR6N - By using Shift Management Functionality

    Hi,
    I want to confirm Operations/Phases by using T.Code COR6N.
    Here i want to identify which Shift i have done confirmation by using shift management functionality.
    It can be done for CORK. While doing Cofirmation for Order by using CORK, we can use this functionality.
    The same i want to use for COR6N.
    I have done as per following link
    https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c0fa9a04-376a-2c10-c396-86d32ac80614
    Is there any option to use this functionality for COR6N ?
    Pl suggest
    Regards
    Nag
    Edited by: nag1975 on Mar 29, 2010 3:06 PM

    Hi Srinath,
    Go to T-code CO86 directly or go to SPRO> Production planning for process industries>process order--> operation>>confirmation and then hide the field for scrap by clicking the radio button. I think this should serve your purpose.
    Please let me know if you have any issues.
    Regards,
    Abhijeet

  • Error while Activating Activate Global Funds Management Functions (PSM-FM)

    Hi,
    I am getting the below error while activating Activate Global Funds Management Functions (PSM-FM) in Funds Management.
    Aktivierung des Haushaltsmanagements ist nicht erlaubt
    Message no. ZZ003
    Kindly help me in fix this issue....
    Thanks
    Kishore

    Hi,
    Thanks for your reply. But can you clarify me why we need to delete the row Z_LEAVE in SE11 for FMISPS table. Because here ABAPER is objecting to do this as they feel there may be some impact if we delete this.
    Kindly clarify me
    Thanks
    Kishore

  • [ODBC Driver Manager] Function sequence error

    Hi all,
    i´m trying to built an webservice and if i try to run my code i get following
    error: [ODBC Driver Manager] Function sequence error .CAn someone tell me what
    this means?
    Here comes my code:
         static String Daten(int Nummer)
                        java.sql.Connection conn = null;
                        java.sql.Statement stmt = null;
                   try
                                                           Context ctx = null;
                                                           Hashtable ht = new Hashtable();
                                                           ht.put(Context.INITIAL_CONTEXT_FACTORY,
                                                                          "weblogic.jndi.WLInitialContextFactory");
                                                           ht.put(Context.PROVIDER_URL,
                                  "t3://localhost:7001");
                                  // Get a context for the JNDI look up
                                  ctx = new InitialContext(ht);
                                  javax.sql.DataSource ds
                                  = (javax.sql.DataSource) ctx.lookup ("webservice-data-source");
                                  conn = ds.getConnection();
                                  System.out.println("Making connection...\n");
                                  // execute some SQL statements to demonstrate the connection.
                                  stmt = conn.createStatement();
                                  System.out.println("Vor ResultSet");
                                                 ResultSet result = stmt.getResultSet(); //Bringt Fehler
                                                 final Vector erstespalte = new Vector();
                                                 final Vector zweitespalte = new Vector();
                                                 final Vector drittespalte = new Vector();
                                                 final Vector Zeilen;
                                                 final Vector end = new Vector();
                                  try {//2.Block
                                                 stmt.executeQuery("Select * from Person where Kundennummer=5");
                                                 while(result.next())
                                                                erstespalte.add(result.getObject(1));
                                                                zweitespalte.add(result.getObject(2));
                                                                drittespalte.add(result.getObject(3));
                                                           Zeilen = new Vector();
                                                                     for(Enumeration a = erstespalte.elements() ; a.hasMoreElements()
                                                                                    for(Enumeration b = zweitespalte.elements() ;b .hasMoreElements()
                                                                                              for(Enumeration c = drittespalte.elements() ; c.hasMoreElements()
                                                                                                   Zeilen.add(a.nextElement());
                                                                                                   Zeilen.add(b.nextElement());
                                                                                                   Zeilen.add(c.nextElement());
                                                                                                   end.add(Zeilen);
                                                                               }System.out.println(end);
                                                           result.close();
                                       }//2.try-Block
                   catch (SQLException e) {
                        System.out.println(e);
                                  }//1.try-Block schliessen
                                  catch (Exception e) {
                             System.out.println("Exception was thrown: " + e.getMessage());
                                            finally {
                                                      try {
                                                      if (stmt != null)
                                                           stmt.close();
                                                      if (conn != null)
                                                           conn.close();
                                                      catch (SQLException sqle) {
                                                      System.out.println("SQLException during close(): " + sqle.getMessage());
                                                      }//finally-Block schliessen
                                            return ("HAllo");
              }//Methode abschliessen
    Thank you very much for helping !!!

    Please post this in the JDBC newsgroup: weblogic.developer.interest.jdbc
    Also, please include your full error message.
    -- Rob
    Hakan wrote:
    Hi all,
    i´m trying to built an webservice and if i try to run my code i get following
    error: [ODBC Driver Manager] Function sequence error .CAn someone tell me what
    this means?
    Here comes my code:
    static String Daten(int Nummer)
    java.sql.Connection conn = null;
    java.sql.Statement stmt = null;
    try
    Context ctx = null;
    Hashtable ht = new Hashtable();
    ht.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    ht.put(Context.PROVIDER_URL,
    "t3://localhost:7001");
    // Get a context for the JNDI look up
    ctx = new InitialContext(ht);
    javax.sql.DataSource ds
    = (javax.sql.DataSource) ctx.lookup ("webservice-data-source");
    conn = ds.getConnection();
    System.out.println("Making connection...\n");
    // execute some SQL statements to demonstrate the connection.
    stmt = conn.createStatement();
    System.out.println("Vor ResultSet");
    ResultSet result = stmt.getResultSet(); //Bringt Fehler
    final Vector erstespalte = new Vector();
    final Vector zweitespalte = new Vector();
    final Vector drittespalte = new Vector();
    final Vector Zeilen;
    final Vector end = new Vector();
    try {//2.Block
    stmt.executeQuery("Select * from Person where Kundennummer=5");
    while(result.next())
    erstespalte.add(result.getObject(1));
    zweitespalte.add(result.getObject(2));
    drittespalte.add(result.getObject(3));
    Zeilen = new Vector();
    for(Enumeration a = erstespalte.elements() ; a.hasMoreElements()
    for(Enumeration b = zweitespalte.elements() ;b .hasMoreElements()
    for(Enumeration c = drittespalte.elements() ; c.hasMoreElements()
    Zeilen.add(a.nextElement());
    Zeilen.add(b.nextElement());
    Zeilen.add(c.nextElement());
    end.add(Zeilen);
    }System.out.println(end);
    result.close();
    }//2.try-Block
    catch (SQLException e) {
    System.out.println(e);
    }//1.try-Block schliessen
    catch (Exception e) {
    System.out.println("Exception was thrown: " + e.getMessage());
    finally {
    try {
    if (stmt != null)
    stmt.close();
    if (conn != null)
    conn.close();
    catch (SQLException sqle) {
    System.out.println("SQLException during close(): " + sqle.getMessage());
    }//finally-Block schliessen
    return ("HAllo");
    }//Methode abschliessen
    Thank you very much for helping !!!

  • Importance of Bounce management functionality in SAP CRM

    Hi All,
    I want to discuss few interesting issues which I have come a cross while doing a setting for bounce management functionality in SAP CRM 7.0
    Before sharing my experience I want to discuss some term related to Bounce email than will discuss about types of bounce emails and cause of the bounce email.The setting of bounce functionality is describing in below link .
    http://help.sap.com/saphelp_crm700_ehp01/helpdata/en/46/3f509215835fa7e10000000a1553f7/content.htm
    In general when a website visitor sigh up they receive email from the company site, the information the site collected saved in the database but It commonly happen some of your email will be undeliever. In marketing term we say it as 'Bounce'. this is the same way happen as when a person give a bank cheque to bank and don't have sufficient money to his/her account the bank people say the cheque got bounce ..
    As we are aware emails are bounce for variety of reason such as.
         - In case the recipient email address is invalid.
         - recipient email address is inactive or closed
         - recipient mailbox is full or mail server have some technical issue etc
    In general all these bounces emails categorize in two category.
    Hard bounce- When email address is not active. example wrong email address, email address de-activated, deleted,or closed
    Soft bounce-  recipient mailbox is full, mail server have some technical issue, Out_of_office is setup .
    Now finally we come to know about the cause of bounce email and types. Now the question arises why this is so important when we have bounce management functionality active in sap crm marketing ? as described in above url.
    suppose that there is a campaigning happening for an product where 3000 person visited it. Now incase 2000 visitors shown interest so have qualified as prospect bases on the information they have provided such as name, address, salary or employment detail.
    After successfully execution of campaign now senior executives create a mailing list for all the prospects in the target group of campaign and sends email to all the users.Now if I say to how many customers really company have reached reached after campaign execution answer will be we can not have the correct fact and figure as there could be some bounce happened.
    Now incase bounce management setting is configure in your CRM system than system will receive inbound e-mails for each bounce.Suppose we have received one thousand bounce emails than we would say actual customer contacted is 1000. this is the correct fact and figure and very much useful for marketing people.
    After than executive could remove email address which were hard bounced and for soft bounce they can use some other channel to contact like telephone calls etc to reach them.
    The correct facts and figures are very much important for marketing strategy and planning and also to know success level of each campaign. Assume a scnario where in day a company launches more than 5 campaign. I feel the importace is transparent now.
    I hope you would find some interest in above blog.
    Thanks
    prem

    HI, Sreedhar
    Check this thread:
    Re: New search help on CRMD_ORDER locator
    Denis.

  • Travel Management functions interview question and answers

    Hi Guys,
    I wanted to know Travel Management functions interview question and answers , it is most urgent for me.
    Your detail response will be highly appreciated.
    Thanks – Sam.

    Check this site
    http://help.sap.com/saphelp_470/helpdata/en/73/6bf037f1d6b302e10000009b38f889/frameset.htm
    Regards,
    Ruben

  • Empties Management Functionality in ECC 6.0

    Hi all,
    Can any one please tell me empties management functionality in ECC 6.0??
    Best Regards,
    AI.

    Hi,
    Go to help.sap.com weblink
    http://help.sap.com/search/highlightContent.jsp
    Enter Empties Management.
    You will find Empties Management Functionality in ECC 6.0.
    Please let me know if you need more information.
    Regards
    Sridhar M

  • Knowledge management Functionality  - C4C

    Hi ,
    I am going to work on C4C project  and this my first C4C project with Marketing Sales and  Service as part of the scope. Our Client also have knowledge management functionality as part of the legacy. My question or my concern is  that I am aware that MIND-TOUCH is knowledge management server which interacts with C4C for the solutions . But currently my client doesn't have any knowledge server to interact with CRM for the solutions.
    I would request you to help me on how the actual  knowledge management Functionality works and different approaches to achieve this solution.
    Thanks for your help.
    Regards
    Mahesh

    Hi,
    By integrating an external knowledge base, you enable agents to search for solutions and attach articles to responses without having to leave the workspace. The workspace will also include a list of recommended articles based on an automatic search of the knowledge base using the product and other keywords identified via text analysis as the search parameters.
    •You have an external knowledge base that supports the OpenSearch standard with an RSS or Atom based search API.
    •You know the URL for the API (from your knowledge base vendor).
    •You know the search term input parameter for the API (from your knowledge base vendor).
    You have to enable the knowledge base integration from scoping
    Hope this helps.
    Regards,
    Siddhartha

  • Configuring TREX for HCM Talent management functionality using Nakisa

    Hi,
    We are configuring the Talent Management functionality in ECC-HR system.We have installed TREX 7.1 patch number 36 and Nakisa.
    We are using the 'embedded search' functionality.
    Now, also and are trying to create indexes using the Administration cockpit (tcode ESH_COCKPIT).
    However we are getting the error 'System DHS, client 100: A connection already exists' while creating a 'search connector' in the cockpit.
    Also, we are getting the below log error in the system in SM21:
    ''TREX_ICM - Send_Error; return code = 112, return text =HTTPIO_PLG_ICM_CONNECT_FAILED-Fehle''
    Kindly let us know what should be done.
    Thanks & Regards,
    Kunal.

    Hi,
    Now the initial error we were getting is resolved by applying one note suggested by SAP OSS.
    However, now we have another issue, while creating indexes using tcode ESH_COCKPIT in the backend system.
    We get error when we try to go to tcode TREXADMIN --> TREX
    ABAP Customizing --> 'Net Performance'.
    It gives the error below:
    ERROR
    Remote communication failure with partner http://:33003/ICMConnectTest
    HTTP Status 507: Kernel error:ICM_HTTP_CONNECTION_FAILED (400 )
    Kindly let us know why we get the error because even while recreating
    the indexes we get similar error i.e. Remote communication failure with
    partner http://cca1cs0872:33003/asxml/multiIndexCellTable
    The icm timeout parameter is sufficiently large i.e. around 30 minutes.
    Also, the RFC (TREX_DHS) from ECC-HR system to the TREX is working fine.
    Thanks & Regards,
    Kunal.

  • Red EWA alert in SAP Solution Manager Functionality

    Hi Experts,
    We found a red alert in Service Plan and General Infrastructure in EWA under SAP Solution Manager Functionality for Solman system. The error is as follows.
    Service Data Download Center
    SDCCN settings are not maintained -
    Service Plan
    RFC connection errors to SAP backend system
    General Infrastructure
    Not all services in ICF required for Solution Documentation Assistant are active
    RFC connection errors to SAP backend system
    Number range check inconsistent
    RNOTIFUPDATE01 is currently not scheduled Hourly
    & settings are inconsistent
    Could anyone provide a solution to rectify these red alerts.
    Thanks & Regards,
    Sundara.

    SDCCN:
    Go to tx SDCCN - Goto - Settings - Task-specific
    Make sure all settings are correct.
    Service Plan:
    Check your RFC's to satellite systems in SMSY.
    General Infrastructure:
    Go to transaction SICF and activate all nescesarry services.
    Hope this helps!
    Regards,
    David

  • Exposing Portal's User Management functionality via Web Service issue

    Dear experts,
    I am trying to create and deploy a web service that will tap into User Management functionality (UMFactory) of the Portal. I created a Java project with a Java class with one of the methods exposed via Web Service. Since this is a Java project and not a Web Dynpro project, a number of external jars and libraries, but I don't know how to add WD_RUNTIME and I am guessing that my problem is related to that.
    When trying to run the application, I receive the following error message when trying to envoke UMFactory:
    java.lang.NoClassDefFoundError: com/sap/tc/logging/Location
         at com.sap.security.api.UMFactory.<clinit>(UMFactory.java:166)
         at com.hollister.getusers.GetPortalUsers.getPortalUsers(GetPortalUsers.java:75)
         at com.hollister.getusers.GetPortalUsers.main(GetPortalUsers.java:39)
    Please, help.
    Thanks,
    Alex

    Container Managed Authentication. Does everything you need.

  • USER Hook for Changer Manager function

    Dear All,
    I need to know that is there any user hook for Manager Self Service -- Change Manager function for employee.
    If yes then please give me the module name/id for the user hook.
    If no then how can I set custom validations on this page.
    Regards.

    You should look for the update assignment api.
    select * from hr_api_modules
    where module_name like '%UPDATE%ASG%'
    Depending on the legislation, you will have different modules/packages/procedures.

  • Shift Management on ESS

    Hi,
    We have a requirement where the user requires shift planning functionality in portal(MSS).
    Apart from ITS version, Can anyone share some high level solution/document regarding shift planning in portal.
    Thanks

    Hello,
    I believe there are no shift planning solutions for portals despite you use the ITS version.
    Let's open this space for clients which might have some contribution on this topic.
    Regards,
    Bentow.

  • Issue when activing Global Funds Management Function(PSM-FM)

    Hi Peers,
    I tried to active Global Funds Management Function(PSM-FM) in IMG. A message "Aktivierung des Haushaltsmanagements ist nicht erlaubt" poped up. And I also only have read access to “Active/Deactive Funds Management” but SU53 shows authorization check is ok.
    What should I do for next? Thanks
    Regards,
    Eunice

    Hi,
    I am facing the same issue regarding "Read Access Only" to the activation of Funds Management under Actual and Commitment Update/Integration.
    I've checked the component activation and found that
    1) ES-PS is activated under SPRO
    2) IS-PS is checked under BF11, but the checkbox status is greyed, so that it's impossible to change it.
    I've tried to delete the IS-PS entry and re-insert it...the action was successful but the issue remained...
    Any clues?
    Thanks

  • 2LIS_11_VAHDR manage function cannot work

    Hi Experts :
    When I   use  manage function in  datasource 2LIS_11_VAHDR ,system shows me following error,please give me a
    hand ,thanks
    Error message----
    Invalid DataStore object name /BIC/B0000109: Reason: No valid entry in table RSTS
    Message no. RSM1294

    Hi Jeff,
    Note 1122444 - P17: Incorrect error message when DataSource is inactive
    The above note will help you.
    Veerendra

Maybe you are looking for

  • Diffrence between OBIEE 10g and 11g Architecture

    Hi Please help me by providing either the differences between the OBIEE 10g and 11g Architecture or a pointer/link. Thanks

  • Search in a specific library

    hi, i tried this post: http://social.technet.microsoft.com/Forums/sharepoint/en-US/64278225-28c0-4b43-afa5-d402b8bb709e/how-to-search-only-to-some-specific-libraries-in-sharepoint-2013 but i don't have any result if i put in the searchbox path:http:/

  • Joining Problem in Access DB

    OleDbConnectionconn = getrConnected(); stringquery = "select p.pName, s.sName from Products100 p join Suppliers300 s on s.sID=p.sID "; OleDbDataAdaptersdr = newOleDbDataAdapter(query, conn); DataTabledt = newDataTable();  sdr.Fill(dt); returndt; Usin

  • Why when I enter a birthday in Contacts does it show up as different date on my iPad and iPhone 4?

    I enter a birthday in Contacts on my MacBook Pro and it shows up correctly in iCloud but on my iPad and iPhone it showsa up as another date - either before or after the actual date???  Any clues?

  • MacBook Pro has a "hiccup" or short freezes

    I have an early 2009 MacBook Pro running OSX 10.6.5. Over the past month it's developed an annoying "hiccup" or sorts. The Mac freezes for a 2 seconds every 10 minutes or so. For example: 1) scrolling down a webpage I encounter a temporary freeze, 2)