Service areas not considered during autom. item scheduling

Hello,
we've currently trying to activate the automatic scheduling of service orders in our CRM 5.0 SP4 system. The demands (service order items) should be assigned to resources according the ZIP code of the service recipient.
I made the settings for building up service areas mentioned on help.sap.com
(http://help.sap.com/saphelp_crm50/helpdata/en/e6/0f2288993743198bf26a2191635525/frameset.htm AND
http://help.sap.com/saphelp_crm50/helpdata/en/da/7d808043d244cf806dcf0d6e69381e/frameset.htm), however, it doesn't work yet.
In fact I don't understand yet how the resources are assigned to specific service areas. This is mentioned on the help pages, however, not described how it actually works.
Is this the only "missing link" - kindly tell me how to do this - or do I need to perform additional settings? The assignment itself works right now, however, not yet considering service areas.
I made a where-used analysis of the table where the service areas are maintained in, however, no hits.
Thanks & regards
Wolfgang

Hi Aziz,
I agreed with Mr.Ajay M reply ...add on to this "however i also faced this issue i.e.
"No planning Values but there are Actual Values - We can correct this issue by planning in KP06"
We faced the above issue- (we have added the new cost center in between & not planned in KP06- so while running KSS2 the same it has occured- so we have planned in KP06 & ran it done successfully...
As suggested by Mr. Ajay M considering of Fixed & var cost- in ML functionality will flow as system process.
Could you please try to maintain planning & run sure it will help as we also done the same.
Regd,
Khan.

Similar Messages

  • Trans duration not consider during Preq forward scheduling

    Sales order is created with Make-to-order configurable material
    Variant. During the planning process, the raw material is issued from
    one facility to the facility specified on the sales order using STO
    process.
    During CTP process (backward & reverse strategy setting,), while doing
    the backward scheduling, system considers the transport duration from
    the transportation lane and calculates the correct requested date for
    the raw material.
    If there is no capacity available to make the raw material on the
    requested date system is expected to carry out forward scheduling. The
    system then updates the planned order that consumes raw material correctly.
    While updating the Preq the system does not consider the transport
    duration from the transportation lane. The availability date on PurRqs
    and the requested date on the PReqRel is same.
    Has anybody seen this issue?
    Kedar

    Guys,
    We found that the transportation time is considered in forward scheduling of a PReq when we have a transportation resource. But it is not considered when we have GR/GI time in product master or in Tlane(only the GR).
    Has anybody gone through this issue?
    Kedar

  • Chkconfig not working on OEL 5.7 (services are not stopped during reboot)

    Hi all,
    I am trying to use chkconfig to configure a "service" on Oracle Linux 5.7 .
    I noticed that the script is called during system boot with the "start" option, but it is not called during system shutdown !
    The script is:
    [root@srv-db5 ~]# cat /etc/init.d/oradb
    #!/bin/bash
    # chkconfig: 35 99 10
    # description: Starts and stops Oracle processes
    # Set ORA_HOME to be equivalent to the $ORACLE_HOME
    # from which you wish to execute dbstart and dbshut;
    # Set ORA_OWNER to the user id of the owner of the
    # Oracle database in ORA_HOME.
    ORA_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
    ORA_OWNER=oracle
    case "$1" in
    'start')
    /bin/echo "" >> /tmp/oradb.log 2>&1
    /bin/echo "$0 start - `/bin/date` " >> /tmp/oradb.log 2>&1
    touch /var/lock/subsys/dbora
    'stop')
    /bin/echo "$0 stop - `/bin/date` " >> /tmp/oradb.log 2>&1
    /bin/echo "" >> /tmp/oradb.log 2>&1
    rm -f /var/lock/subsys/dbora
    esac
    # End of script oradb
    chkconfig can read it:
    [root@srv-db5 ~]# chkconfig --add oradb
    [root@srv-db5 ~]# chkconfig --list oradb
    oradb 0:off 1:off 2:off 3:on 4:off 5:on 6:off
    [root@srv-db5 ~]#
    and chkconfig creates all the expected symlinks :
    [root@srv-db5 ~]# find /etc/ -type l -iname "*oradb*" -exec ls -l \{} \; | sort
    lrwxrwxrwx 1 root root 15 Dec 6 11:51 /etc/rc.d/rc0.d/K10oradb -> ../init.d/oradb
    lrwxrwxrwx 1 root root 15 Dec 6 11:51 /etc/rc.d/rc1.d/K10oradb -> ../init.d/oradb
    lrwxrwxrwx 1 root root 15 Dec 6 11:51 /etc/rc.d/rc2.d/K10oradb -> ../init.d/oradb
    lrwxrwxrwx 1 root root 15 Dec 6 11:51 /etc/rc.d/rc3.d/S99oradb -> ../init.d/oradb
    lrwxrwxrwx 1 root root 15 Dec 6 11:51 /etc/rc.d/rc4.d/K10oradb -> ../init.d/oradb
    lrwxrwxrwx 1 root root 15 Dec 6 11:51 /etc/rc.d/rc5.d/S99oradb -> ../init.d/oradb
    lrwxrwxrwx 1 root root 15 Dec 6 11:51 /etc/rc.d/rc6.d/K10oradb -> ../init.d/oradb
    if Itry to manually issue "service oradb start | stop " everything works fine:
    [root@srv-db5 ~]# > /tmp/oradb.log
    [root@srv-db5 ~]# service oradb start
    [root@srv-db5 ~]# cat /tmp/oradb.log
    /etc/init.d/oradb start - Tue Dec 6 12:01:14 CET 2011
    [root@srv-db5 ~]# service oradb stop
    [root@srv-db5 ~]# cat /tmp/oradb.log
    /etc/init.d/oradb start - Tue Dec 6 12:01:14 CET 2011
    /etc/init.d/oradb stop - Tue Dec 6 12:01:23 CET 2011
    but if I do a reboot, I see that my script has not been called during system shutdown :
    [root@srv-db5 ~]#
    [root@srv-db5 ~]# cat /tmp/oradb.log
    /etc/init.d/oradb start - Tue Dec 6 12:01:14 CET 2011
    /etc/init.d/oradb stop - Tue Dec 6 12:01:23 CET 2011
    /etc/rc5.d/S99oradb start - Tue Dec 6 12:03:50 CET 2011
    [root@srv-db5 ~]#

    Perhaps the problem isn't your dbora script, but some other stop script that stops the shutdown execution, or e.g. removing the dbora file inside the /var/lock/subsys directory, and then when K10dbora is involved, it believes dbora is not running and hence does not need to be shut down.
    See if you have anything in /etc/rc0.d that might conflict with the K10dbora script.
    What happens if you change:
    # chkconfig: 35 99 10
    to
    # chkconfig: 35 99 01
    and reconfigure, so that the dbora script is called before K02, etc.?
    Edited by: Dude on Dec 6, 2011 6:37 AM

  • "SQL Server 2008 Reporting Services does not support map report items"

    Hi,
    I am trying some new feature that are introduced in SQL Server 2008 R2 version. While I try to use "Map" control within it, it threw the following error:-
    "Error 1 The map, Map1, was removed from the report. SQL Server 2008 Reporting Services does not support map report items. "
    -Also, similar kind of error I am getting for "Indicator" control.

    Hi Tej,
    I think you get this error message when you are deploying a report to report server using BIDS, correct?  If not, please provide more details on your scenario :-)
    If I guessed correctly, then this message is a result of trying to deploy a map report (a SSRS 2008 R2 feature) to a non-R2 2008 report server.  When deploying a report of RDL2010 format to a non-R2 report server, BIDS will downgrade the file to RDL2008 format, so that the non-R2 report server can process it.  Any report elements using features not supported in RDL2008 will be dropped during this downgrade process.
    BIDS gets the server version from a report project property called TargetServerVersion:
    http://technet.microsoft.com/en-us/library/ee635898(SQL.105).aspx
    If your report server is indeed the 2008 R2 version, then the TargetServerVersion property should be set to "SQL Server 2008 R2 Reporting Services."  The project property page also has a "Auto Detect..." option if you are uncertain about the version of your report server.
    Hope this helps!
    Cheers,
    LawrenceThis posting is provided "AS IS" with no warranties, and confers no rights.

  • Error in File name or class name not found during Automation operation: 'CreateObj​ect'

    Hello Team,
    When I am trying to execute the below code i am getting the following error. Any help would be greatly appreciated.
    Set oFSO = CreateObject("Scripting.FileSystemObject")
    If Not oFSO.FolderExists(SavePath) Then
    Set f = oFSO.CreateFolder(SavePath)
    Else
    End If
    53 4/11/2014 12:27:22 PM Error:
    Error in <NoName(4).VBS> (Line: 9, Column: 1):
    File name or class name not found during Automation operation: 'CreateObject'
    I have googled through the error and tried to re-register the scrrun.dll using regsvr32 eventhogh it is successfully registered, i am getting the following error. My PC is windows 7 32bit OS.
    any help is greatly appreciated.

    The following script class will write a log file entry. See if it will run for you.
    The script is using a class object that you might not have seen before. A little intro:  The top section is just for testing the class. Normally I just comment this out after the class is working well.  It should run right way. I would save the vbs file in the editor, That way when you are using autoactpath or currentscriptpath variables they will be able resolve the paths.
    Paul
    Attachments:
    LoggingCode_V2.VBS ‏5 KB

  • TF400893: Team Foundation Server services are not available.

    Hi Gang
    Am getting
    TF400893: Team Foundation Server services are not available. This is most likely caused by a network error. Please check your connection and try again.
    consistently when trying to access TFS2012 Web Access.  I'm on the same domain as the server and able to login however as soon as I try and access a query it asks me to log in again and then presents me with the above message.
    Any thoughts am trying to get as many ports open as possible however security's pretty tight here.
    Regards

    Hi,
    Thanks for your feedback!
    I recommend you install TFS Power Tools and run a Team Foundation Server Complete Health Check and see if it helps.
    TFS 2012 Power Tools download address:http://visualstudiogallery.msdn.microsoft.com/b1ef7eb2-e084-4cb8-9bc7-06c3bad9148f
    Hope it helps!
    Best Regards,
    Cathy Kong
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Reg: Certain Open Items are not showing in open item clearing F-44

    HI all,
    I want clear open items using with f-44 but cetain open items are not showing in opeing item clearing.   i checked in FBL1N all open items are shwoing i want see all open items inf-44 how to see plz help me
    with regards
    JK Rao

    Hi,
    Check whether you r giving some additional selection take it as none and are the items in the account have any special indicator  you might not be giving here.
    reward pts if useful
    regds

  • I updated to OS X Mavericks and now trying to run Logic Pro X on a MacBook Pro mid-2009, using an M-Audio Axiom 49 and an M-Audio Fast Track Pro... Logic keeps telling me that Mac OS X MIDI Services are not available... How do I solve this problem?

    I updated to OS X Mavericks and now trying to run Logic Pro X on a MacBook Pro mid-2009, using an M-Audio Axiom 49 and an M-Audio Fast Track Pro... Logic keeps telling me that Mac OS X MIDI Services are not available... How do I solve this problem?

    I just checked to see if the update to OS X Yosemite 10.10.1 solved any of the issues outlined in my previous post, and to my dismay, nothing has changed -- all of the previous problems persist.
    My iMac (8) -- it's renamed itself eight times since the recent troubleshoot with the Apple tech rep -- shows up as a shared device in Finder on my MacBook Pro, but when I click on it, I cannot establish a connection using "Connect As".  So I've attempted to connect using the menu "Go/Connect to Server...", using both (alternately) the iMac's name and IP address, to no avail.  I get a message which reads: "There was a problem connecting to the server 'Peter's iMac (8)'. This server may not exist or it is unavailable at this time.  Check the server name or IP address, check your network connection, and then try again."
    Here's what I know:
    The server -- Peter's iMac (8) does exist;
    The server -- Peter's iMac (8) is available at this time;
    The server name -- Peter's iMac (8) -- is correct, as specified in the system sharing preferences;
    The server IP address is correct, as specified in the system sharing preferences;
    The network connection is active when I attempt to connect.
    I'm convinced the problems stem directly from the OS X Yosemite update.  None of this was ever remotely an issue in the previous OS X's -- any of them.  This is maddening!  What can be done?  Apple?? Anyone???

  • How do I stop Adobe Bridge, Excel, Word and Adobe Photo Downloader from loading at startup under Mac OS 10.7.1, they are not loaded in login items.

    How do I stop Adobe Bridge, Excel, Word and Adobe Photo Downloader from loading at startup under Mac OS 10.7.1, they are not loaded in login items.

    When you shut down this window appears.
    Uncheck the reopen box and it should stop this from happening

  • GL display for inventory account which are not defined as line item display

    Hi All,
    We have inventory gl accounts which are auto post accounts , these accounts get posted when grn is done. these accounts are not defined as line item display accounts, but if we execute the T code: FS10 we get the gl balance display and not line item display.
    Our requirement is that we should be able to view the line item display matching the GL account balance in that GL account.
    Can we get the report in MM module line items wise display.
    Regards
    Prashant P. Zinge

    Hello,
    You should use RFSEPA01 program via execute SE38 transaction.
    This program activate line item for each account. Activation means, this program generate line items to BSIS table. So that after this program running, you can see line items in FBL3N.
    Regards,
    Burak

  • Sql services are not able to start in server

    We have rebooted inactive the server due to rolling maintenance.
    Sql is not running and sql services are not able to start. Getting the below error message while starting the services.
    please suggest how to fix?

    Could you try:
    To resolve the problem, use these steps:
    Change the startup account of both the MSSQLSERVER and SQLServerAgent to use the Local System account.
    Restart the computer.
    https://support.microsoft.com/en-us/kb/307288
    Or check  NetLogon service is running

  • "Media Services Are Not Available"

    I'm new...trying to get my photos off of my Blackberry Curve 8520 , and put some music on my Blackberry.
    I just installed the Blackberry Desktop Software.  On my Blackberry, under Options -> Memory I have Mass Storage Mode Support set to On, and Auto Enable Mass Storage Mode When Connected set to Yes.    I apparently have 128.6 MB available which doesn't seem like a lot,  but whatever.
    In the Blackberry Desktop Software, under Media Sync, the Music, Pictures and Videos tabs all tell me,
    "Media Services are not available.
    Media Storage is not available.
    Please check that a media card is installed correctly  in your Blackberry device and that mass storage mode is turned on."
    Now, I never put a media card in my device and as far as I can tell there wasn't one in the box, so I'm going to assume I don't have one.  Is this normal?  Do I really need one in order to transfer files to my PC?

    Hi
    There's no media card in your device.Get one.
    If still need to confirm through your device, do the following:
    Go to options>memory, There you can check if media card is inserted or not.
    One is application memory that you are telling is 128.6 Mb. Below that is Media Card under which you can see the total space and free space. If you are unable to find this media card and details below, then there's no media card inserted for sure.
    Regards
    Ankush

  • HT1386 after installing latest itune software,my ipod and outlook in my computer are not showing any calender items prier to one month

    After installing latest itune software in my computer, my ipod and outlook in my computer are not showing any calender items i added befor
    22nd december.Also not syncing with outlook, any calender items i have added in my ipod after 22nd january.I have selected all events to sync
    in my ipod.

    Thanks very much I have contacted them via this. Just hope they respond quickly- rather annoing! Greatly appreciated though

  • Visual Composer services are not found

    Hi there,
    I have installed SAP NetWeaver 2004S SR 1 according to the installation guide which was included in the installation files. After installation of the system (excluding MaxDB Database Manager and SQL Studio) I started the server. After that I installed Adobe SVG Viewer and tried to start Visual Composer by calling http://localhost:50100/VC. When I do so, I get two error messages stating <b>Server Error: Visual Composer services are not found</b> and <b>This product requires MSXML Parser v4.0</b>. What am I doing wrong?
    Thanks a lot for any help!
    Regards,
    Marc

    Hi Mario,
    mh...strange.
    I used the VC on our old server with my notebook without a problem (great tool!).
    Now we have a new server with a new NW 04s SP10 (very fresh installed ) and there I get the "Server Error: Visual Composer services are not found" and "This product requires MSXML Parser v4.0" errors.
    Unfortunately I cannot test it on the old server, because it was a interim system.
    Regards,
    Christian

  • Leading Zeros of Consumption in historical time series are not considered

    We are using VM MRP Type and weighted average model to calculate forecast value using historical consumption values. I have 36 historical periods(months) but have consumption incurred only in last period i-e "1". I have choosen a weighted group 01 (20% for 1-12 month, 30% for 13-24 month, 50% for 25-36 month). Using these setting it should calculate the basic value as 1*0.5/12 = .042 but it gives "1" as basic value not considering leading zero consumption value in historical time series. If i put a value in first period it calculates correctly and considers the leading zero.
    We have implemented note 1113276, 1145764 & 1113277 and have chosen CV_OPTION="X" in the interface as per theses notes instructions but still while executing the forecast it is not considering the leading zeros.
    We are using ECC 6.0 MM with 602 support pack.
    Need urgent help in this regard.

    Have you followed the steps as per SAP Note 1113276 , Just check below link with same subject discussed check it helps you,
    [Forecast with consumption zero are not considered |Forecast with consumption zero are not considered]

Maybe you are looking for

  • Pasting Attributes with Title 3D? - A follow up inquiry

    Hello All, The other day I asked whether it is possible to copy and paste attributes from a text 3D title to another. The answer/solution offered was to take a "master" format, and then change the specific names and titles in each clip. I keep thinki

  • Slow System Performance on SunOS 5.10

    Dear all, Our system experienced very slow response time a few days ago. After checking the wp trace file, we found the oracle is out of memory and there were some malloc failed(not enough space). Our system is ECC6 SR3 SP 16 and Oracle 10g dbase wit

  • Windows XP 2005 Edition?

    I was thinking of installing the Windows XP 2005 Media Centre Edition, however I've just been looking at the Boot Camp manuals, and here's what one part of it says: 'A licensed copy of Windows XP Home Edition or Professional, or Windows Vista Home Ba

  • Why i need all that b***s*** for installing oracle db?

    As all you know to install for instance oracle 11g on redhat, oel, centos, fedora, etc... oracle recommends to install more than 600MB of garbage in the OS... For instance if we have a minimal redhat install we would need to install more than 580 pac

  • AS 3 with old SWF files

    My website has several SWF files running with AS2. I am now considering switching my new files to AS3. My main swf as2 file loads other as2 swf files using load() and places them at different levels. Can this main file load as3 swf files? If I change