Adding new client but requires manual assign address onto metadata network

I need to setup 11 client xsan, I added each client to the Xsan one by one,
I have successful added 9 clients without any issue, but when I added my last 2 clients to the xsan, it found the IP address
of my last two clients, but in last step, it shows the error message:
Network configuration required the computer clientAN. It is required that you assign IP address on the metadat network (10.0.0.0/6).
Please kindly advice what should I do to be able to those two clients. Thanks.
In my metadata network: I use 10.0.0.0/16.
Should I use 192.168.200.0/24 ?
Here are my configuration:
1. Public IP in Port1 :
Client: 192.168 200. 1 - 192.168.200.11
MDC1: 192.168.200.100
MDC2: 192.168.200.200
Subnet: 255.255.255.0
2. Private IP in Port 2 (Xsan):
Client: 10.0.10.1 - 10.0.10.11
MDC1: 10.0.10.100
MDC2: 10.0.10.200
Subnet: 255.255.0.0

My last two client's private IP address was wrong as in 10.1.
It should be in 10.0. I am able to add all my 11 clients to the Xsan now.
However, what is the different between:
metadata network: 10.0.0.0/16
metadata network: 192.168.200.0/24

Similar Messages

  • Added new parameter but it doesn't worl properly.

    here is the code that i used.
    added new parameter date_where, but after that the mark_all and clear_all is not working.
    someone please help me.
    /* PROJECT DATE INITIALS DESCRIPTION */
    /* W_O_9130 07/11/2006 FJK ADDED A PARAMETER P_ORDER_DATE */
    PACKAGE BODY SignAgenda IS
    /* Marks all the records in the ORDERS_VIEW_LIST datablock. Marking the records allows only */
    /* the marked records to be printed from the list. */
    PROCEDURE MarkAll IS
    MarkLoop BOOLEAN := TRUE;
    BEGIN
    SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'BUSY');
    IF (:SYSTEM.CURSOR_BLOCK != 'ORDERS_VIEW_LIST') THEN
    GO_BLOCK('ORDERS_VIEW_LIST');
    END IF;
    FIRST_RECORD;
    WHILE (MarkLoop) LOOP
    :ORDERS_VIEW_LIST.G_PICK_FIELD := 'x';
    IF (:SYSTEM.LAST_RECORD = 'TRUE') THEN
    MarkLoop := FALSE;
    ELSE
    NEXT_RECORD;
    END IF;
    END LOOP;
    FIRST_RECORD;
    IsMarked := TRUE;
    SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'DEFAULT');
    END;
    /* UnMarks all the records in the ORDERS_VIEW_LIST datablock. */
    PROCEDURE ClearAll IS
    MarkLoop BOOLEAN := TRUE;
    BEGIN
    SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'BUSY');
    IF (:SYSTEM.CURSOR_BLOCK != 'ORDERS_VIEW_LIST') THEN
    GO_BLOCK('ORDERS_VIEW_LIST');
    END IF;
    FIRST_RECORD;
    WHILE (MarkLoop) LOOP
    :ORDERS_VIEW_LIST.G_PICK_FIELD := NULL;
    IF (:SYSTEM.LAST_RECORD = 'TRUE') THEN
    MarkLoop := FALSE;
    ELSE
    NEXT_RECORD;
    END IF;
    END LOOP;
    FIRST_RECORD;
    IsMarked := FALSE;
    SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'DEFAULT');
    END;
    /* Prints the regular and 24 hour signing agendas. */
    PROCEDURE PrintReport(ReportName IN VARCHAR2) IS
    MaxSize NUMBER(5) := 2000;
    Where1 VARCHAR2(2000):=NULL;
    Where2 VARCHAR2(2000):=NULL;
    Where3 VARCHAR2(2000):=NULL;
    DefWhere VARCHAR2(32767):=NULL;
    DefWhere2 VARCHAR2(2000):=NULL;
    RecsMarked BOOLEAN;
    MarkLoop BOOLEAN := TRUE;
    DblQuote VARCHAR2(1) := '"';
    RepParam PARAMLIST;
    TooMany EXCEPTION;
    AlId ALERT;
    AlBtn NUMBER(10);
    ExcMsg VARCHAR2(130);
    Report_Id REPORT_OBJECT;
    Report_Status VARCHAR2(30);
    /*** W_O_9130 07/11/2006 FJK START *** */
    date_where varchar2(30);
    /*** W_O_9130 07/11/2006 FJK END *** */
    BEGIN
    SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'BUSY');
    RepParam := BuildParamList;
    /*** W_O_9130 07/11/2006 FJK START *** */
    date_where := replace(:ORDERS_VIEW_QUERY.dd_order_date,':',' to ');
    /*** W_O_9130 07/11/2006 FJK END *** */
    DefWhere := GET_BLOCK_PROPERTY('ORDERS_VIEW_LIST', DEFAULT_WHERE);
    IF (LENGTH(DefWhere) <= 2000) THEN
    DefWhere2 := DblQuote || DefWhere || DblQuote;
    ELSE
    DefWhere2 := 'DD_ORDER_DATE IS NOT NULL';
    END IF;
    IF NOT(IsMarked) THEN
    Where1 := DblQuote || DefWhere || DblQuote;
    ADD_PARAMETER(RepParam, 'P_WHERE', TEXT_PARAMETER, Where1);
    ADD_PARAMETER(RepParam, 'P_DEF_WHERE', TEXT_PARAMETER, DefWhere2);
    /*** W_O_9130 07/11/2006 FJK START *** */
    ADD_PARAMETER(RepParam, 'P_order_date', TEXT_PARAMETER, Date_Where);
    /*** W_O_9130 07/11/2006 FJK END *** */
    ELSE
    IsMarked := FALSE;
    GO_BLOCK('ORDERS_VIEW_LIST');
    FIRST_RECORD;
    WHILE (MarkLoop) LOOP
    IF (:ORDERS_VIEW_LIST.G_PICK_FIELD IS NOT NULL) THEN
    :ORDERS_VIEW_LIST.G_PICK_FIELD := NULL;
    ELSIF
         (Where1 IS NULL) THEN
    Where1 := 'DD_ORDER_RSN IN (''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (LENGTH(Where1) + LENGTH(:ORDERS_VIEW_LIST.DD_ORDER_RSN) + 5 <= MaxSize) THEN
    Where1 := Where1 || ', ''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (Where2 IS NULL) THEN
    Where2 := 'DD_ORDER_RSN IN (''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (LENGTH(Where2) + LENGTH(:ORDERS_VIEW_LIST.DD_ORDER_RSN) + 5 <= MaxSize) THEN
    Where2 := Where2 || ', ''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (Where3 IS NULL) THEN
    Where3 := 'DD_ORDER_RSN IN (''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (LENGTH(Where3) + LENGTH(:ORDERS_VIEW_LIST.DD_ORDER_RSN) + 5 <= MaxSize) THEN
    Where3 := Where3 || ', ''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSE
    RAISE TooMany;
    END IF;
    IF (:SYSTEM.LAST_RECORD = 'TRUE') THEN
    MarkLoop := FALSE;
    ELSE
    NEXT_RECORD;
    END IF;
    MarkLoop := false ;
    END LOOP;
    FIRST_RECORD;
    Where1 := Where1 || ')';
    IF (LENGTH(Where2) > 0) THEN
    Where2 := Where2 || ')';
    ELSE
    Where2 := 'DD_ORDER_RSN IS NULL';
    END IF;
    IF (LENGTH(Where3) > 0) THEN
    Where3 := Where3 || ')';
    ELSE
    Where3 := 'DD_ORDER_RSN IS NULL';
    END IF;
    ADD_PARAMETER(RepParam, 'P_WHERE', TEXT_PARAMETER, Where1);
    ADD_PARAMETER(RepParam, 'P_WHERE2', TEXT_PARAMETER, Where2);
    ADD_PARAMETER(RepParam, 'P_WHERE3', TEXT_PARAMETER, Where3);
    ADD_PARAMETER(RepParam, 'P_DEF_WHERE', TEXT_PARAMETER, DefWhere2);
    /*** W_O_9130 07/11/2006 FJK START *** */
    add_parameter(RepParam, 'P_order_date', TEXT_PARAMETER, Date_Where);
    /*** W_O_9130 07/11/2006 FJK END *** */
    END IF;
    HOST('..\..\STANDARD\VBExe\SetLegal', NO_SCREEN);
    Report_Id := FIND_REPORT_OBJECT(ReportName);
    Report_Status := RUN_REPORT_OBJECT(Report_Id, RepParam);
    HOST('..\..\STANDARD\VBExe\ResetOrigPaper', NO_SCREEN);
    SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'DEFAULT');
    EXCEPTION
    WHEN TooMany THEN
    AlId := FIND_ALERT('ERR_ALERT');
    IF ID_NULL(AlId) THEN
    ExcMsg := 'Error occurred in the SignAgenda.PrintReport package';
    ExcMsg := ExcMsg || ' - ERR_ALERT doesn' || '''' || 't exist.';
    :LIST__SIGN_AGENDA.G_MESSAGE_FIELD := ExcMsg;
    MESSAGE(ExcMsg);
    RAISE FORM_TRIGGER_FAILURE;
    ELSE
    ExcMsg := 'The maximum number of records that can be selected has been exceeded.';
    ExcMsg := ExcMsg || CHR(10) || 'Please select a smaller number of records.';
    SET_ALERT_PROPERTY(AlId, ALERT_MESSAGE_TEXT, ExcMsg);
    SET_ALERT_PROPERTY(AlId, TITLE, 'Unable to complete the requested task!');
    AlBtn := SHOW_ALERT(AlId);
    RAISE FORM_TRIGGER_FAILURE;
    END IF;
    END;
    /* Creates and returns a parameter list. This is used by the PrintReport procedure. */
    FUNCTION BuildParamList RETURN PARAMLIST IS
    RepParam PARAMLIST;
    BEGIN
    IF ID_NULL(GET_PARAMETER_LIST('SIGNING_AGENDA')) THEN
    RepParam := CREATE_PARAMETER_LIST('SIGNING_AGENDA');
    ELSE
    DESTROY_PARAMETER_LIST('SIGNING_AGENDA');
    RepParam := CREATE_PARAMETER_LIST('SIGNING_AGENDA');
    END IF;
    RETURN RepParam;
    END;
    END;

    i have problem some where here.please help out.
    BEGIN
    SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'BUSY');
    RepParam := BuildParamList;
    /*** W_O_9130 07/11/2006 FJK START *** */
    date_where := replace(:ORDERS_VIEW_QUERY.dd_order_date,':',' to ');
    /*** W_O_9130 07/11/2006 FJK END *** */
    DefWhere := GET_BLOCK_PROPERTY('ORDERS_VIEW_LIST', DEFAULT_WHERE);
    IF (LENGTH(DefWhere) <= 2000) THEN
    DefWhere2 := DblQuote || DefWhere || DblQuote;
    ELSE
    DefWhere2 := 'DD_ORDER_DATE IS NOT NULL';
    END IF;
    IF NOT(IsMarked) THEN
    Where1 := DblQuote || DefWhere || DblQuote;
    ADD_PARAMETER(RepParam, 'P_WHERE', TEXT_PARAMETER, Where1);
    ADD_PARAMETER(RepParam, 'P_DEF_WHERE', TEXT_PARAMETER, DefWhere2);
    /*** W_O_9130 07/11/2006 FJK START *** */
    ADD_PARAMETER(RepParam, 'P_order_date', TEXT_PARAMETER, Date_Where);
    /*** W_O_9130 07/11/2006 FJK END *** */
    ELSE
    IsMarked := FALSE;
    GO_BLOCK('ORDERS_VIEW_LIST');
    FIRST_RECORD;
    WHILE (MarkLoop) LOOP
    IF (:ORDERS_VIEW_LIST.G_PICK_FIELD IS NOT NULL) THEN
    :ORDERS_VIEW_LIST.G_PICK_FIELD := NULL;
    ELSIF
    (Where1 IS NULL) THEN
    Where1 := 'DD_ORDER_RSN IN (''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (LENGTH(Where1) + LENGTH(:ORDERS_VIEW_LIST.DD_ORDER_RSN) + 5 <= MaxSize) THEN
    Where1 := Where1 || ', ''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (Where2 IS NULL) THEN
    Where2 := 'DD_ORDER_RSN IN (''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (LENGTH(Where2) + LENGTH(:ORDERS_VIEW_LIST.DD_ORDER_RSN) + 5 <= MaxSize) THEN
    Where2 := Where2 || ', ''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (Where3 IS NULL) THEN
    Where3 := 'DD_ORDER_RSN IN (''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSIF (LENGTH(Where3) + LENGTH(:ORDERS_VIEW_LIST.DD_ORDER_RSN) + 5 <= MaxSize) THEN
    Where3 := Where3 || ', ''' || :ORDERS_VIEW_LIST.DD_ORDER_RSN || '''';
    ELSE
    RAISE TooMany;
    END IF;
    IF (:SYSTEM.LAST_RECORD = 'TRUE') THEN
    MarkLoop := FALSE;
    ELSE
    NEXT_RECORD;
    END IF;
    MarkLoop := false ;
    END LOOP;
    FIRST_RECORD;
    Where1 := Where1 || ')';
    IF (LENGTH(Where2) > 0) THEN
    Where2 := Where2 || ')';
    ELSE
    Where2 := 'DD_ORDER_RSN IS NULL';
    END IF;
    IF (LENGTH(Where3) > 0) THEN
    Where3 := Where3 || ')';
    ELSE
    Where3 := 'DD_ORDER_RSN IS NULL';
    END IF;

  • Adding new contacts but the requests are not going...

    Hi, 
    Please assist me on this critical issue. I was using latest version of skype that is 7.5 as it upgraded itself many times during the years. I have been adding new connections to my account as i deal with social media websites. Recently i discovered that the contact requests are not going through. 
    I mean the contacts are real and they are active but when i add them to my skype. The request was sent but not delivered actually. I tested that by creating one more personal account. I have sent request from my primary account to the new one. I checked the new account to see if i got the request or not. And yes there was no request. 
    Then i tried sending request from my new account to the primary one. And i got the contact request. Wondering is that issue related to my account or version. I am sure it is not the case with the version because the new account is using the same version too.
    Please let me know. My skype - [Removed for privacy] and I would like to test it with some of your guys here. 

    Thanks everyone.
    It worked when I changed "Point.java" as follows:
    public class Point {
         private int x;
         private int y;
         public int getXCoordinate()
              return x;
         public int getYCoordinate()
              return y;
         public void setXCoordinate(int newX)
              x = newX;
         public void setYCoordinate(int newY)
              y = newY;
         public Point(int x, int y)
              setXCoordinate(x);
              setYCoordinate(y);
    }Edited by: Abder-Rahman on May 8, 2009 1:10 PM

  • Dear Adobe, it's great you keep adding new features, but what about ...

    Dear Adobe,
    It's great you keep adding shiny new "newsworthy" features ... but what about fixing long-standing bugs/issues and addressing the basics that have been missing since the the beginning?
    WHAT ABOUT LEAVING PASTED CLIPS SELECTED after a Paste operation in the Timeline?!? Like every other app in the world?
    What about leaving a complex selection of clips intact after an UNDO operation? (This costs me hundreds of minutes a week.) Like every other app in the world?
    What about allowing "." as an abbreviation for "00" when entering timecode?
    What about letting the renaming of a clip in a bin be reflected in timelines?
    What about a "reduce project" option? (To remove all items not used by selected sequences, like Ae.)
    What about actually useful clip labels (colors) which link between timeline items and their respective clips in the bin? (Like Avid & FCP) So we can mark certain clips a certain color in a bin and have that color be reflected in timelines?
    What about being able to close the title tool with a shortcut, not just a tiny 4x4 button?
    What about fixing the title tool so it's kerning/leading shortcuts are NOT the exact opposite of EVERY OTHER CC application?
    What about a simple "Select Media Relatives" command, like in FCP and Avid?
    What about fixing the audio scrub toggle shortcut so that it works without having to play or use the mouse?
    What about a shortcut for "Reveal in Finder" from the Timeline? It's in the context menu -- why no shortcut?

    I am curious about the time you waste ...and wonder what and why you are doing it... that causes this loss of efficiency.
    2. What about leaving a complex selection of clips intact after an UNDO operation? (This costs me hundreds of minutes a week.) Like every other app in the world?
    Maybe  there is a better way !

  • I have all of my contacts on my new iPhone, but none in my address book on my mac, and I can't get them to sync. Can someone help?

    I had a bunch of junk entries in the address book on the mac, so I never synced the 2 when I had an iPhone 3GS. I got an iPhone 4 and even after deleting everything in the bunk address book, wasn't able to sync the iPhone 3GS's contacts (it had them all under a group for my my expired MobileMe account). So I got the iDrive Contacts app and back them up out there then ported them down to the new iPhone 4.
    Confusing yet?
    So now I have all of my contacts on the new phone (whew!) but I still can't get them into my address book on the mac. What in the world am I doing wrong?
    Thanks for your help!!
    Kim

    Connect your iPhone 4 to your Mac.  iTunes should open.  Look on the left, you should see "Kim's iPhone" or something similar.  Click on it.  Then look at the top of the iTunes window, click on "Info".  You can tick the box to sync your contacts from here.  There are also options to sync with the cloud, with MobileMe, Google, Yahoo, etc, which allow automatic wireless syncing.  Be careful here though, it's very easy to accidentally duplicate your contacts!

  • Adding new field in SC Account Assignment Screen (only for information)

    Hi guys,
    we have a requirement, to <b>show</b> additional fields within the account assignment screen. The contents should only be displayed as information for the user. It is not necessary, respectively not wanted to save this data within SRM or the Backend-System.
    2 questions:
    a) Is it necessary to expand the item-structure of the SC (INCL_EEW_PD_ITEM_CSF_SC) AND to expand the accounting structure (INCL_EEW_PD_ACC_CSF) for this fields?
    b) Is it sufficient, that the INCL_EEW*-structures of the PO-/billing-document etc. are <b>NOT</b> expanded with the additional fields to avoid the saving? In OSS-Note 458591 it is mentioned, that it is necessary to expand the CI-COBL-structure within the Backend-System.
    Thanks in advance with best regards.
    Bernd
    ps. We are using SRM 4.0.

    Hi
    <b>We have done this several times, in our past previous SRM implemenatations.</b>
    a) Yes. You need to expand the item structure at the Shopping cart level to display your Custom fields in the We bapage. As Per OSS Note - 672960, you can see the details. For display purpose, at least these custom fields must be created in the standard include structures [e.g., INCL_EEW_PD_ACC_CSF, etc ].
    b) Yes, no need to expand any other SAP Include structure, incase you don't want the field contents to be saved in backend system (incase of Purchase Order / Purchase Req).
    <u>Please see the follwoing links, which deal with the similar requirements, you have asked for in detail with code and other relevant details -></u>
    Re: Item Field Appearing In Account Assignment Field
    Re: Control Busniess Area Field in Account Assignment..
    Re: Add new account assignment field
    Re: Account assignment category not passed into Target Objects Badi
    Re: Add customer fields in Shopping cart and purchase order
    Re: Hiding CUF fields in SC Basic data
    displaying custom fields on shopping cart
    Custom Fields in Cost Assignment Tab
    How to add the custom field in SRM EBP shopping cart?
    Add customer fields in Shopping cart and purchase order
    Hope this will definitely help. Do let me know, incase you face any issues.
    Regards
    - Atul

  • Added new file but type still won't open in CS5

    I would like CS5 to be able to open .m3u files as text files. I have added M3U into the Extensions.txt in my C:\Documents and Settings\[user]\Applications Data\Adobe\Dreamweaver CS5\en_US\Configuration\Extensions.txt, and the C:\Program Files\Adobe\Adobe Dreamweaver CS5\configuration\Extensions.txt files. I've also added it to the C:\Program Files\Adobe\Adobe Dreamweaver CS5\configuration\DocumentTypes\MMDocumentTypes.xml file.  I have tried this two different ways: one by adding M3U as an addition TXT file, and the other as a completely new type.
    In both cases, I can do File\Open and it lists my type (either Text Files (*.txt; *.m3u) or M3U Files (*.m3u)), but when I try to open a file with .m3u extension I get "Dreamweaver can't open .m3u files. Please choose an HTML, XML, or other compatible file."
    Is there some other location I need to change this? Or is there somewhere to tell CS5 to open unrecgonized file types as text (the way Dreamweaver 8 used to work)?

    Robert,
    I would like CS5 to be able to open .m3u files as text files. I have added M3U into the Extensions.txt in my C:\Documents and Settings\[user]\Applications Data\Adobe\Dreamweaver CS5\en_US\Configuration\Extensions.txt, and the C:\Program Files\Adobe\Adobe Dreamweaver CS5\configuration\Extensions.txt files. I've also added it to the C:\Program Files\Adobe\Adobe Dreamweaver CS5\configuration\DocumentTypes\MMDocumentTypes.xml file.  I have tried this two different ways: one by adding M3U as an addition TXT file, and the other as a completely new type.
    You should never edit files in the *Application* Configuration folder (i.e.C:\Program Files\Adobe\Adobe Dreamweaver CS5\configuration). You should only edit files in the *User* Configuration fodler (i.e. C:\Documents and Settings\[user]\Applications Data\Adobe\Dreamweaver CS5\en_US\Configuration). The reason is that you can always delete your User Configuration folder to reset to your original installation files.
    You said that you edited "C:\Program Files\Adobe\Adobe Dreamweaver CS5\configuration\DocumentTypes\MMDocumentTypes.xml" but you should have edited the one in your User Configuration folder instead. If it doesn't exist in the User Configuration folder, then copy it there first, then edit it. You should just need to add it to the winfileextension and/or macfileextension attribute(s) as a comma-separated value.
    You'll need to shutdown and restart DW.
    HTH,
    Randy

  • Adding new phone number to contacts in address book on IOS4

    Has anyone else come across those bug? When I try and press the add symbol to add a new phone number or extra number ie. Home or work as the default in new contact is mobile, the + symbol doesn't respond.
    So infuriating for such an essential app. For the most my upgrade is ok although a few apps now don't open.

    I see a number if the number of cards in the group more than fills the page. However, if there are blank lines on the page, there is no number.

  • A new iPad and new Express, but no Mac - can't set up network!

    Here's a puzzler (for me at least) --
    Mom bought a new iPad and new Airport Express. She has no Mac, so no iTunes and no syncing. Her iPad does NOT have Airport Utility. She's starting from scratch.
    Her Express is connected to her Cox Cable Cisco modem, shich shows steady green for good internet connection. The express flashes amber, I assume becuase there's no network set up.
    Her iPad sees the Express -- Wi-Fi in the Settings menu has "Apple ..." where the network name appears -- and the wireless signal 'fan' shows strong in the top bar.
    In iPad > Settings > Wi-Fi, Wi-Fi shows 'on', no editable network shows, and no "create network" option shows.
    She can't get Airport Utility without internet or syncing to a Mac, and she can't see any way to create a network, or see any existing network that she can forget or manage.
    Is this simple Cox Cable > Cisco modem > Express wireless > iPad a workable setup?
    Is there any way to create the wireless network without Airport Utility?
    Thanks!
    Otto
    P.S. The iPad isn't pristine connection-wise. It was temporarily connected to a public Wi-Fi to complete setting up an iCloud account, and so get to the home screen for the first time. BUT, my mom is ancient and fearful, and I don't want to send her out to find public Wi-Fi to set up a a credit card account so she can use the app store to get utility if I don't have to. Help.

    Thanks CRMDVM -- ...which means, I think, that she will need to go out into the wide world to find public wireless. Makes me wish Airport Utility was one of the stock apps that came with the iPad.
    Any other ideas? Any way to manually configure on an iPad? Anything? Thanks.
    Otto

  • New TC but now Time Machine can't find network backup drives

    I had a 2 GB TC replaced under warranty (many thanks to LaPastenague who suggested I may be able to get a replacement under warranty).  Configured the TC using Airport Utility, and after a bit of messing around (had to delete and re-find the USB printer) everything seemed to be working fine.  However ....
    I have a MyBookWorld network drive as an alternate Time Machine backup disk, and my MacBook found both the TC and MBW and backed up to them alternately just fine.
    However on another MacBook I removed the MBW drive as a backup disk in TM preferences, and now I can't add it back to that Macbook's list of backup drives.  I get the "can't find that server" error dialogue.  Which is crazy because the other shares on the MBW drive are visible - it's just the backup partition (WD_Backup) that isn't found.  I figure it's trying to connect to the IP address of the previous TC, which probably changed when I replaced the TC, or something.
    Help please !
    TIA ... John.

    Manually mount the directory in finder.
    This is so much more important on Mavericks than it used to be due to its default to SMB networking.
    I guess I also do not know if you should mount this via AFP or SMB but try both.
    So in Finder.. Go.. connect to server.
    Type in the actual name or IP of the device.
    AFP://MBW.local/WD_Backup (where MBW is the network name of the device. local is the domain (assuming it is connected to the TC))
    No luck try AFP://MBWIPaddress where you simply type in the IP.
    You might find it is easier to pick up the directory from the other Mac where it is working.
    Click on Get Info and look at the directory URL info.
    If no luck use SMB://MBW.local etc.
    Come back to us if it still does not show up.

  • I have Adobe Photoshop elements that was installed on my XP windows machine. I have got Windows 8 now with iternet explorer 11 a brand new machine but photoshop will not load onto it, it says internet explorer 5 or higher needed, please help

    any thoughts on this problem, I find no version stated on the photoshop elements program. sorry it says internet explorer 4 or higher need which is what I have.

    Message to use a new version of IE
    There is a problem with IE10+ in that it is mistakenly seen as being IE1.  To get around this either use a different browser or use compatibility view (http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-10)

  • Interaction with a new client

    Hi,
    Im working in a newly established company.
    We are expecting a new client which requires 24/7 oracle apps support.
    I would like to know the possible questions we pose to our client as a DBA (may be like the size of the DB, number of users, etc) to get started with the client.
    I apoligize for this is not a regular question regarding the subject, but i need your help..Kindly show me some way to pose good questions to our client.
    Thanks in advance.

    You should be familiar with 7x24 issues, such as
    - level of support
    - segment aintenance (index, tables)
    - backup policies
    - standby databases
    - rac
    - Oracle licenses to support a data guard and or a rac environment
    - backup site
    - Regular backup management
    - switch over and failed over
    - rollup patch apply
    Regularly the customer will ask you if you are able to provide this, among other specific customer's issues, and you should be able to answer it. On your side you should be concerned about licenses, resources and service level agreements.
    ~ Madrid

  • Copying a New Client

    HI Experts:
    I understand that this question may seem like extremely "I should know this" but i would really like some assistance with this.
    I am trying to copy a new client, and am following the attached instructions.
    Procedure
    1. Maintain the new client with transaction SCC4.
    2. Activate kernel user SAP*:
       a) Set the profile parameter login/no_automatic_user_sapstar to 0.
       b) Restart the application server.
    3. Log on to the new client with kernel user SAP* and password PASS.
    4. Copy client 000 with transaction SCCL and profile SAP_CUST.
    5. Check the log files with transaction SCC3.
    6. Deactivate kernel user SAP*:
    a) Reset login/no_automatic_user_sapstar to 1.
    Caution
    You create SAP system user SAP* on the new client before resetting
    login/no_automatic_user_sapstar.
    b) Restart the application server.
    Question:
    This is a new system
    How do i activate kernel user SAP*?  I have already created a new client but I need to log into it to copy from 000/001.
    Anyhelp would be really appreciated.
    Imran

    i have tried the above methods. edited my profile file SJ1_DVEBMGS00_sapides as
    login/no_automatic_user_sapstar = 0
    SAPSYSTEMNAME = SJ1
    INSTANCE_NAME = DVEBMGS00
    SAPSYSTEM = 00
    rdisp/wp_no_dia = 6
    rdisp/wp_no_btc = 2
    rdisp/wp_no_vb = 2
    rdisp/wp_no_vb2 = 1
    rdisp/wp_no_enq = 1
    rdisp/wp_no_spo = 1
    SAPGLOBALHOST = sapides
    PHYS_MEMSIZE = 408
    DIR_TRANS = C:\usr\s
    still i cant login to my newly created client 100
    pls help
    thanks in advance
    Harisankar S

  • Can login to OS 10.4.9 server using 10.4 client, but not with 10.3.9 client

    When I try to login to OS 10.4.9 server using 10.4 client, all is fine, but not with 10.3.9 client -- what's up?
    It seems that when I set the group preferences (what kind of dock the users in our elementary school see, etc.), it doesn't affect 10.4 clients, but when trying to log onto the server using a 10.3.9 client, it just runs and runs, never logging on. Have to eventually restart the client computer. If I take a user out of a group with preferences set, it's fine. So, help! Most of my computers in my lab are 10.3.9. All are bound.
    Thanks,
    Joan

    Hi Devils_Coup,
    first of all: WELCOME TO THE DISCUSSIONS!
    It is strongly recommended to use OS 9.1 or higher. However, you do not have to buy it, just download and apply the free updates here: Mac OS 9: Available Updates.
    Also make sure your firmware is up-to-date: Firmware Upgrades.
    In MacOS X remember: Repair permissions before and after an update!
    If this answered your question please consider granting some stars: Why reward points?

  • IP address constantly changes requiring adding new port to enable wireless printing

    I have a HP Photosmart C7280 printer setup with wireless option.  My home network uses a wireless Linksys router.  My problem is that the IP address constantly changes, so when trying to print from the desktop in the other room, I have to go through many steps: go to the printer, view the network settings, go back to the desktop in the other room, and add a new port in the printer properties in order to enable printing.  There is now quite a collection of different ports that appear in the list as this seems to happen everytime I need to print from that computer.  I don't seem to have the same  issue with the main desktop which is located near the printer even though it was setup with the same wireless option.
    I am not an expert on networking, so I don't understand why the IP address constantly changes.  My question is how to avoid this annoyance? Do I need to choose a different setup option?  The computers on the home network do not all use the same operating system so I was trying to avoid the potential headache of trying to share the printer on the network.  

    You can find the steps how to assign a  manual ip address in the link:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02722089&cc=us&dlc=en&lc=en&jumpid=reg_R1002_US...
    If this answer was helpful or clarified the issue click the star to offer me a kudo as thanks.
    If my answer solved the problem please mark the topic as the accepted solution
    Although I am an HP Employee, ALL of my posts express MY opinion, and not of HP, whatsoever.

Maybe you are looking for

  • Acrobat 9 standard : form and import xml

    Hi all, is it possible to import xml data into a pdf form with acrobat 9 standart ? i don t have the 'form' menu. A friend can import xml under acrobat 8 standard, i tried to install version 8, but i can t find any form menu too.... In the online doc

  • Apache + 2 Tomcats session replication problem.

    Greetings everyone. Before stating the problem, let me explain how my environment is set. I have two machines. One (PC1) running Apache (HTTP server 2.0.58) and one instance of Tomcat (5.0.28) and another machine (PC2) with another instance of Tomcat

  • Approach to check/Track IP Setting Changes ina System........

    Hi Gurus, Please tell me how this table - RSLDPSELHIST can be used to track the changes made in IPs(all) in a system on any given Day? RSLDPSELHIST -->>> Selection table for fields scheduler. Cheers, RS

  • Analogue Passthrough to iMovie

    I have connected my VCR via scart to the a/v terminal of my Canon MV830i and set it to AV>DV "On" which is the passthrough mode. I have connected the camera via firewire to my iMac and opened up iMovie without a tape in the DV Camera ( as instructed

  • High wait on Library Cache Lock while doing ALTER TABLE EXCHANGE PARTITION

    We are observing a very high wait time on "Library cache lock" while performing Exchange partition. Here we go ALTER TABLE PSALESREG EXCHANGE PARTITION P123 WITH TABLE PBKPSALESREF WITHOUT VALIDATION call count cpu elapsed disk query current rows Par