Delete Routing CA03

Hi All,
I need to delete the routing data from transaction CA02. If any one know any FM it will be very helpful to me.
Thanks
Subhankar

Hi,
In the CA02 screen give material & plant - select operations tab
in that select operations what ever you want than delete  icon
after that  go to header tab in the same task list  goto first tab in that screen  you will get delete option over there
hope you resolve your issue...

Similar Messages

  • Delete routing

    Dear all,
    can any one please show me how to delete routing permenently.
    thanks and regards
    irfan

    Irfan,
    I will assume that you have no archive requirements.
    If your Routings have been tagged for deletion.
    CA98
    Enter matl number, or asterisk for multiple
    Enter plant
    Enter TL type 'N'
    Select objects deleted online
    Optionally select key date
    Optionally select log
    Execute
    If you don't want to tag the routings for deletion beforehand (be very careful here!) then select 'complete task lists'. 
    Once routings are deleted using this transaction, they are gone forever.
    Rgds,
    DB49

  • How to delete routing history from MAPL table ?

    Hi,
    I have one typical case: for one routing entry is available in MAPL table but not in table: PLPO & PLKO. Now user want to change UOM in MM and routing history is restricting him for changing the same.
    I tried to delete the history with Tac: CA98 with correct selection criteria and key date but it's saying no task list exist. Also used ca99 but that also didn't work and say the same thing as above. In CA02 & CA03 also, it's not showing the data.
    I created one more routing for the same material and than deleted with CA98. It worked and entries were deleted from all the three table.
    Can anybody suggest how to delete history from MAPL table ?
    Thanks & regards
    Edited by: VINAY TAILOR on Jan 22, 2008 8:00 AM

    The solution is: there is no T code available for removing the history only from MAPL table. Infact, it's very strange case and we are also not able to find out how it happened.
    When we asked user to repeat the procedure, everything work well and no such repetation of problem.
    Only solution could be, developing special program which can remove the history. This is just for your information and thanks for putting your efforts & time.
    I am rewarding points to you all for the same.
    Vinay.

  • Delete routing in ca98

    Hello,
    we need to change the UoM in one of our materials, but we get the message "Routings already exist that are assigned to the material."
    So I used transaction CA98 and tried to delete the routing. We checked  "Objects deleted online". The result screen show the task list under "List of Reorganized Task Lists".
    But after executing CA98, the routing still seems to be there and we also get the error message when trying to change the UoM in the material master.
    Any suggestions?
    Thanks
    Anne

    Hi,
    I don't know how to upload screenshots here?
    But here are my table entries from table PLKO:
    Type  Group         GrC Counter Valid From      Change Number   DelD
    N       50000173   1       1            03/01/2000     
    N       50000173   1       2            01/18/2010     500000498          X
    N       50000173   1       3            17/07/2009     500000496          X
    N       50000173   1       4            01/05/2009     500000458
    N       50000173   1       5            12/15/2008     500000457          X
    N       50000173   2       3            01/18/2010     500000498          X
    Thanks
    Anne

  • Restore Deleted Routing Group (CA02)

    Hi,
    I am trying to restore a Routing Group which was accidentally deleted by a user in transaction CA02.
    I can see that the data is in tables PLPO and PLKO, but the field LOEKZ in PLKO is marked with "X".
    Do you know any transaction or any way to recover this Group and its content?
    Thank You,
    Sebastián Ligueros
    Alynea-MVC

    Hi,
    I don't think it possible to restore
    Try deleting the it from CA98 transaction
    This will delete entries in all related tables like
    MAPL, PLKO,PLAS and PLPO
    And create new routing group.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Jul 31, 2008 10:06 AM

  • Report which displays operation allocation in Routing CA03

    Hi Experts,
    I want to display a report showing operation allocation for each BOM components in the routing transaction CA03. The selection screen fields are Bill of Material header, Group, Group Counter, Plant, BOM, and alternative BOM. The output of the report should show all of these fields and Phantom item indicator, BOM component, component quantity, component unit of measure, item category, Operation/Activity Number (Operation Allocation), & material description.
    Has anyone worked on similar kind of reports before. Please send me some inputs or code which helps me to write a report program for this.
    Thanks
    Ricky

    I have written a simple ALV report to list the routings. It is working fine for my purpose.
    If somebody can suggest any improvement thanks in advance.
    Code Listing----
    REPORT  YROUTING.
    TABLES: MARA, PLKO, PLPO, MAPL, CRHD, MARC.
    TYPES: BEGIN OF ITAB,
      KTEXT LIKE PLKO-KTEXT, "Task list description
      MATNR LIKE MAPL-MATNR,
      PLNNR LIKE MAPL-PLNNR,
      VORNR LIKE PLPO-VORNR,
      STEUS LIKE PLPO-STEUS,
      WERKS LIKE PLPO-WERKS,
      ARBPL LIKE CRHD-ARBPL,
      LTXA1 LIKE PLPO-LTXA1,
      BMSCH LIKE PLPO-BMSCH,
      MEINH LIKE PLPO-MEINH,
      VGW01 LIKE PLPO-VGW01,
      VGE01 LIKE PLPO-VGE01,
      VGW02 LIKE PLPO-VGW02,
      VGE02 LIKE PLPO-VGE02,
      VGW03 LIKE PLPO-VGW03,
      VGE03 LIKE PLPO-VGE03,
      CKSELKZ LIKE PLPO-CKSELKZ,
      END OF ITAB.
    DATA: ITAB TYPE ITAB OCCURS 0 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK BLK1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: MATNR FOR MARA-MATNR, "default 513010005G30,
                    WERKS FOR MARC-WERKS,
                    ARBPL FOR CRHD-ARBPL.
    SELECTION-SCREEN END OF BLOCK BLK1.
    *SELECT PLKOKTEXT MAPLMATNR MAPLPLNAL PLPOVORNR PLPOSTEUS PLPOWERKS PLPOLTXA1 PLPOBMSCH PLPOMEINH PLPOVGW01 PLPOVGE01 PLPOVGW02 PLPOVGE02 PLPOVGW03 PLPOVGE03 PLPOCKSELKZ
    SELECT PLKOKTEXT MAPLMATNR MAPLPLNNR PLPOVORNR PLPOSTEUS PLPOWERKS CRHDARBPL PLPOLTXA1 PLPOBMSCH PLPOMEINH PLPOVGW01 PLPOVGE01 PLPOVGW02 PLPOVGE02 PLPOVGW03 PLPOVGE03 PLPO~CKSELKZ
    INTO CORRESPONDING FIELDS OF TABLE ITAB
    FROM MAPL
    INNER JOIN PLKO ON PLKOPLNNR = MAPLPLNNR
    INNER JOIN PLPO ON MAPLPLNNR = PLPOPLNNR
    INNER JOIN CRHD ON PLPOARBID = CRHDOBJID
    WHERE MAPL~MATNR IN MATNR
          AND PLPO~WERKS IN WERKS
          AND CRHD~ARBPL IN ARBPL
          AND MAPL~PLNTY = 'N'
    ORDER BY MAPL~MATNR.
    TYPE-POOLS : SLIS.
    DATA : AFIELD TYPE SLIS_FIELDCAT_ALV.
    DATA : COUNT TYPE I.
    DATA : FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           LS_FTCAT TYPE LVC_S_FCAT,
           SORTCAT TYPE SLIS_T_SORTINFO_ALV,
           SORTCAT_LN  LIKE LINE OF SORTCAT,
           EVENTCAT             TYPE SLIS_T_EVENT,
           EVENTCAT_LN          LIKE LINE OF EVENTCAT,
           LAYOUT_IN            TYPE SLIS_LAYOUT_ALV,
           LAYOUT_IN1           TYPE SLIS_LAYOUT_ALV.
    AFIELD-COL_POS = 1.
    AFIELD-FIELDNAME = 'MATNR'.
    AFIELD-SELTEXT_L = 'Material'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 2.
    AFIELD-FIELDNAME = 'KTEXT'.
    AFIELD-SELTEXT_L = 'Matl.Desc'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 3.
    AFIELD-FIELDNAME = 'WERKS'.
    AFIELD-SELTEXT_L = 'Plant'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 4.
    AFIELD-FIELDNAME = 'STEUS'.
    AFIELD-SELTEXT_L = 'Ctrl.Key'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 5.
    AFIELD-FIELDNAME = 'LTXA1'.
    AFIELD-SELTEXT_L = 'Operation Desc'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 6.
    AFIELD-FIELDNAME = 'BMSCH'.
    AFIELD-SELTEXT_L = 'Base Qty'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 7.
    AFIELD-FIELDNAME = 'VGW01'.
    AFIELD-SELTEXT_L = 'Setup Time'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 8.
    AFIELD-FIELDNAME = 'VGE01'.
    AFIELD-SELTEXT_L = 'Setup UOM'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 9.
    AFIELD-FIELDNAME = 'VGW02'.
    AFIELD-SELTEXT_L = 'Proc.Time'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 10.
    AFIELD-FIELDNAME = 'VGE02'.
    AFIELD-SELTEXT_L = 'Proc.UOM'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 11.
    AFIELD-FIELDNAME = 'PLNNR'.
    AFIELD-SELTEXT_L = 'Group Counter'.
    APPEND AFIELD TO FIELDCAT.
    AFIELD-COL_POS = 12.
    AFIELD-FIELDNAME = 'ARBPL'.
    AFIELD-SELTEXT_L = 'Work Centre'.
    APPEND AFIELD TO FIELDCAT.
    LAYOUT_IN-COLWIDTH_OPTIMIZE   ='X'.
    LAYOUT_IN-ZEBRA               ='X'.
    LAYOUT_IN-GET_SELINFOS        ='X'.
    LAYOUT_IN-CONFIRMATION_PROMPT ='X'.
    LAYOUT_IN-DETAIL_POPUP        ='X'.
    LAYOUT_IN-NO_KEYFIX           =''.
    DATA: GS_VARIANT LIKE DISVARIANT.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        I_CALLBACK_PROGRAM      = 'YROUTING'
        I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
        IT_FIELDCAT             = FIELDCAT
        IT_SORT                 = SORTCAT
        IS_LAYOUT               = LAYOUT_IN
        I_DEFAULT               = 'X'
        I_SAVE                  = 'A'
        I_GRID_TITLE            = ''
        IS_VARIANT              = GS_VARIANT
      TABLES
        T_OUTTAB                = ITAB.
    *******Process Call Back Events (Begin)**************************
    FORM USER_COMMAND USING UCOMM LIKE SY-UCOMM
    SELFIELD TYPE SLIS_SELFIELD.
      READ TABLE ITAB INDEX SELFIELD-TABINDEX.
      CHECK SY-SUBRC = 0.
      CASE UCOMM.
        WHEN '&IC1'.
          CASE SELFIELD-SEL_TAB_FIELD.
           WHEN '1-MATNR'.
             SET PARAMETER ID 'MAT' FIELD ITAB-MATNR.
             SET PARAMETER ID 'WRK' FIELD ITAB-WERKS.
             CALL TRANSACTION 'CA02' AND SKIP FIRST SCREEN.
            WHEN '1-ARBPL'.
              SET PARAMETER ID 'WRK' FIELD ITAB-WERKS.
              SET PARAMETER ID 'AGR' FIELD ITAB-ARBPL.
              CALL TRANSACTION 'CR03' AND SKIP FIRST SCREEN.
             OK_CODE = OK_CONST-ENTER.
          ENDCASE.
      ENDCASE.
    ENDFORM.                    "USER_COMMAND

  • Retrieve operation description(routing) CA03

    Hello experts,
    i'm looking for a function module to retrieve operation's description (visible in CA03). The filed for this data is PLPO-LTXA1 but i'm needing the right keys to access the table knowing that my starting point is a Order Number (AFKO-AUFNR)...
    I need the access sequence to the tables leading to the description or a FM ?
    Thank you in advance !
    Regards

    Hi,
    Use FM 'BAPI_ALM_ORDER_GET_DETAIL' .
    Pass only your prod ord no. aufnr
    Edited by: Azeem Ahmed Matte on Mar 6, 2009 1:22 PM

  • Why does connmand add and delete route to 87.106.208.187?

    Hi
    Each time connmand starts the following is logged:
    connmand[323]: eth0 {add} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[323]: eth0 {del} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>
    I can see that I'm not the only one wondering: https://01.org/jira/browse/CM-657
    The source code does not seem to contain the IP adresse, nor does the IP exist in my /etc or /var/lib/connman/

    Gusar wrote:Is 87.106.208.187 your DNS server? connman by default creates a local DNS server and creates appropriate routes so that it works. If you don't want that, start it with --nodnsproxy
    No, I use dnsmasq on my router, so it's 192.168.0.1
    Some more lines from my log to give some context:
    connmand[313]: eth0 {update} flags 36867 <UP>
    connmand[313]: eth0 {newlink} index 2 address 94:DE:80:78:E9:6A mtu 1500
    connmand[313]: eth0 {newlink} index 2 operstate 2 <DOWN>
    connmand[313]: eth0 {RX} 616 packets 232709 bytes
    connmand[313]: eth0 {TX} 723 packets 133796 bytes
    connmand[313]: eth0 {update} flags 102467 <UP,RUNNING,LOWER_UP>
    connmand[313]: eth0 {newlink} index 2 address 94:DE:80:78:E9:6A mtu 1500
    connmand[313]: eth0 {newlink} index 2 operstate 6 <UP>
    connmand[313]: eth0 {del} route 192.168.0.1 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {del} route 0.0.0.0 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[313]: eth0 {del} address 192.168.0.2/24 label eth0
    connmand[313]: eth0 {del} route 192.168.0.0 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {del} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: Skipping disconnect of carrier, network is connecting.
    connmand[313]: eth0 {del} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} route fe80:: gw :: scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} address 192.168.0.2/24 label eth0 family 2
    connmand[313]: eth0 {add} route 192.168.0.0 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {add} route 192.168.0.1 gw 0.0.0.0 scope 253 <LINK>
    connmand[313]: eth0 {add} route 0.0.0.0 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[313]: eth0 {add} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>
    connmand[313]: eth0 {del} route 87.106.208.187 gw 192.168.0.1 scope 0 <UNIVERSE>

  • Routing Deletion

    Hi Team,
    In CA02, i have set the "Deletion flag" for the routing.
    After setting the deletion flag, in PLKO table DELKZ field is updated but the field LOEKZ is not updated. When the PLKO-LOEKZ  field will be updated?
    What is the difference between these two fields?
    Is the PLKO-LOEKZ field will be automatically updated by the system and the user can not manually set this field?
    Your guidance required
    psk

    Even if you delete online through Routing Overview (by click the trash can button) or by activating deletion flag system won't delete it from the database (meaning tables) it will delete it only when you run transaction code CA98 or CA99.
    CA98 deletes without archiving meaning you won't have backup on tape drive or something.
    CA99 deletes with archiving meaning if  you want the data at a later time after a few years you can have it.
    When you delete it from routing overview you can still get the data from table, it's just business transactions (CA03, CA02) sees it has non-existent. Just in case you want to see what the data was for the deleted routing.
    Let me explain you a little bit about CA98 program.
    1. Using that program you can delete any kind of routing, by any kind I mean, completely active, deletion flag activated, deletion indicator activated from the database tables. When you run this program data will completely and permanently disappear from database tables for that particular routing (PLKO, PLPO and all related tables).
    2. You can use different combinations of selection options on the screen to delete the desired routings, but when you check Deletion flag from the selection options it will only select the routings with deletion flag active and ignore the active routings. Meaning  DELKZ = X only
    3. When you select the radio button Objects deleted online it will delete only the ones which have been deleted from routing overview meaning the routings with LOEKZ = X
    4. When select the radio button complete task list it's not gonna check if LOEKZ = X
    So let me give you an analogy, this is like deleting files from your windows operating system, when you delete a file, it won't immediately delete it from hard drive it will first send it to recycle bin (just in case you change your mind and want to restore it)
    Edited by: Jeevan Sagar on Feb 14, 2012 6:15 PM

  • How To Delete Unwanted Routes in Nokia n8

    how to delete routes on the n8 ovi maps tia
    Solved!
    Go to Solution.

    Wow! Another update today. I'm off to download it now. 
    I can confirm that the delete route with the longpress option is still on the wk50 version.
    Just in case we have confused the OP, you still have the v3.04 that shipped with your phone. I suggest you update to either the V3.06 using sw update or the latest v3.06 beta from betalabs. It is still beta but it works fine on my N8. Apart from being able to longpress to delete you will also be able to download and update street map data directly from your phone without a pc. 
    http://betalabs.nokia.com/apps/ovi-maps-306

  • Material Deletion from Routing Groups-Mass T-code

    Dear Experts
    we have a big task we have to delete Routing assignments from Routing Groups we have around 4000 material codes.
    Is there any mass code to delete Material assignements from Routing group.
    Regards
    sandeep patil

    Hi,
    CWBQM from Mass change
    QSR6.
    Use transaction CA99 - delete task list with archiving, here enter PP_PLAN as the object name
    Also transaction CA98 can be used to delete w/o archiving
    BAPI_ROUTING_PROCESS
    Regards,
    R.Brahmankar

  • Other Tcodes for Routing

    Hello gurus,
    Are there any other Tcodes for routing creation other than CA01?
    Thanks in advance

    Hi ,
         Tcode     Transaktionstext
         CA00     Routing Menu     
         CA01     Create Routing     
         CA02     Change Routing     
         CA03     Display Routing     
         CA21     Create Rate Routing     
         CA22     Change Rate Routing     
         CA23     Display Rate Routing     
         CA31     Create Reference Rate Routing     
         CA32     Change Reference Rate Routing     
         CA33     Display Reference Rate Routing     
         CA60     Changes in Routings/Ref. Op. Sets     
         CA61     Change Documents for Routing     
         CA63     Change documents for rate routings     
         CA90     Use of Ref. Op. Set in Routings     
         CACP     Transfer C tables to routing     
         CANM     Number range maintenance: ROUTING_M     
         CANR     Number range maintenance: ROUTING_R     
         CNN1     Number range maint.: ROUTING_0     
         CO81     Number assignment: routing to order     
         CSCPP     Maint. routing param with materials     
         LDE1     Work Instruction for Routing     
         OKZ4     Routing Control Key     
         OP01     Customizing Routing/Work Center     
         OP49     Matchcode for Routings/Ref. Op. Sets     
         OP4B     Overview variant: Routing     
         OP4D     Overview variant: Rate routing     
         OP4E     Overview variant: Ref. rate routing     
         OP4F     Overview var.:Scheduling of routings     
         OP61     Number range maintenance: ROUTING_3     
         OP62     Number ranges for routings     
         OP87     Maintain Routing/Ref.Op.Set Usage     
         OPGE     Ref. Oper. Set - Rate Routings (PP)     
         OPGG     Work Center - Rate Routings (PP)     
         OPJ7     Maintain Routing Usage     
         OQ49     Routing matchcode     
         QSR6     Delete routings     
         RTGDI     Direct input for routings     
         SBCA     Routing Server Administration     
         SBRAC     Catalog of Routing Attributes     
         SBRRE     Routing Server Reorganization     
         SBRT2     Routing Test     
         VTR2     XSI: Master Data: Routing Info     
    Regards,
    Shyamal

  • Self-Assigned IP via router - no internet access - HELP!

    Hi all,
    I have 10.5.7 leopard installed on my C2D Macbook.
    In the past, I never had any issues connecting to wireless routers with internet connection.
    As of late, I am currently getting 'Self assigned IP address' which does not allow me to connect to the internet. It is connected to the router, but just no internet access. I can see the other Shared computers (Windows PC and mate's macbook pros) but just no web access. And they do not have a problem connecting to the internet.
    I have attempted the following:
    1) Turned on & off Airport.
    2) Deleted network connections and re-created them, rebooted in safe & PRAM modes.
    3) Deleted router Key chain permissions & changed permissions to 'access all'.
    4) Deleted plist files from /Library/Preferences/SystemConfiguration/
    5) Off Firewall & verified against the logs to ensure it is disabled.
    6) Re-installed 10.5.7 combo updates.
    7) Rebooted router, changed router channel, etc. Router is on the latest Netgear firmware.
    8) Assigned IP address and entered the DNS, router values manually in Leopard.
    9) Clicked on renew DHCP lease several thousands to no avail..
    Occasionally, DHCP will work. But once I reboot & awake the mac the internet connection drops and 'Self Assigned IP' happens.
    Does anyone else have any ideas? My only conclusion is that the bug is in Leopard 10.5.7.

    Make sure your router has the latest firmware. If you are out of range of the WiFI or in a marginal area, this error simply indicates that your computer is not able to access an internet router/server and simply assigns the default IP address which is of the form 169.254.xxx.xxx. Basically it's a flag that lets you know you are not connected to a DHCP server.

  • Configuring routes in Solaris

    How can I manipulate (add/delete) routing table in Solaris from a
    kernel module?
    As I understand this can be achieved from the user mode through the
    route (7P) interface but how can I do the same from a kernel module?
    Some questions related in this context are how can I create a socket as
    can be done through socreate() call in NetBSD and is there any
    mechanism of calling some sort of ioctl call from a Kernel module in
    Solaris.
    Thanks in advance.

    modload and modunload are the commands to add and remove the kernal modules. modinfo lists the modules that are loaded into the kernal. check with modinfo -c moduleid to see more details about the module. I dought routing table is a module in the kernal. Check the following link. hope it might help you.
    http://www.sun.com/blueprints/1299/network.pdf
    Regards
    Bharani

  • Functional module to get routing information

    hi friends,
                    i need FM from where i can get information about routing(CA03) in a table

    Hi Sikindar
    thanks for your inputs it was closed
    One more input i need i want the function module for infotype 2010. In this function module RP_FILL_WAGE_TYPE  i could not able to find the pa2010 infotype.
    could any one let me know where i need to pick the infotype 2010
    Regards,
    Prasad

Maybe you are looking for

  • File Content Conversion-Error in receiver channel

    hi gurus, In moni its displaying success message but in adater monitoring, Reciver channel error displayed as Parameter 'Record.fieldFixedLengths' or 'Record.fieldSeparator' is missing can any one help me with this. regards, kiran.

  • Cannot Edit Duplicate Server Behaviors (bugged?)

    Okay, here's a problem: I've got a user login page with two different forms on it - one to log in new users, and one to log in existing users. I applied a "log in user" server behavior to each of them. Now both of these server behaviors are showing u

  • Is is possible to insert more time to a composition in the beginning?

    Of course I know how to add time to the comp then move everything over that amount of time. That makes sense. But I was wondering if it's possible to insert a said amount of time at the first frame pushing existing frames to the end of the inserted t

  • Disk Privileges for internal and external drive

    Hello, I have a Time Capsule and external HD attached to it. I want to share the space on external drive with all users on Time Capsule network and at the same time I want to be the only one who can access the internal TC disk. I don't know how to se

  • JAM Integration with ByD

    Hi Everyone I am trying to Create an Integration between JAM & ByD by following Blog Enabling SAP JAM integration with Cloud for Customer . For some reasons I am not able to go Pass step 2 which is "OAuth Clients" as I can't see it on my screen. I am