Location assignment doesn't work

Hi all,
I have a procedure which creates a customer but i found that it doesn't work properly. After execution it seems OK in Customers JSP but when i started to create an invoice for the new customer it doesn't recognized it's location.
Here is my procedure:
  procedure set_customers (p_cust_row in cust_type)
is
p_organization_rec HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE;
x_return_status VARCHAR2(2000);
x_msg_count NUMBER;
x_msg_data VARCHAR2(2000);
x_party_id NUMBER;
X_PARTY_NUMBER varchar2(2000);
x_profile_id NUMBER;
p_location_rec hz_location_v2pub.location_rec_type;
x_location_id number;
p_party_site_rec HZ_PARTY_SITE_V2PUB.PARTY_SITE_REC_TYPE;
x_party_site_id number;
x_party_site_number varchar2(2000);
p_party_site_use_rec hz_party_site_v2pub.party_site_use_rec_type;
x_party_site_use_id NUMBER;
p_cust_account_rec     HZ_CUST_ACCOUNT_V2PUB.CUST_ACCOUNT_REC_TYPE;
-- p_organization_rec     HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE;
p_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE;
x_cust_account_id      NUMBER;
x_account_number       VARCHAR2(2000);
-- x_party_id             NUMBER;
-- x_party_number         varchar2(2000);
-- x_profile_id           NUMBER;
p_location_id number;
p_created_by_module varchar2(500);
p_application_id number;
x_loc_id NUMBER;
begin
-- create organization
p_organization_rec.organization_name := p_cust_row.customer_name;
p_organization_rec.created_by_module := 'HZ_CPUI';
p_organization_rec.tax_reference := p_cust_row.vat_id;
p_organization_rec.jgzz_fiscal_code := p_cust_row.taxpayer_id;
p_organization_rec.application_id := 222;
hz_party_v2pub.create_organization (
'T',
p_organization_rec,
x_return_status,
x_msg_count,
x_msg_data,
x_party_id,
x_party_number,
x_profile_id);
    dbms_output.put_line('return_status='|| SUBSTR (x_return_status,1,255));
    dbms_output.put_line('count='||TO_CHAR(x_msg_count));
    dbms_output.put_line('Msg_data = '|| SUBSTR (x_msg_data,1,255));
    dbms_output.put_line('Party Id='|| SUBSTR (x_party_id,1,255));
    dbms_output.put_line('Party_Number='|| SUBSTR (x_party_number,1,255));
    dbms_output.put_line('Organization_Name='||SUBSTR(p_organization_rec.organization_name,1,255));
    dbms_output.put_line('CreatedBy='||SUBSTR (p_organization_rec.created_by_module,1,255));
    dbms_output.put_line('Profile Id='|| SUBSTR (x_profile_id,1,255));
      IF x_msg_count > 1 THEN
        FOR I IN 1..x_msg_count LOOP
        dbms_output.put_line('I.'|| SUBSTR (FND_MSG_PUB.Get(p_encoded =>
        FND_API.G_FALSE ), 1, 255));
      end loop;
      end if;
--create location
p_location_rec.country := 'BG';
p_location_rec.address1 := p_cust_row.customer_address;
p_location_rec.city := p_cust_row.customer_city;
p_location_rec.created_by_module := 'HZ_CPUI';
p_location_rec.application_id := 222;
p_location_rec.address_style := 'POSTAL_ADDR_DEF';
hz_location_v2pub.create_location(
'T',
p_location_rec,
x_location_id,
x_return_status,
x_msg_count,
x_msg_data);
  dbms_output.put_line('x_return_status = '||SUBSTR(x_return_status,1,255));
  dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
  dbms_output.put_line('Location Id = '||TO_CHAR(x_location_id));
  dbms_output.put_line('Country = '|| SUBSTR(p_location_rec.country,1,255));
  dbms_output.put_line('Address1 = '|| SUBSTR(p_location_rec.Address1,1,255));
  dbms_output.put_line('State = '|| SUBSTR(p_location_rec.state,1,255));
  dbms_output.put_line('Created By = '|| SUBSTR(p_location_rec.created_by_module,1,255));
  dbms_output.put_line('x_msg_data = '|| SUBSTR(x_msg_data,1,255));
    IF x_msg_count > 1 THEN
      FOR I IN 1..x_msg_count LOOP
      dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
      FND_API.G_FALSE ),1, 255));
      end loop;
    end if;
-- create party site
p_party_site_rec.party_id := x_party_id;--p_organization_rec.party_rec.party_id; --26743
p_party_site_rec.location_id := x_location_id;--p_location_rec.Location_Id; --2057
p_party_site_rec.identifying_address_flag := 'Y';
p_party_site_rec.created_by_module := 'HZ_CPUI';
p_party_site_rec.application_id := 222;
hz_party_site_v2pub.create_party_site(
'T',
p_party_site_rec,
x_party_site_id,
x_party_site_number,
x_return_status,
x_msg_count,
x_msg_data);
  dbms_output.put_line('x_return_status = '||SUBSTR(x_return_status,1,255));
  dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
  dbms_output.put_line('Party Site Id = '||TO_CHAR(x_party_site_id));
  dbms_output.put_line('Party Site Number = '||SUBSTR(x_party_site_number,1,255));
  dbms_output.put_line('x_msg_data = '||SUBSTR(x_msg_data,1,255));
    IF x_msg_count >1 THEN
      FOR I IN 1..x_msg_count LOOP
      dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
      FND_API.G_FALSE), 1, 255));
      end loop;
    end if;
-- create party site use
p_party_site_use_rec.party_site_id := x_party_site_id;--p_party_site_rec.Party_Site_Id;
p_party_site_use_rec.created_by_module := 'HZ_CPUI';
p_party_site_use_rec.site_use_type := 'BILL_TO';
p_party_site_use_rec.application_id := 222;
hz_party_site_v2pub.create_party_site_use(
'T',
p_party_site_use_rec,
x_party_site_use_id,
x_return_status,
x_msg_count,
x_msg_data);
  dbms_output.put_line('x_return_status = '||substr(x_return_status,1,255));
  dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
  dbms_output.put_line('Site Use Id = '||TO_CHAR(x_party_site_use_id));
  dbms_output.put_line(SubStr('x_msg_data = '||x_msg_data,1,255));
    IF x_msg_count >1 THEN
      FOR I IN 1..x_msg_count LOOP
      dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
      FND_API.G_FALSE ), 1, 255));
      end loop;
    end if;
--create customer account
p_cust_account_rec.created_by_module   := 'HZ_CPUI';
p_organization_rec.party_rec.party_id  := x_party_id;--p_organization_rec.party_rec.party_id;
p_cust_account_rec.application_id := '222';
p_cust_account_rec.customer_type := 'R';
p_customer_profile_rec.grouping_rule_id := '-1';
HZ_CUST_ACCOUNT_V2PUB.CREATE_CUST_ACCOUNT
              p_init_msg_list       => FND_API.G_TRUE,
              p_cust_account_rec    =>p_cust_account_rec,
              p_organization_rec    =>p_organization_rec,
              p_customer_profile_rec=>p_customer_profile_rec,
              p_create_profile_amt  =>'F',
              x_cust_account_id     =>x_cust_account_id,
              x_account_number      =>x_account_number,
              x_party_id            =>x_party_id,
              x_party_number        =>x_party_number,
              x_profile_id          =>x_profile_id,
              x_return_status       =>x_return_status,
              x_msg_count           => x_msg_count,
              x_msg_data            =>x_msg_data
IF x_return_status = fnd_api.g_ret_sts_success THEN
    COMMIT;
    DBMS_OUTPUT.PUT_LINE('Creation of Cust account is Successful ');
    DBMS_OUTPUT.PUT_LINE('Output information ....');
    DBMS_OUTPUT.PUT_LINE('x_cust_account_id  : '||x_cust_account_id);
    DBMS_OUTPUT.PUT_LINE('x_account_number   : '||x_account_number);
    DBMS_OUTPUT.PUT_LINE('x_party_id         : '||x_party_id);
    DBMS_OUTPUT.PUT_LINE('x_party_number     : '||x_party_number);
ELSE
    DBMS_OUTPUT.PUT_LINE ('Creation of Cust account got failed:'||x_msg_data);
    ROLLBACK;
    FOR i IN 1 .. x_msg_count
    LOOP
      x_msg_data := oe_msg_pub.get( p_msg_index => i, p_encoded => 'F');
      dbms_output.put_line( i|| ') '|| x_msg_data);
    END LOOP;
end if;
DBMS_OUTPUT.PUT_LINE('Completion of API');
-- location
insert into hz_cust_acct_sites_all
  CUST_ACCT_SITE_ID,
  cust_account_id,
  party_site_id,
  last_update_date,
  last_updated_by,
  creation_date,
  created_by,
  last_update_login,
  orig_system_reference,
  status,
  org_id,
  bill_to_flag,
  object_version_number,
  created_by_module,
  application_id
) values
  hz_cust_acct_sites_s.nextval,
  x_cust_account_id,--p_cust_account_rec.cust_account_id,
  x_party_site_id,--p_party_site_rec.party_site_id,
  sysdate,
  '-1',
  sysdate,
  '-1',
  '102804',
  hz_cust_acct_sites_s.nextval,
  'A',
  '81',
  'P',
  1,
  'HZ_CPUI',
  222 
fnd_client_info.set_org_context('81');
p_location_id := x_location_id;
p_created_by_module := 'HZ_CPUI';
hz_tax_assignment_v2pub.create_loc_assignment(
'T',
p_location_id,
'T',
p_created_by_module,
p_application_id,
x_return_status,
x_msg_count,
x_msg_data,
x_loc_id);
  dbms_output.put_line('x_return_status = '||SUBSTR(x_return_status,1,255));
  dbms_output.put_line('Location Id = '||TO_CHAR(p_location_id));
  dbms_output.put_line('Created By Moudle = '|| SUBSTR (p_created_by_module,1,30));
  dbms_output.put_line('x_msg_count = '||TO_CHAR(x_msg_count));
  dbms_output.put_line('x_msg_data = '|| SUBSTR (x_msg_data,1,255));
    IF x_msg_count >1 THEN
      FOR I IN 1..x_msg_count LOOP
        dbms_output.put_line(I||'.'||SUBSTR(FND_MSG_PUB.Get(p_encoded=>
        FND_API.G_FALSE ), 1, 255));
      END LOOP;
    end if;
dbms_output.put_line(x_party_site_id || '--' || p_party_site_rec.party_site_id);
end set_customers;EBS Version: 12.1.3
I call this procedure with another and pass a param for just one customer(in test environment).
I made a test and create one via EBS Receivables -> Customers - > Customers . After this i created a manual invoice for that customer and when i specify the name of the Bill To(the new one) the Number, Location and Address are filled automatically. But with the customer created via this procedure it didn't filled automatically(when customer's name was specified...).
procedure create_customers(p_choice in number) is
cursor c is select taxpayer_id
                  ,customer_name
                  ,customer_city
                  ,customer_address
                  ,vat_id 
            from xx_customers_temp
             where taxpayer_id = '131199238';
v_cust cust_type;                         
begin
    open c;
    loop
      fetch c into  v_cust;
      exit when c%notfound;
    dbms_output.put_line(v_cust.taxpayer_id || '--' || v_cust.customer_name || '--' || v_cust.customer_city
                        || '--' || v_cust.customer_address|| '--' || v_cust.vat_id);
    if p_choice = 1 then
      set_customers(v_cust);
    end if;
  end loop;
  close c;
end create_customers;Any ideas?
Thanks in advance,
Bahchevanov.

For location the iPod uses the location of nearby wifi routers that are in Apple's database. You do not have to be connected to the network/router to use that router's location. Thus, it appears that the iPod can't see a nearby router that is in Apple's database. Apple continuously updated their database based on info they obtain from iPhones. No one has been able to find a way to inform Apple of a router or correct is location.
You can confirm that by going to place with a know located router like Starbucks or McDonalds

Similar Messages

  • I am using iPod Touch 5th gen and my location services doesn't work.

    When I'm in other places with wi-fi, the location services work perfectly; when I'm home, it doesn't work. What should I do?
    Some forum says I need to register my point of connection using my ISP. Please tell me how to do it.

    For location the iPod uses the location of nearby wifi routers that are in Apple's database. You do not have to be connected to the network/router to use that router's location. Thus, it appears that the iPod can't see a nearby router that is in Apple's database. Apple continuously updated their database based on info they obtain from iPhones. No one has been able to find a way to inform Apple of a router or correct is location.
    Get somebody to come over with an iPhone and use your wifi network

  • Visio 2013: File Locations option doesn't work

    Has there been any reporting of a bug in Visio 2013's File Locations option?
    Entering a folder path appears to have no effect on Open and Save dialog boxes for me. This option works fine in all the other Office 2013 applications I have used, but not Visio 2013.
    Thanks in advance.

    Ok, I see you were not trying to mail it, you're trying to send it to another library
    it could be the URL is too long. there is a 256 character limit, and maybe the URL that is getting generated exceeds the limit.
    Here are a couple links about the limit
    https://technet.microsoft.com/en-us/library/ff919564(v=office.14).aspx
    https://support.microsoft.com/kb/894630/en-us?p=1&wa=wsignin1.0
    Stacy Simpkins | MCSE SharePoint | www.sharepointpapa.com

  • Updated to 4.2.1, and now the location feature doesn't work...

    Had an iPod 2nd Gen for a good few years now, and never had a problem.
    I updated the software to 4.2.1 the other day, and since then the iPod is unable to track my location.
    I use it through Wi-Fi, and before the update, it worked fine. Now when i access Google Earth, Maps, Social networking sites etc none of them can identify my location and a message pops up saying "Could not determine location".
    I have all the location functions activated, so i dont understand why the update seems to have affected this function...
    Anyone help? Its driving me crazy!

    - Have you tried resetting your iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Resetting network settings:
    Settings>General>Reset Network Settings
    Other users have experienced the same problem. It seems to be related to Apple changing the database they use for determining location by wifi. Apple used to use a service called Skyhook but now they use their own database of wifi routers with their location. It appears that you router is not in Apple's database. As of yet nobody has found a way to update Apple's database.

  • Agent Assignment Doesn't work For Some Users

    Hi all,
    In OOCU_RESP there are four agents in a responsibility. But only one (say A) of the four gets tasks in Inbox. The other three (say B, C, D) get nothing.
    I removed A from the responsibility and B, C, D still get nothing. In SWIA the log shows no agent assigned. But in SWI2_DIAG there is no error info.
    In OOCU_RESP, Simulate rule resolution, i can get all 4 agents assigned.
    I feel like there is something wrong with B, C, D's SAP account settings. But I have no clue what it can be. Advise please!

    Hi Dayong
    Please check the Agent Assignment settings of the task used for sending the WI to the users. Is the task set to General task or specific agents are listed there?
    PFTC->Supply the Task-> Additional Data -> Agent Assignment
    Also, check if these agents are listed in Excluded agents in the Workflow Step.
    regards,
    Modak

  • Explicit assignment to the ref parameter in member function doesn't work

    I've created new member procedure in a simple DB schema (Profesor-Asignatura-Departamento). In this procedure I'd like to change explicitly the value of departamento parameter which stores references to departamento objects.
    So what I'm doing is:
    select ref(d) into ref_departamento from departamento d where d.codigo=n_departamento; -- retrieve reference to the departament which has a code=n_departamento
    then I'd just like to assign the result to objects attribute like this:
    self.departamento:=ref_departamento;
    and here it doesn't work and I'm wondering why; I haven't found explaination in web. No error is displayed, simply it doesn't change the previous value of the parameter.
    Maybe there are some restrictions. I've managed to find another solution here with UPDATE statement but I'm curious why the simple assignment doesn't work.
    Thanks in advance,
    Wojtek

    OK, I'm not spanish however I like my code to be kept that way because I'm still learning :)
    Most important classess are these (then tables are created for them):
    create or replace type ot_departamento as object
    codigo number,
    nombre varchar2(32),
    telefono vt_telefono, -- vector type of size 3
    profesores tt_departamento_profesores, -- table type of references to ot_profesor objects
    asignaturas tt_departamento_asignaturas -- table type of references to ot_asignatura objects
    create or replace type ot_profesor as object
    codigo number,
    nombre varchar2(32),
    direccion ot_direccion, --object type with street, city, etc.
    telefono vt_telefono,
    departamento ref ot_departamento, -- reference to ot_departamento
    docencia tt_profesor_docencia, -- table type of objects which attributes are (reference to ot_asignatura, credits for a subject)
    create or replace type ot_asignatura as object
    codigo number,
    nombre varchar2(32),
    departamento ref ot_departamento, -- reference to ot_departamento
    docencia tt_asignatura_docencia, -- table type of objects which attributes are (reference to ot_profesor, credits for a subject)
    member procedure cambio_departamento(n_departamento number) *<- That's the procedure, where I had this issue* its task is to change current department,it takes as an argument code of new department which needs to be assigned
    So now the code for my procedure is:
    create or replace
    type body ot_asignatura as
    member procedure cambio_departamento(n_departamento number) is
    asig_count number:=self.docencia.count;
    no_cambio exception;
    docencias_adscritas exception;
    ref_departamento ref ot_departamento;
    begin
    --first check if a department of given code (n_departamento) exists at all, if not then raise NO_DATA_FOUND exception
    select ref(d) into ref_departamento from departamento d where d.codigo=n_departamento;
    --check if the given department is not the same as asignatura has already assigned, if so then raise NO_CAMBIO (NO_CHANGE) exception
    if ref_departamento=self.departamento then
    raise no_cambio;
    end if;
    --if there are any docencias (subject is declared with professor who's teaching and credits) already assigned to current department then department can't be changed
    if asig_count>0 then
    raise docencias_adscritas;
    end if;
    --first delete our assignatura from list of assignaturas already assigned to current department in the corresponding ot_department
    delete from the (select d.asignaturas from departamento d where ref(d)=self.departamento) a
    where a.COLUMN_VALUE.codigo=self.codigo;
    --now assing (update) to current assignatura reference to the new department
    --self.departamento:=ref_departamento; <- THIS IS NOT WORKING HERE*, so the workaround is given below by using explicit UPDATE on the whole table
    update asignatura a set a.departamento=(select ref(d) from departamento d where d.codigo=n_departamento)
    where a.codigo=self.codigo;
    --what's left is to add current assignatura to the list of assignatures for new ot_departamento
    insert into the (select d.asignaturas from departamento d where d.codigo=n_departamento)
    select ref(a) from asignatura a where a.codigo=self.codigo;
    exception
    when no_data_found then
    raise_application_error(-20003,'No hay este departamaneto');
    when no_cambio then
    raise_application_error(-20002,'Asignatura ya adscrita a este departamento');
    when docencias_adscritas then
    raise_application_error(-20001,'Asignatura tiene docencias adscritas !!!');
    end cambio_departamento;
    end;
    I hope it's quite clear here. I'm still curious, why it's not working.
    Thanks,
    Wojtek

  • Enter key doesn't work after upgrade to 3.6.7

    after upgrade to 3.6.7: enter key won't activate address in location bar, nor in search engine bar, 'green arrow' in location bar doesn't work, adds ons, plugins, ext, are all empty,
    == This happened ==
    Every time Firefox opened
    == I upgraded to 3.6.7

    AVG extensions can cause this issue.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]<br />
    <br />
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.<br />
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.<br />
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")<br />

  • DHCP & self-assigned IP problem-Airport doesn't work

    I'm not really a technical type, but I'm pretty quick to pick things up and several weeks of trying to deal with this issue has made me pretty knowledgeable about things related to it specifically.
    Background:
    I have a month-old Macbook Pro that runs Snow Leopard and is up to date on all its software stuff. On our home network we have another pretty new Macbook Pro running 10.5.9 and a fairly old Macbook also running 10.5.9.
    We have a Linksys WRT54G wireless router. Our network uses a 40-bit Hex WEP password.
    Problem(s):
    When I try to connect to our wireless network, Network preferences tells me that it cannot connect because of a self-assigned IP address. Sure enough, the IP address DHCP comes up with is of the 64.XX.XX.XX variety. Google's revealed that this is a common problem for all recent versions of OSX, back to at least Tiger.
    The "subnet mask" it comes up with is 255.255.0.0, which is different from the settings on our other (working) computers, which is 255.255.255.0. I'm not sure what this means, or whether it's significant. Renewing the DHCP lease either comes up with the same 64.XX.XX.XX type or, sometimes, it comes up with no IP settings at all. The most frustrating thing about this is that if I chose "DHCP with manual address" and type in any in our set that I've confirmed isn't in use and hit "apply", as soon as I go back to the panel it has reverted to the 64.XX.XX.XX type.
    I've also tried manually entering the router/subnet mask/IP data, as well as the DNS numbers, and that leads to the Network Settings connectivity dot thing being green, but the internet still doesn't work. In those cases, diagnostics claims that everything is fine up to and including the ISP, but that it's unable to connect to the server and internet.
    Of note: some people with a similar problem have talked about networks with this problem working intermittently, but mine seems to be consistently broken.
    Initially I was able to avoid fixing the problem by using our neighbors' unsecured wireless network, which is sort of awful, I know, but at least it kept me from having to deal with this for a while. Today it started to do the same thing to that network. Both networks continue to work on our Macbook and other Macbook Pro, which is why I don't think that it's a router problem.
    I've been able to connect to our other computers through computer-to-computer networks—going through our main shared network (and thus the wireless router) doesn't seem to work—which I think shows that the Airport card/hardware itself is intact (?). I did try connecting to the internet through the "internet sharing" option on our Macbook, but that had the exact same problems.
    Another thing that may or may not be relevant, but is equally infuriating:
    I've also noticed that my Macbook Pro has more trouble staying connected to a network than our Macbook—even when it was working, it disconnected/timed out extremely often, which is something our Macbook never does, even from the same location. When I try to connect to a network it spends a very long time displaying the "searching for network" animation in the menu bar icon, sometimes after the Network Preferences pane believes that it's connected, and sometimes even after I hit the button to turn Airport off. It's also started refusing to connect to any networks at all, on occasion, which is especially evident in the process of the diagnostics box thingy, because there it actually tells me it's unable to connect rather than just playing the searching animation for ages.
    Here are some other things that I've tried:
    setting up a new 'location'
    restarting the computer
    deleting the airport preferences file
    restarting in safe mode
    restarting open firmware
    confirming that the firewall allows all incoming thingies
    resetting the router
    making sure the keychain password allows all applications to access it
    connecting to the internet through a computer-to-computer network from another machine
    Because the situation has deteriorated over time, I'd also like to know whether people think that it's two problems (the type of router then later the airport hardware(?)/software(?) itself, perhaps) or just one. Since I've tried basically everything besides switching out our router, I'm kind of inclined to blame it on that, especially because one of the more plausible explanations for this problem that I've heard is a time-out error due to Airport expecting a faster response than it's able to get from older routers; however, the fact that other networks haven't been working means that it's not likely to be just the router. If it's just one problem, which is the simpler explanation, then I guess there's something properly wrong with my computer's software, in which case I guess I'll take it to the Apple Store. :/
    I'm in love with my computer otherwise, and I'll admit that I spent a good twenty minutes sobbing out of frustration over this. Any help would be immensely appreciated.

    HI and Welcome to Apple Discussions...
    Try Changing the Airport Channel
    Open AirPort Utility, located in the Utilities folder in the Applications folder on a computer using Mac OS X.
    Select the device you’re setting up, and then click Manual Setup. Enter the base station password if necessary
    Click AirPort in the toolbar, and then click Wireless.
    Choose a new channel from the Channel pop-up menu.
    Carolyn

  • Self-assigned or Manually Assigned IP Doesn't Work.

    I've got a network of four Macs in my house, using a wireless router from Verizon. This network has been working fine for at least a year. For the last week, though, my MBP can't access the internet or see other computers. My router recognizes the MBP and the MBP shows full bars for the wireless signal, but other than that, nada. This is true whether it's a self-assigned IP or I manually create the IP (using the IP address that the router recognizes as the MBP).
    The MBP hasn't left the house. The entire network set up has not changed.
    I have tried:
    - Manually setting the IP - worked briefly last night, but now doesn't work again.
    - Resetting nvram - didn't work at all
    - Power cycling computers and router in all possible permutations
    - I may have tried other things that I'm not thinking of now
    Any fixes or info on why this kind of thing happens would be greatly appreciated.

    cmoorhead wrote:
    For the last week, though, my MBP can't access the internet or see other computers.
    You might try resetting your connection settings using the steps listed in this message:
    http://discussions.apple.com/thread.jspa?messageID=10695921&start=1
    They're not guaranteed to solve the problem, but they'll only take you a minute or so to try.

  • Media Encoder CC specify file output location doesn't work?

    Hello everybody! When i render a video from Media Encoder CC the "specify output file location" only works if i go to preferences then select the folder,then when i reboot the PC it still says it's going to that location but doesn't. Does this happen to any one else? And how can i fix this? thanks !

    Check your permissions-settings. It sounds like your preference file is is written to a destination that has specific read-write permissions. Or that it is erased when rebooting (schools often have this implemented)

  • Every time I ask Siri to find something near me, she says that she cannot find my location, and to turn on my location settings and siri settings. These are both on and after rebooting it still doesn't work. How do I fix this?

    Every time I ask Siri to find something near me, she says that she cannot find my location because I need to turn on location services in the settings menu and in siri. These are both on, and after rebooting my phone it still doesn't work correctly. How do I fix this?

    No, the app does not have to completely restart. It gets shifted in its open state into storage. Similar to how a computer uses the hard disk when it has insufficient memory.
    What complicates things is that sometimes memory does not get returned for reuse when you close an app. Thus yo should periodically double click the Home button and "delete" unnecessary apps from the multitasking dock and power off and then back on the iPod.

  • My MacBook isn't connecting to the Internet. When I try to connect, it shows the signal strength in the top right corner as if it was connected, but the Internet doesn't work. When I go to my network preferences, it says the ip is self-assigned.

    My MacBook won't connect to the Internet, but it's connected to my router. When I go to network preferences, it says that it has a self assigned ip address, and can't connect to the Internet. How can I fix this? Please help!

    First thing you need I think is to get your iMac connected to the Internet.
    Shut down your iMac and you iPad. Then power off your router. Wait 30 seconds and power up the router.
    After the router indicates that it is connected to the Internet then start up your iMac and see if it connects. If the iMac connects to the Internet then your iPad should too.
    If this power up sequence doesn't work you'll have to dig into the router setup to make sure it is working properly.

  • Using Office 2013 group policy template to define Trusted Locations and Template Locations doesn't work

    User Configuration/Policies/Administrative Templates
    - Using Office 2013 group policy template to define Trusted Locations and Template Locations doesn't work
    Microsoft Word 2013/Word Options/Security/Trust Center/Trusted Locations
    - Allow Trusted Locations on the network: 
    Enabled 
    - Trusted Location #1: 
    Enabled 
    Path:  //server/sharedfoldername   [Edit:  Path:
    \\server\sharedfoldername]
    Date: June 10, 2013
    Description: Trusted Location
    Allow sub folders: Enabled
    The policy appears to apply to the client correctly by adding the following registry key and values:
    HKEY_CURRENT_USER\Software\Policies\Microsoft\office\15.0\word\security\trusted locations\location1
    allowsubfolders: 1
    date: June 10, 2013
    Description: Trusted Location
    Path:  //server/sharedfoldername  [Edit: Path: 
    \\server\sharedfoldername]
    However, when you open Word Options/Trust Centre/Trust Centre Settings…/Trusted Locations
    There are no trusted locations listed under ‘Policy Locations’
    I have tried setting similar settings for setting the Shared Templates folder location and just like the trusted locations policy, the registry keys are created properly in HKEY_CURRENT_USER\Software\Policies however word doesn’t
    seem to recognize these either.
    This used to work flawlessly using the administrative templates for Word 2007 and 2010. Has anyone been able to get these policies to apply successfully, or know why office doesn’t recognize these settings from the Policies registry
    Key?

    This would have been an easy solution to the issue.  Unfortunately it isn't the problem.  This question was originally posted on another Microsoft site and
    was transferred here and when it was transferred the path's changed from the original post: 
    \\server\sharedfodlername to //server/sharedfoldername.  (I will edit the question to show up as it did in the original post) Not sure how that happened.  This
    is still an issue that I haven't been able to get working correctly.
    As it turns out the 'New from Template' interface Word 2013 has developed is very bulky with large thumbnails and is not very customizable nor practical for an office
    that has a large number of templates.   Because I am unsatisfied with the display and performance of the 'New' template chooser I sought after a solution to change the way word creates a document from a template in another thread: 
    http://answers.microsoft.com/en-us/office/forum/office_2013_release-word/how-can-you-change-the-display-of-templates-in/d49194b9-a6b4-4768-8502-7d7b50e9dd65 working through this issue with Jay we were able to develop
    some VB script with handles a very large number of templates in a list view and it works much faster than the built-in Word interface.  The above thread is how I've worked around trying to define a shared template location and I am quite happy with it.

  • I cannot locate my cs6 redemption code and I just purchased a new computer because my old one doesn't work anymore. How can I get my photoshop on this computer? All my other products are registerd with a serial number

    I cannot locate my cs6 redemption code and I just purchased a new computer because my old one doesn't work anymore. How can I get my photoshop on this computer? All my other products are registerd with a serial number

    The activation servers for CS and CS2 stopped working and were taken down. You'll need to take a look at this link for your issue: https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Benjamin

  • The location function in Reminders doesn't work at iphone 3gs and ipad?

    Hello, how can I use the Location feature in the new Reminder app? If I add a new reminder there is no function to put in the location, just the day and the clocktime? Icloud is already installt and worked! It doesn't work at Iphone 3GS and also not at Ipad2? Who can held me?

    Im not of much help, i can just say, i have the same problem!

Maybe you are looking for

  • Satellite P500-1D6 - Small bug between cover plate and screen.

    Hi I have a small bug (in Dutch: "donderbeestje") between the protective glass and the actual screen. Where I bought the laptop they yell me that they can't do anything about it and this is not under warranty of Toshiba. For me however, this should b

  • Still photos in PRE 12 and output to HD DVD for TV

    Hi, I was using Final Cut Express 4 HD on my old iMac but bought a new late 2013 iMac and learned that FCE will not run on Mavericks (and if you install it you will destroy your OS X plugin manager without any chance to repair it)! Ok FC Pro X is far

  • Time Machine and file sharing with XP on a Time Capsule

    Am I right in thinking that I can't use a Time Capsule to support Time Machine on OS-X and to support sharing files between OS-X and XP at the same time given Time Machine will not run on FAT32 and I can't partition Time Capsule hard drives without t

  • Flex Builder 3 New Project

    I am trying to get Flex Builder 3 setup but having some problems configuring it to communicate with the app server. I had this working once but cannot get it back. Flex builder is installed on my XP machine and CF is installed on my Redhat 5 box with

  • Mac Pro 5,1 processor compatibility?

    I have a 2010 8 core 2.4GHz Mac Pro and for curiosity's sake I wanted to know what my options were in terms of upgrade? I just got the unit, so no changes are immediate. But it's my understanding that I could eventually swap the 2.4 chips for faster