Pland address as Del. address instead of St Loc address in Classic PO(SRM7)

Hi Experts ,
We have SRM7.0 with ECC6 ( Ehp4) having Classic Scenario.
In hace Storage Location address as a Delivery address ( Shop-to-address) in ECC for PO.
In ECC, while creating PO in ME21N,when we enter Plant & Storage Location , then system pickup Storage Location address correctly in the Delivery address tab in PO ! No problem.
But when Classic PO is created into the backend ECC system from SRM Shopping Cart ( which have both Plant & Sto Loc in it), then system pick up address of PLANT and NOT to that of Storage Location (just like PO created in ECC manully in ME21N transantion)...ideally it should take address of Storage location, since it is more specific a nd it is happening in ECC by ME21N..
Can anyone please suggest me any Note or solution on this ?
Thanks in advance
NAP

Thanks Devi. Very useful info.
But I want to pick the storage Location address in the classoc PO irresptive of  what address is in the SC delivery address tab page..since to get this address ( in SC deliveru address tab)  we done lot of enhancement  and I can not reply 100 % on that......
I saw Note 984211.... from that I saw , if we would NOT like to sedn Ship to address of SC to ECC document we can implement some cutomization....but from that Plant addresss will poulate..we want Storage Location addresss
If possible ...suggest ...
Thanks
NAP

Similar Messages

  • 2d Gen Shuffle Corrupt

    I have a new 2d Gen shuffle. I'm trying to connect with iTunes 7.02 on XP Pro Machine. I have two other iPods that work fine.
    I've tried the 5 R's. no help.
    When I plug it in, the orange light blinks, indicating that iTunes recognizes it as a device. Then I get an error message that "ITunes has detected an iPod that appears to be corrupted. You may need to restore. . . " I click OK. Then: "Are you sure you want to restore. . . ." I click Restore [update is grayed out.]. Error msg: "There was a problem downloading the iPod software for the iPod 'iPod.' The requested resource was not found." OK [of course, it's not OK]. I continually get this same loop.
    Any thoughts?
    Thanks. Craig

    I still have no solution for the corrupt file error message, but I tried plugging the Apple USB cord into a USB 1.1 plug on my old Dell and suddenly everything worked. I had it plugged into a 2.0 USB plug and I got the corrupt message. Using the 5 R's, I tried another 2.0 plug to no avail. I have no idea why I even decided to try the 1.1 plug on the front of the Dell computer instead of continuing to use the 2.0 plugs on the back of the computer, but it worked. All my other devices (camera and Palm) work great on the 2.0 USB plug on the back.
    Thanks for all your help.

  • Start Routine not working correctly.

    Hi gurus,
    I'm having a problem with a start routine in an update rule to one of my cubes. I debug it and it seems to work fine. However, it ends the simulation saying in the error message "No active update rules exist for this infosource." However, I think it's something to do with the logic I have in my start routine. Below is the start routine which I am trying to debug. I'm doing a lookup on an ODS and if no match is found on that ODS by Sales Order and Sales Order Item, I do another lookup on an object that has the same information that I'm looking to append to the transaction record. Any help would be greatly appreciated. I'm thinking the second loop against the internal table might not be working correctly as it seems to just sit on that table.
    Thanks in advance,
    John
    PROGRAM UPDATE_ROUTINE.
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    DATA:   PENDING_QTY  LIKE /BIC/AZO_BKLG100-/BIC/ZQTYPEND1,
            ABSOLUTE_QTY LIKE /BIC/AZO_BKLG100-/BIC/ZQTYPEND1,
            TEN_PERCENT  LIKE /BIC/AZO_BKLG100-/BIC/ZQTYPEND1,
            TEN_PERCENT_VALUE TYPE P LENGTH 4 DECIMALS 2 VALUE '0.1'.
    DATA:   ZWEEK LIKE SCAL-WEEK.
    $$ end of global - insert your declaration only before this line   -
    The follow definition is new in the BW3.x
    TYPES:
      BEGIN OF DATA_PACKAGE_STRUCTURE.
         INCLUDE STRUCTURE /BIC/CSZO_PMO1_ENHANCED.
    TYPES:
         RECNO   LIKE sy-tabix,
      END OF DATA_PACKAGE_STRUCTURE.
    DATA:
      DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
           WITH HEADER LINE
           WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    FORM startup
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
               MONITOR_RECNO STRUCTURE RSMONITORS " monitoring with record n
               DATA_PACKAGE STRUCTURE DATA_PACKAGE
      USING    RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    $$ begin of routine - insert your code only below this line        -
    fill the internal tables "MONITOR" and/or "MONITOR_RECNO",
    to make monitor entries
    TABLES : /BIC/AZO_PMI100.    "Active PM Invoice ODS
    TABLES : /BIC/PZ_CTBWOBJ.    "CTBW Order Master
      DATA: T_DATA_PAK  LIKE DATA_PACKAGE OCCURS 0 WITH HEADER LINE,
            T_DATA_PAK1 LIKE DATA_PACKAGE OCCURS 0 WITH HEADER LINE,
            IV_INVQTY like /BIC/AZO_PMI100-INV_QTY,
            IV_INVVAL like /BIC/AZO_PMI100-NETVAL_INV,
            BEGIN OF IT_INVOICES OCCURS 0,
                  INV_SALES_ORD    LIKE /BIC/AZO_PMI100-/BIC/ZSORDDORD,
                  INV_SALES_ITEM   LIKE /BIC/AZO_PMI100-/BIC/ZSORDIORD,
                  INV_DOC_NUM      LIKE /BIC/AZO_PMI100-/BIC/ZBILLDINV,
                  INV_DOC_ITEM     LIKE /BIC/AZO_PMI100-/BIC/ZBILLIINV,
                  INV_QTY          LIKE /BIC/AZO_PMI100-INV_QTY,
                  NETVAL_INV       LIKE /BIC/AZO_PMI100-NETVAL_INV,
                  ZBRAND           LIKE /BIC/AZO_PMI100-/BIC/ZBRAND,
                  ZBRANDOWN        LIKE /BIC/AZO_PMI100-/BIC/ZBRANDOWN,
                  ZDESGNOWN        LIKE /BIC/AZO_PMI100-/BIC/ZDESGNOWN,
                  ZFLAGBKLG        LIKE /BIC/AZO_PMI100-/BIC/ZFLAGBKLG,
                  ZNOCOLORS        LIKE /BIC/AZO_PMI100-/BIC/ZNOCOLORS,
                  ZNOSPCLRS        LIKE /BIC/AZO_PMI100-/BIC/ZNOSPCLRS,
                  ZOPENFCTY        LIKE /BIC/AZO_PMI100-/BIC/ZOPENFCTY,
                  ZPACKSYST        LIKE /BIC/AZO_PMI100-/BIC/ZPACKSYST,
                  ZPPG             LIKE /BIC/AZO_PMI100-/BIC/ZPPG,
                  ZAPPLICAT        LIKE /BIC/AZO_PMI100-/BIC/ZAPPLICAT,
                  ZPAPERGDE        LIKE /BIC/AZO_PMI100-/BIC/ZPAPERGDE,
                  ZPRINTMTH        LIKE /BIC/AZO_PMI100-/BIC/ZPRINTMTH,
                  ZQUALITY         LIKE /BIC/AZO_PMI100-/BIC/ZQUALITY,
                  ZSHAPE           LIKE /BIC/AZO_PMI100-/BIC/ZSHAPE,
                  ZSIZE            LIKE /BIC/AZO_PMI100-/BIC/ZSIZE,
                  ZVARIANT         LIKE /BIC/AZO_PMI100-/BIC/ZVARIANT,
                  ZVOLUME          LIKE /BIC/AZO_PMI100-/BIC/ZVOLUME,
            END OF IT_INVOICES,
            BEGIN OF IT_CTBW OCCURS 0,
                  CTBW_SALES_ORD    LIKE /BIC/PZ_CTBWOBJ-/BIC/ZSORDDORD,
                  CTBW_SALES_ITEM   LIKE /BIC/PZ_CTBWOBJ-/BIC/ZSORDIORD,
                  CTBW_BRAND        LIKE /BIC/PZ_CTBWOBJ-/BIC/ZBRAND,
                  CTBW_BRANDOWN     LIKE /BIC/PZ_CTBWOBJ-/BIC/ZBRANDOWN,
                  CTBW_DESGNOWN     LIKE /BIC/PZ_CTBWOBJ-/BIC/ZDESGNOWN,
                  CTBW_NOCOLORS     LIKE /BIC/PZ_CTBWOBJ-/BIC/ZNOCOLORS,
                  CTBW_NOSPCLRS     LIKE /BIC/PZ_CTBWOBJ-/BIC/ZNOSPCLRS,
                  CTBW_C_APM_006    LIKE /BIC/PZ_CTBWOBJ-/BIC/C_APM_006,
                  CTBW_PACKSYST     LIKE /BIC/PZ_CTBWOBJ-/BIC/ZPACKSYST,
                  CTBW_PAPERGDE     LIKE /BIC/PZ_CTBWOBJ-/BIC/ZPAPERGDE,
                  CTBW_PPG          LIKE /BIC/PZ_CTBWOBJ-/BIC/ZPPG,
                  CTBW_PRINTMTH     LIKE /BIC/PZ_CTBWOBJ-/BIC/ZPRINTMTH,
                  CTBW_QUALITY      LIKE /BIC/PZ_CTBWOBJ-/BIC/ZQUALITY,
                  CTBW_SHAPE        LIKE /BIC/PZ_CTBWOBJ-/BIC/ZSHAPE,
                  CTBW_SIZE         LIKE /BIC/PZ_CTBWOBJ-/BIC/ZSIZE,
                  CTBW_VARIANT      LIKE /BIC/PZ_CTBWOBJ-/BIC/ZVARIANT,
                  CTBW_VOLUME       LIKE /BIC/PZ_CTBWOBJ-/BIC/ZVOLUME,
            END OF IT_CTBW.
    *These deletions are already included in the InfoPackage:
    *Keep only PackMat Finished Materials SOrders:
    *DELETE DATA_PACKAGE
      WHERE MATL_GROUP(5) NE 'PM-FM'.
    *Keep only open SOrders:
    *DELETE DATA_PACKAGE
       where /BIC/ZOSTATUS = 'C'.
    *Keep only MC and CF SOrders:
    *DELETE DATA_PACKAGE
       where DOC_TYPE NE 'ZOR6' AND DOC_TYPE NE 'ZOR9'.
    *Keep only non rejected SOrders:
    DELETE DATA_PACKAGE
        where REASON_REJ IS NOT INITIAL.
              Exclude list of statistical Item Categories (not billing
              relevant).
    DELETE DATA_PACKAGE WHERE
       ITEM_CATEG = 'ZPC1' or     
       ITEM_CATEG = 'ZPC2' or     
       ITEM_CATEG = 'ZPC3' or
       ITEM_CATEG = 'ZPC4' or
       ITEM_CATEG = 'ZTAF' or     
       ITEM_CATEG = 'ZTAE' or     
       ITEM_CATEG = 'ZTAG' or     
       ITEM_CATEG = 'ZTSV'.
      REFRESH: T_DATA_PAK,T_DATA_PAK1,
               IT_INVOICES, IT_CTBW.
      T_DATA_PAK[] = DATA_PACKAGE[].
      T_DATA_PAK1[] = DATA_PACKAGE[].
      DATA : COUNT1 LIKE SY-TABIX.
      DESCRIBE TABLE T_DATA_PAK1 LINES COUNT1.
      IF NOT COUNT1 IS INITIAL.
       Selection for Invoice Items    ***********
    SORT T_DATA_PAK1 BY /BIC/ZSORDDORD /BIC/ZSORDIORD.
       SELECT   /BIC/ZSORDDORD /BIC/ZSORDIORD /BIC/ZBILLDINV /BIC/ZBILLIINV
                INV_QTY        NETVAL_INV
                /BIC/ZBRAND    /BIC/ZBRANDOWN /BIC/ZDESGNOWN /BIC/ZFLAGBKLG
                /BIC/ZNOCOLORS /BIC/ZNOSPCLRS /BIC/ZOPENFCTY /BIC/ZPACKSYST
                /BIC/ZPPG      /BIC/ZAPPLICAT /BIC/ZPAPERGDE /BIC/ZPRINTMTH
                /BIC/ZQUALITY  /BIC/ZSHAPE    /BIC/ZSIZE     /BIC/ZVARIANT
                /BIC/ZVOLUME
           INTO  TABLE IT_INVOICES
           FROM /BIC/AZO_PMI100
           FOR ALL ENTRIES IN T_DATA_PAK1
           WHERE /BIC/ZSORDDORD   = T_DATA_PAK1-/BIC/ZSORDDORD AND
                 /BIC/ZSORDIORD  = T_DATA_PAK1-/BIC/ZSORDIORD AND
    051114: Exclude pro forma invoices from selection.
                    ( bill_type NE 'ZPF1' AND bill_type NE 'ZPF2' AND
                      bill_type NE 'ZPF3').
        SORT: IT_INVOICES BY INV_SALES_ORD   INV_SALES_ITEM.
        DELETE IT_INVOICES WHERE ZQUALITY IS INITIAL.
        REFRESH: T_DATA_PAK1.
      LOOP AT T_DATA_PAK.
         CLEAR: T_DATA_PAK1, IV_INVQTY, IV_INVVAL, IT_INVOICES, IT_CTBW.
         MOVE-CORRESPONDING T_DATA_PAK TO T_DATA_PAK1.
         loop at IT_INVOICES
              where INV_SALES_ORD  = T_DATA_PAK-/BIC/ZSORDDORD
                and INV_SALES_ITEM = T_DATA_PAK-/BIC/ZSORDIORD.
            IV_INVQTY = IV_INVQTY + IT_INVOICES-INV_QTY.
            IV_INVVAL = IV_INVVAL + IT_INVOICES-NETVAL_INV.
         endloop.
            Use req. del. date if not conf. del. date is available
            Changes being made to use conf. del. date instead of
            req. del. date.   This is not always filled in.
         IF T_DATA_PAK1-/BIC/ZDATESCHL IS INITIAL.
           MOVE T_DATA_PAK1-DSDEL_DATE to T_DATA_PAK1-/BIC/ZDATESCHL.
         ENDIF.
         move:
             IV_INVQTY                  to T_DATA_PAK1-INV_QTY,
             IV_INVVAL                  to T_DATA_PAK1-NETVAL_INV,
             IT_INVOICES-ZBRAND         to T_DATA_PAK1-/BIC/ZBRAND,
             IT_INVOICES-ZBRANDOWN      to T_DATA_PAK1-/BIC/ZBRANDOWN,
             IT_INVOICES-ZDESGNOWN      to T_DATA_PAK1-/BIC/ZDESGNOWN,
             IT_INVOICES-ZFLAGBKLG      to T_DATA_PAK1-/BIC/ZFLAGBKLG,
             IT_INVOICES-ZNOCOLORS      to T_DATA_PAK1-/BIC/ZNOCOLORS,
             IT_INVOICES-ZNOSPCLRS      to T_DATA_PAK1-/BIC/ZNOSPCLRS,
             IT_INVOICES-ZOPENFCTY      to T_DATA_PAK1-/BIC/ZOPENFCTY,
             IT_INVOICES-ZPACKSYST      to T_DATA_PAK1-/BIC/ZPACKSYST,
             IT_INVOICES-ZPPG           to T_DATA_PAK1-/BIC/ZPPG,
             IT_INVOICES-ZAPPLICAT      to T_DATA_PAK1-/BIC/ZAPPLICAT,
             IT_INVOICES-ZPAPERGDE      to T_DATA_PAK1-/BIC/ZPAPERGDE,
             IT_INVOICES-ZPRINTMTH      to T_DATA_PAK1-/BIC/ZPRINTMTH,
             IT_INVOICES-ZQUALITY       to T_DATA_PAK1-/BIC/ZQUALITY,
             IT_INVOICES-ZSHAPE         to T_DATA_PAK1-/BIC/ZSHAPE,
             IT_INVOICES-ZSIZE          to T_DATA_PAK1-/BIC/ZSIZE,
             IT_INVOICES-ZVARIANT       to T_DATA_PAK1-/BIC/ZVARIANT,
             IT_INVOICES-ZVOLUME        to T_DATA_PAK1-/BIC/ZVOLUME.
         if IT_INVOICES-ZFLAGBKLG is initial.
            SELECT /BIC/ZSORDDORD
                   /BIC/ZSORDIORD
                   /BIC/ZBRAND
                   /BIC/ZBRANDOWN
                   /BIC/ZDESGNOWN
                   /BIC/ZNOCOLORS
                   /BIC/ZNOSPCLRS
                   /BIC/C_APM_006
                   /BIC/ZPACKSYST
                   /BIC/ZPAPERGDE
                   /BIC/ZPPG
                   /BIC/ZPRINTMTH
                   /BIC/ZQUALITY
                   /BIC/ZSHAPE
                   /BIC/ZSIZE
                   /BIC/ZVARIANT
                   /BIC/ZVOLUME
           INTO  TABLE IT_CTBW
           FROM /BIC/PZ_CTBWOBJ
           FOR ALL ENTRIES IN T_DATA_PAK1
           WHERE /BIC/ZSORDDORD   = T_DATA_PAK1-/BIC/ZSORDDORD AND
                 /BIC/ZSORDIORD  =  T_DATA_PAK1-/BIC/ZSORDIORD AND
                 OBJVERS = 'A'.
        SORT: IT_CTBW BY CTBW_SALES_ORD   CTBW_SALES_ITEM.
        DELETE IT_CTBW WHERE CTBW_QUALITY IS INITIAL.
         REFRESH: T_DATA_PAK1.
         endif.
         loop at IT_CTBW
            where CTBW_SALES_ORD  = T_DATA_PAK-/BIC/ZSORDDORD
            and CTBW_SALES_ITEM = T_DATA_PAK-/BIC/ZSORDIORD.
         endloop.
           move:
             IT_CTBW-CTBW_BRAND         to T_DATA_PAK1-/BIC/ZBRAND,
             IT_CTBW-CTBW_BRANDOWN      to T_DATA_PAK1-/BIC/ZBRANDOWN,
             IT_CTBW-CTBW_DESGNOWN      to T_DATA_PAK1-/BIC/ZDESGNOWN,
             IT_CTBW-CTBW_NOCOLORS      to T_DATA_PAK1-/BIC/ZNOCOLORS,
             IT_CTBW-CTBW_NOSPCLRS      to T_DATA_PAK1-/BIC/ZNOSPCLRS,
             IT_CTBW-CTBW_PACKSYST      to T_DATA_PAK1-/BIC/ZPACKSYST,
             IT_CTBW-CTBW_PPG           to T_DATA_PAK1-/BIC/ZPPG,
             IT_CTBW-CTBW_PAPERGDE      to T_DATA_PAK1-/BIC/ZPAPERGDE,
             IT_CTBW-CTBW_PRINTMTH      to T_DATA_PAK1-/BIC/ZPRINTMTH,
             IT_CTBW-CTBW_QUALITY       to T_DATA_PAK1-/BIC/ZQUALITY,
             IT_CTBW-CTBW_SHAPE         to T_DATA_PAK1-/BIC/ZSHAPE,
             IT_CTBW-CTBW_SIZE          to T_DATA_PAK1-/BIC/ZSIZE,
             IT_CTBW-CTBW_VARIANT       to T_DATA_PAK1-/BIC/ZVARIANT,
             IT_CTBW-CTBW_VOLUME        to T_DATA_PAK1-/BIC/ZVOLUME.
           if T_DATA_PAK1-MATERIAL+0(1) eq 'A'.
              move T_DATA_PAK1-MATERIAL+1(4) to T_DATA_PAK1-/BIC/ZQUALITY.
              move T_DATA_PAK1-MATERIAL+5(3) to T_DATA_PAK1-/BIC/ZSIZE.
              move T_DATA_PAK1-MATERIAL+8(2) to T_DATA_PAK1-/BIC/ZVARIANT.
           endif.
          APPEND T_DATA_PAK1.
         ENDLOOP.
      ENDIF.
      IF SY-SUBRC EQ 0.
        DATA_PACKAGE[] = T_DATA_PAK1[].
        ABORT = 0.
      ENDIF.
      REFRESH: T_DATA_PAK, T_DATA_PAK1.
      REFRESH: IT_INVOICES, IT_CTBW.
      FREE: T_DATA_PAK,T_DATA_PAK1.
      FREE: IT_INVOICES, IT_CTBW.
    if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    $$ end of routine - insert your code only before this line         -
    ENDFORM.
    Edited by: John Lucky on Jan 25, 2008 10:58 PM

    Hi,
    Why is the hard coding of "breakpoint" done.
    Try removing it.
    Regards
    Merlin.

  • New Mac Pro Won't Work With Old Studio Display

    Hi,
    Just got a new Mac Pro Desktop 8-core only to find out my old Apple Studio Display 17" won't work without a $100 adapter. We're thinking of just buying a new monitor instead. My question is will other brands now work direclty with the new Macs - or would they also need adapters? Is a DVI port the same as a DVI-D port?
    Thanks for any info...

    Thanks so much for the response, Malcolm, I really appreciate it! My old monitor is an LCD, but what we decided to do is since the adapter we found (and HAD to get from Apple directly) was going to cost $99!! We went and bought a brand new Dell monitor instead for $238 - it's fully compatible with the new Mac, and it's 23" (my old one was a 17") - so all's good!
    Thanks again,
    Jacki

  • Users can Edit over Web but not iCal

    My iCal server was running fine for months. My Groups had calendars enabled and the members of that group saw those calendars in iCal under Accounts->Delegation. I don't know when this happened but now when I add new members to the group, they can't see the group name in their iCal Delegation. They can edit the calendar via the web, but iCal can't see it at all. The users who had delegation set up properly for their group calendars have not been affected for those old calendars, but when I that user to another calendar-enabled group, that calendar does not show up in the delegation list.
    I can see this work by viewing the settings in Safari.
    I have a user named 'stupid' and a group named 'test'.
    'Stupid' has calendaring enabled. 'Test' has wiki, blog, and calendaring enabled. Group members only are able to read and write to these services. 'Stupid' is the only member of the group 'test', and that is 'stupid's only group.
    When I go to look at the principles in Safari (http://server:8008/principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/)
    I get this:
    Directory Information
    Directory GUID: 058167af-ace8-519a-ac3d-e166498db024
    Realm: /Search
    Principal Information
    GUID: 35E60BF4-2915-482A-805F-CC72AF5058FF
    Record type: groups
    Short name: test
    Full name: test
    Principal UID: 35E60BF4-2915-482A-805F-CC72AF5058FF
    Principal URL: /principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/
    Alternate URIs:
    -> /principals/groups/test/
    Group members:
    -> (users) stupid
    Group memberships:
    Calendar homes:
    -> /calendars/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF
    Calendar user addresses:
    -> https://classics.uc.edu:8443/principals/groups/test/
    -> https://classics.uc.edu:8443/principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/
    -> /principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/
    -> http://classics.uc.edu:8008/principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/
    -> http://classics.uc.edu:8008/principals/groups/test/
    -> urn:uuid:35E60BF4-2915-482A-805F-CC72AF5058FF
    -> /principals/groups/test/
    So the iCal server sees 'stupid' as a member. But when I look at the proxy-write (http://server:8008/principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/calendar-proxy-write/) I get:
    Directory Information
    Directory GUID: 058167af-ace8-519a-ac3d-e166498db024
    Realm: /Search
    Parent Principal Information
    GUID: 35E60BF4-2915-482A-805F-CC72AF5058FF
    Record type: groups
    Short name: test
    Full name: test
    Principal UID: 35E60BF4-2915-482A-805F-CC72AF5058FF
    Principal URL: /principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/
    Proxy Principal Information
    Principal UID: 35E60BF4-2915-482A-805F-CC72AF5058FF#calendar-proxy-write
    Principal URL: /principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/calendar-proxy-write/
    Alternate URIs:
    -> /principals/groups/test/calendar-proxy-write/
    Group members (Editable):
    Group memberships:
    Same thing in proxy-read. So while the iCal server does see 'stupid' as a member of 'test', it isn't really.
    Something similar shows up for older groups. When I click on proxy-write for an older group I can see all of the members that were there months ago, but newly added members (that is users that have been on the server for at least a year but are new to the group) don't show up in the list.
    When I go to iCal and add 'stupid' as an account I can see and edit 'stupid's calendar, but nothing shows up under delegation.
    Service Access allows all users and groups to the iCal service.
    I have stopped and restarted the iCal service and the server itself several times. I have also checked for users in both OD and Local. All users are OD only.
    The only thing I can get from my iCal error log is:
    2008-08-26 22:21:32-0400 [-] [caldav-8009] [AMP,client] Unauthenticated users not enabled with the 'calendar' SACL
    2008-08-26 22:21:32-0400 [-] [caldav-8009] [AMP,client] Allow proxy: user 'wikiserver' as 'test'
    2008-08-26 22:21:32-0400 [-] [caldav-8009] [AMP,client] REPORT /calendars/groups/test/calendar/ HTTP/1.1
    2008-08-26 22:22:02-0400 [-] [caldav-8009] [AMP,client] Unauthenticated users not enabled with the 'calendar' SACL
    2008-08-26 22:22:02-0400 [-] [caldav-8009] [AMP,client] Allow proxy: user 'wikiserver' as 'test'
    2008-08-26 22:22:02-0400 [-] [caldav-8009] [AMP,client] REPORT /calendars/groups/test/calendar/ HTTP/1.1
    2008-08-26 22:22:15-0400 [-] [caldav-8009] [AMP,client] PROPFIND /calendars/_uids_/7FD3BB44-70E4-4AE1-9AA0-A83D278F8544/ HTTP/1.1
    2008-08-26 22:22:15-0400 [-] [caldav-8009] [AMP,client] PROPFIND /calendars/_uids_/7FD3BB44-70E4-4AE1-9AA0-A83D278F8544/inbox/ HTTP/1.1
    2008-08-26 22:22:33-0400 [-] [caldav-8009] [AMP,client] Unauthenticated users not enabled with the 'calendar' SACL
    2008-08-26 22:22:33-0400 [-] [caldav-8009] [AMP,client] Allow proxy: user 'wikiserver' as 'test'
    2008-08-26 22:22:33-0400 [-] [caldav-8009] [AMP,client] REPORT /calendars/groups/test/calendar/ HTTP/1.1
    and this is the last bit of my access log:
    10.138.1.222 - stupid [26/Aug/2008:22:23:40 -0400] "PROPFIND /principals/_uids_/C6CF9F8A-3532-4D81-A4B7-823FC0262AA8/ HTTP/1.1" 207 1188 "-" "DAVKit/2.0 (10.5.4; wrbt) iCal 3.0.4" [16.9 ms]
    10.138.1.222 - stupid [26/Aug/2008:22:23:40 -0400] "PROPFIND /principals/_uids_/C6CF9F8A-3532-4D81-A4B7-823FC0262AA8/ HTTP/1.1" 207 432 "-" "DAVKit/2.0 (10.5.4; wrbt) iCal 3.0.4" [11.5 ms]
    10.138.1.222 - stupid [26/Aug/2008:22:23:40 -0400] "PROPFIND /principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/ HTTP/1.1" 207 321 "-" "DAVKit/2.0 (10.5.4; wrbt) iCal 3.0.4" [8.8 ms]
    10.138.1.222 - stupid [26/Aug/2008:22:23:40 -0400] "PROPFIND /principals/_uids_/C6CF9F8A-3532-4D81-A4B7-823FC0262AA8/ HTTP/1.1" 207 1188 "-" "DAVKit/2.0 (10.5.4; wrbt) iCal 3.0.4" [10.6 ms]
    10.138.1.222 - stupid [26/Aug/2008:22:23:40 -0400] "PROPFIND /principals/_uids_/C6CF9F8A-3532-4D81-A4B7-823FC0262AA8/ HTTP/1.1" 207 432 "-" "DAVKit/2.0 (10.5.4; wrbt) iCal 3.0.4" [8.9 ms]
    10.138.1.222 - stupid [26/Aug/2008:22:23:40 -0400] "PROPFIND /principals/_uids_/35E60BF4-2915-482A-805F-CC72AF5058FF/ HTTP/1.1" 207 321 "-" "DAVKit/2.0 (10.5.4; wrbt) iCal 3.0.4" [8.6 ms]
    10.138.1.254 - - [26/Aug/2008:22:24:03 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 401 141 "-" "-" [3.7 ms]
    10.138.1.254 - "(sudoers)wikiserver as (groups)test" [26/Aug/2008:22:24:03 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 207 4361 "-" "-" [107.0 ms]
    10.138.1.254 - - [26/Aug/2008:22:24:34 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 401 141 "-" "-" [4.1 ms]
    10.138.1.254 - "(sudoers)wikiserver as (groups)test" [26/Aug/2008:22:24:34 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 207 4361 "-" "-" [118.1 ms]
    10.138.1.254 - - [26/Aug/2008:22:25:04 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 401 141 "-" "-" [4.5 ms]
    10.138.1.254 - "(sudoers)wikiserver as (groups)test" [26/Aug/2008:22:25:04 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 207 4361 "-" "-" [123.6 ms]
    10.138.1.254 - - [26/Aug/2008:22:25:34 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 401 141 "-" "-" [4.0 ms]
    10.138.1.254 - "(sudoers)wikiserver as (groups)test" [26/Aug/2008:22:25:34 -0400] "REPORT /calendars/groups/test/calendar/ HTTP/1.1" 207 4361 "-" "-" [115.2 ms]
    So if Workgroup Manager doesn't edit the iCal sql tables properly, what else can I use?

    Making a user a member of a group does not automatically make them a delegate of that group. They are members in the sense that they have full read-write access to the group data, but they won't have that group show up as a delegate.
    To make a user a delegate of a group, someone who is a member of that group needs to create a new account in iCal and set the server account URL to point to the groups principal path (/principals/groups/testgroup/ as the path in the URL) then they should add the user as a delegate via the iCal preferences panel for that account.

  • Front Row on external monitor?

    I have a Dell 2407WFP connected to my MBP. Is there anyway to get Front Row to display on the Dell monitor instead of the MBP? I did some searching, but haven't found a good answer. I want my MBP to be the primary display, not the Dell.

    ^bump... anyone?

  • Feature request (need this)

    got my playbook.  love it.  go canada.
    now here are the features i need to improve usability.
    allow me to do a text find in browsers.  (ctrl-f)
    allow me to move the cursor left right up and down by placing one finger in the bottom left bezel and gesturing with my right hand  left right up down.  its impossible to point to the character i want to insert cursor at.  virtual trackpad gesture
    allow me to press and hold the number toggle key to let me enter a number.  automatically switch back to character entry when i release the number toggle key.
    same as above for symbol toggle key
    allow me to create folders on the home screen to organize my icons
    allow me to create custom banner groups (favorite, media, all, etc)

    also...
    * allow me to rotate and lock orientation by holding my right finger on the right bezel and making a quarter circle with my left finger (clockwise or counter clockwise). so need this when reading kobo and roll over to one side. landscape lock in top bar is too many swipes
    * allow me to press del key instead of backspace key (delete right char instead of left) by touching left bezel while clicking backspace key.

  • Have more space between images used as buttons

    Hi again,
    Would like to see if there's some html properties to have more space beetwen buttons based on image:
    i've used: save.gif and del.gif instead of the standard template buttons.
    Would be nice to have the 2 images not so near.
    thanx a lot

    Hi,
    You could go to Edit Button Item and insert some HTML white spaces as Post Element Text. For example, if you have 2 buttons, do it at left button.
    Roger

  • PO delivery date vs Inbound delivery date

    Hi,
    I'm using message number M7-254 and set it as Error message. When I do GR w/ ref to inbound delivery the message M7-254 still considers/reads the PO del date instead of inbound del date during GR. Can it be modified to read the del date from inbound when there's inbound del created for the PO?
    Or if not, can you advise another system message that would best suit our customer's requirement where system blocks GR if posting date not equal inbound delivery date?
    Thanks in advance.

    Hi Marianne,
    A quick thought:
    Use the BADI - ME_PROCESS_PO_CUST & the method - PROCESS_SCHEDULE to copy the delivery date as per your inbound document to the field - Latest GR Date in Delivery tab of the Item details section.
    Then in OMCQ flag the message M7 163 message as E. This would ensure that the system will not allow GR to be done after this date.
    Hope the above helps.
    Regards,
    Vivek

  • Yahoo email upgrades from classic - or is it spam?

    I have received emails purporting to come from SKY - but I'm suspicious. The email is aski8ng me to upgrade to the new  email version from Classic. Is it spam?

    I received an identical email today as below: "Hello My email address)The Classic version of your layout will be replaced by our new version on 26th JUNE 2015. So it's time to upgrade, before you lose your email access.
    When you upgrade your E-mail
    Your service won't be affected and you'll keep all your old contacts, folders and messages. Plus you'll get:Faster E-mailThe latest spam protectionUnlimited E-mail storageHow you can upgrade your account
    sky.com/en-GB/update/layout/ (It gave this link but with http etc at the beginning)
     Thanks for choosing us" Scam and Phishing emails that infect your computers wil often fail to address you by name and use the term Hello as this one does. It is also worth clicking on reply so that you can see who has sent the email. In this case it was shown as coming from [email protected] I also contacted SKY who confirmed that they had not sent me any emails today. I have marked it on my SKY webmail as spam so that if I receive another one then it will go straight into my Spam folder. Please be wary of these scammers. 

  • Hp control zone trackpad incredibly glitchy

    Hi. I recently bough an HP Envy m6-n012dx laptop. Not long after using it the Control Zone Trackpad began to be incredibly glitchy. Everytime i would move the mouse, it would jump randomly across the screen. The left side of the track pad that is supposed to allow you to switch between your open apps sometimes stops working then starts to work again then would stop working for no reason. Same with the right side that shows the start button, search button, settings button etc. To make things worse; sometimes the mouse would begin to move slowly across the screen without me even touching the track pad. I try downloading the most recent synaptics driver and afterwards the trackpad worked for a little while, then went haywire again. Not only is the trackpad messed up but sometimes my touch screen doesnt work. For instance, my touch screen currently isnt working as im typing this. What do i have to do to solve the problem, because i really like this laptop when everything is working fine 

    Attention, HP Support Agents. I have the same model HP Envy m6-n012dx laptop that I purchased less than 2 weeks ago from Best Buy and I'm experiencing the same issues. I've performed a hard reset of the laptop, a system restore to the day I purchased it, updated synaptics drivers, uninstalled/reinstalled drivers, BIOS update, changed sensitivity settings on touchpad - but it all leads to the same result. The cursor jumps around and behaves erratically on the screen, even if you reboot it and start using it again, after about 15-20 minutes (or sooner) it starts acting up again.  What is the solution or verdict on this issue, as it's easy to see that there are literally hundreds of consumers that have purchased HP Envy laptops with a Control Zone touchpad from Synaptics having this exact same issue? Is there a way that someone at HP can grab one of their laptops, recreate the issue, troubleshoot and provide a solution for it?? I'm sure I echo the same sentiment as most of these other forum subscribers when I say that I feel like I'm wasting my time here. I'm asking for help and either getting an auto-response "update your drivers" answer, or not receiving help at all. I'm NOT purchasing a mouse as an alternative solution. Either there's a fix for this, or I'll return my laptop to Best Buy, as I'm still within their 15-day return policy window, and purchase an ASUS or DELL Laptop instead. I've never experienced such a huge annoyance with an HP product as this and from what I've seen on all of my forum searches, HP has no solution for it. I've also spoken with HP Total Care, and guess what their solution was? Take it back to Best Buy and get a replacement HP Envy .... seriously?  Please provide an update as soon as possible. This has gone on long enough.  

  • When was iBook G4 last updated?

    Hi all,
    I have a 12" G3 iBook that is almost 5 years old and would love to update to a new 14" G4 iBook. I was just curious as to when the iBook line was last updated and a guesstimate on when the next update will be. I know that would be speculation so just an approximate time is fine.
    Thom

    The current iBook 14-inch was introduced on July 26, 2005:
    http://everymac.com/systems/apple/ibook/stats/ibookg4_1.4214.html
    It is assured that every new Mac that is introduced from here on will have an Intel processor. It is likely that we are seeing the end of the line for iBooks. They will have a new name that includes "Mac," according to the announcement at the Macworld keynote address. (PowerBooks are being replaced with the MacBook Pro.) The entire Mac line is to be converted to Intel processors by the end of 2006, again according to that keynote address.
    Classic (OS 9 emulation and applications) will no longer be supported in any Mac with an Intel processor. I don't know if that matters to you, but thought I would let you know.

  • Identifying Alt key press event

    Hi,
    I have a button on the stage/UI on click of which I need to
    Lock the PC. I would not want the user to use the keyboard shortcut
    'Ctrl + Alt + Del' but instead click the button to Lock the Screen.
    I am finding it tough since the Alt key has no Key Code in the
    Appendix.
    Kindly help me break through.

    hii francois
    i have tried to go to the page but it givesme the following error
    alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason." Your browser is completely ignoring the <APPLET> tag
    can u hlep me with this ??

  • Selected default is not recogized when I want to print from stored photos

    I have 2 printers with wireless connections, connected to my Dell 1737 laptop 64bit operating system. Printer #1 is  a Dell Model 305 and Printer #2 is a new HP ENVY5530 all in one. When I select the HP printer as the default printer it will not respond when I try to print from the pictures folders I have stored in the computers hardrive, it will default to the Dell 305 instead. I have elimated the Fire Wall as the problem. Note: Otherwise It does respond if designated for other tasks.
    This question was solved.
    View Solution.

    Hello @REB54,
    Welcome to the HP Forums!
    I understand your Envy 5530 is not letting you set as default on your computer. I will do my best to assist you! Please follow this entire thread from @SuperMario1 on: Re: HP1510 0x00000709 can't set as default printer.
    Please post your results, as I will be looking forward to hearing from you. Have a great night!
    I worked on behalf of HP.

  • Cheaper in the Store than online?

    I was thinking about getting the MacBook Pro... Is it cheaper to get it at the Apple Store or is it the same price as the online store?

    MacMall.com may be a little bit cheeper but the employee at the Apple Store here told me he would match it. I just purchased a new MacBook Pro about two weeks ago. My sales rep turned out to be the store manager. I didn't know this and when he explained to me that no car charger are available yet and that the cellular modem for the ExpressCard 34 that they brag about had not yet been invented (or at least available) and that none of my classic applications would work I told him to forget the sale, I was just going to order a Dell Computer instead. He suddenly offered me a free memory upgrade and a free mac.com subscription.

Maybe you are looking for