Currency not accepting in Record

Dear all,
I'm creating a tax condition record based on weight. But system is not accepting any Unit as currency. What can be the possible reason?
Thanks in advance.

Don't understand your question - tax is normally a percentage why/how do you want to enter a currency?

Similar Messages

  • Query not accepted by Record Group

    Hi,
    The below mentioned query is running in oracle 3.3.4.0.0.(which i'm using in my work) and toad also but in forms 5.0 it is not accepting this query.when i enter this query in existing record group then it shows the error ' error frm-12001'
    -- cannot create the rcord group (check your query).I have declared the variable in forms
    Can someone pls tell me whats wrong with this sql query ?
    Select Aim_Item_Desc.
    From Lib_Annexure_Item_Master A,DEP_STATUS_MASTER b
    Where Aim_Type_Id = (Select Atm_Type_Id
    From Lib_Annexure_Type_Master
    Where Upper(Atm_Type_Desc) = 'CONSTITUTION')
    And (Upper(Aim_Item_Desc) in('TRUST','H U F','SOCIETY','PROPRIETORSHIP')
    And :Global.Fv_C_Des_Ind='P')
    Or ( Upper(Aim_Item_Desc) in ('Public limited company','Private limited company')
    And :Global.Fv_C_Des_Ind ='Q')
    Or (Upper(Aim_Item_Desc) ='PARTNERSHIP'
    And :Global.Fv_C_Des_Ind ='R')
    Or (Upper(Aim_Item_Desc) ='Individual'
    Or :Global.Fv_C_Des_Ind ='S');

    Gowtham1232 wrote:
    Hi,
    The below mentioned query is running in oracle 3.3.4.0.0.Seriously? Is there really a computer left that can run a version of oracle that old?
    (which i'm using in my work) and toad also but in forms 5.0 it is not accepting this query.when i enter this query in existing record group then it shows the error ' error frm-12001'
    As it's forms you may want to ask in the forms forum.

  • Multiple selection of ACCOUNT dimension not accepted by the custom logic

    Hi,
    In below code I am sending "ALL" accounts and time 004.2010 to 012.2010 value from the data manager from manual selection screen. I need code to be executed for all the accounts and above mentioned time periods. But when I run the package it gives below error,
    RUN_LOGIC:Unknown Dimension Name in Keyword: "BPC100001 (ACCOUNT): Failed.
    Even if I put just two dimension member values for account like BPC110000 and BPC120000 it gives above error on account BPC120000. It seems that code can not accept more than one account values. Not sure reason behind the error.
    Any help is appreciated.
    *XDIM_MEMBERSET PROFIT_CTR=120000
    *XDIM_MEMBERSET CURRENCY=LC
    *XDIM_MEMBERSET DATASOURCE=ACTUALS
    *XDIM_MEMBERSET TIME=%TIME_SET%
    *XDIM_MEMBERSET ACCOUNT=%ACCOUNT_SET%
    *XDIM_MEMBERSET PLAN_CYCLE=JUL-2010
    *SELECT(%CURRENT_PERIOD%, "[CURRENT]", "PROFIT_CTR", "[ID] = '120000' ")
    *LOOKUP PL_PLANNING
    *DIM TIME = "%CURRENT_PERIOD%"
    *DIM DIM: ACCOUNT ="%ACCOUNT_SET%"
    *DIM CURRENCY = "LC"
    *DIM DATASOURCE = "ACTUALS"
    *DIM PLAN_CYCLE ="JUL-2010"
    *DIM PROFIT_CTR = "120000"
    *ENDLOOKUP
    *WHEN CURRENCY
    *IS  "LC"
    *REC(EXPRESSION=LOOKUP(DIM),ACCOUNT=%ACCOUNT_SET%)
    *ENDWHEN
    Thanks,
    Viren

    Hi Gersh,
    Thanks for your reply.
    I am under assumption that .LGF file will be executed for all the accounts entered by the user or accounts from master data if not entered. What I mean is for every account number this logic will be implemented. So we will have as many executions of the logic as many accounts we are sending. My aim is to execute all the statements for all the accounts sent from the source.
    i.e
    XDIM_MEMBERSET PROFIT_CTR=120000
    *XDIM_MEMBERSET CURRENCY=LC
    *XDIM_MEMBERSET DATASOURCE=ACTUALS
    *XDIM_MEMBERSET TIME=%TIME_SET%
    *XDIM_MEMBERSET ACCOUNT=%ACCOUNT_SET%
    *XDIM_MEMBERSET PLAN_CYCLE=JUL-2010
    I want al the below statement to be executed  for all the accounts. At the point while wirting the below logic I do not know for which accounts logic should be executed that's why I set account variable in the Scope and used it in below logic.
    I want REC to write one record at a time only but I assuming that REC statement will be executed  as many time as many accounts are sent by the source.*
    *SELECT(%CURRENT_PERIOD%, "CURRENT", "PROFIT_CTR", "ID = '120000' ")
    *LOOKUP PL_PLANNING
    *DIM TIME = "%CURRENT_PERIOD%"
    *DIM DIM: ACCOUNT ="%ACCOUNT_SET%"
    *DIM CURRENCY = "LC"
    *DIM DATASOURCE = "ACTUALS"
    *DIM PLAN_CYCLE ="JUL-2010"
    *DIM PROFIT_CTR = "120000"
    *ENDLOOKUP
    *WHEN CURRENCY
    *IS "LC"
    *REC(EXPRESSION=LOOKUP(DIM),ACCOUNT=%ACCOUNT_SET%)
    *ENDWHEN
    Thanks,
    Viren

  • Sql statement in a table not accepting variable

    I have the following problem on 10.1.0.3.0 with varialbe in an execute immediate statement
    here is the code that I am using
    declare
    remote_data_link varchar2(25) := 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA VARCHAR2(40) := 'UDE_OLTP';
    l_last_process_date date := to_date(to_char(sysdate,'mm-dd-yyyy hh:mi:ss'),'mm-dd-yyyy hh:mi:ss') - 1;
    stmt varchar2(4000) := 'MERGE into applicant_adverseaction_info theTarget USING (select * from '||FROM_SCHEMA||'.applicant_adverseaction_info@'||remote_data_link||' where last_activity > :l_last_process_date ) theSource ON(theTarget.applicant_id = theSource.applicant_id) WHEN MATCHED THEN UPDATE SET theTarget.cb_used = theSource.cb_used, theTarget.cb_address = theSource.cb_address, theTarget.scoredmodel_id = theSource.scoredmodel_id, theTarget.last_activity = theSource.last_activity WHEN NOT MATCHED THEN INSERT(CB_USED, CB_ADDRESS, SCOREDMODEL_ID, APPLICANT_ID, LAST_ACTIVITY) values(theSource.cb_used, theSource.cb_address, theSource.scoredmodel_id, theSource.applicant_id, theSource.last_activity)';
    stmt2 varchar2(4000) := 'MERGE into edm_application theTarget USING (select * from '||from_schema||'.edm_application@'||remote_data_link||' where last_activity > :l_last_process_date) theSource ON (theTarget.edm_appl_id = theSource.edm_appl_id) WHEN MATCHED THEN UPDATE SET theTarget.APP_REF_KEY = theSource.APP_REF_KEY, theTarget.IMPORT_REF_KEY = theSource.IMPORT_REF_KEY, theTarget.LAST_ACTIVITY = theSource.LAST_ACTIVITY WHEN NOT MATCHED THEN INSERT (EDM_APPL_ID, APP_REF_KEY, IMPORT_REF_KEY, LAST_ACTIVITY) values(theSource.EDM_APPL_ID, theSource.APP_REF_KEY, theSource.IMPORT_REF_KEY, theSource.LAST_ACTIVITY)';
    v_error varchar2(4000);
    T_MERGE VARCHAR2(4000);
    stmt3 varchar2(4000);
    BEGIN
    select merge_sql
    INTO T_MERGE
    from transfertables
    where table_name= 'edm_application';
    remote_data_link:= 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA := 'UDE_OLTP';
    --DBMS_OUTPUT.PUT_LINE(SUBSTR(stmt2,1,200));
    --STMT2 := T_MERGE;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    EXECUTE IMMEDIATE stmt2 using l_last_process_date;
    --execute immediate stmt3 ;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    dbms_output.put_line(substr(stmt2,1,200));
    commit;
    EXCEPTION
    WHEN OTHERS THEN
    V_ERROR := SQLCODE||' '||SQLERRM;
    v_ERROR := V_ERROR ||' '||SUBSTR(stmt2,1,200);
    DBMS_OUTPUT.PUT_LINE(V_ERROR);
    --dbms_output.put_line(substr(stmt2,1,200));
    END;
    This works perfectly
    but if I change it to get the same statement in a db table
    declare
    remote_data_link varchar2(25) := 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA VARCHAR2(40) := 'UDE_OLTP';
    l_last_process_date date := to_date(to_char(sysdate,'mm-dd-yyyy hh:mi:ss'),'mm-dd-yyyy hh:mi:ss') - 1;
    stmt varchar2(4000) := 'MERGE into applicant_adverseaction_info theTarget USING (select * from '||FROM_SCHEMA||'.applicant_adverseaction_info@'||remote_data_link||' where last_activity > :l_last_process_date ) theSource ON(theTarget.applicant_id = theSource.applicant_id) WHEN MATCHED THEN UPDATE SET theTarget.cb_used = theSource.cb_used, theTarget.cb_address = theSource.cb_address, theTarget.scoredmodel_id = theSource.scoredmodel_id, theTarget.last_activity = theSource.last_activity WHEN NOT MATCHED THEN INSERT(CB_USED, CB_ADDRESS, SCOREDMODEL_ID, APPLICANT_ID, LAST_ACTIVITY) values(theSource.cb_used, theSource.cb_address, theSource.scoredmodel_id, theSource.applicant_id, theSource.last_activity)';
    stmt2 varchar2(4000) := 'MERGE into edm_application theTarget USING (select * from '||from_schema||'.edm_application@'||remote_data_link||' where last_activity > :l_last_process_date) theSource ON (theTarget.edm_appl_id = theSource.edm_appl_id) WHEN MATCHED THEN UPDATE SET theTarget.APP_REF_KEY = theSource.APP_REF_KEY, theTarget.IMPORT_REF_KEY = theSource.IMPORT_REF_KEY, theTarget.LAST_ACTIVITY = theSource.LAST_ACTIVITY WHEN NOT MATCHED THEN INSERT (EDM_APPL_ID, APP_REF_KEY, IMPORT_REF_KEY, LAST_ACTIVITY) values(theSource.EDM_APPL_ID, theSource.APP_REF_KEY, theSource.IMPORT_REF_KEY, theSource.LAST_ACTIVITY)';
    v_error varchar2(4000);
    T_MERGE VARCHAR2(4000);
    stmt3 varchar2(4000);
    BEGIN
    select merge_sql
    INTO T_MERGE
    from transfertables
    where table_name= 'edm_application';
    remote_data_link:= 'UDE_DATATRANSFER_LINK';
    FROM_SCHEMA := 'UDE_OLTP';
    --DBMS_OUTPUT.PUT_LINE(SUBSTR(stmt2,1,200));
    STMT2 := T_MERGE;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    EXECUTE IMMEDIATE stmt2 using l_last_process_date;
    --execute immediate stmt3 ;
    dbms_output.put_line(from_schema||' '||remote_data_link||' '||l_last_process_date);
    dbms_output.put_line(substr(stmt2,1,200));
    commit;
    EXCEPTION
    WHEN OTHERS THEN
    V_ERROR := SQLCODE||' '||SQLERRM;
    v_ERROR := V_ERROR ||' '||SUBSTR(stmt2,1,200);
    DBMS_OUTPUT.PUT_LINE(V_ERROR);
    --dbms_output.put_line(substr(stmt2,1,200));
    END;
    I get ora-00900 invalid sql statement
    can somebody explain why this happens
    Thanks

    I agree with jan and anthony. Your post is too long and ill-formatted. However here's my understanding of your problem (with examples though slightly different ones).
    1- I have a function that returns number of records in a any given table.
      1  CREATE OR REPLACE FUNCTION get_count(p_table varchar2)
      2     RETURN NUMBER IS
      3     v_cnt number;
      4  BEGIN
      5    EXECUTE IMMEDIATE('SELECT count(*) FROM '||p_table) INTO v_cnt;
      6    RETURN v_cnt;
      7* END;
    SQL> /
    Function created.
    SQL> SELECT get_count('emp')
      2  FROM dual
      3  /
    GET_COUNT('EMP')
                  14
    2- I decide to move the statement to a database table and recreate my function.
    SQL> CREATE TABLE test
      2  (stmt varchar2(2000))
      3  /
    Table created.
    SQL> INSERT INTO test
      2  VALUES('SELECT count(*) FROM p_table');
    1 row created.
    SQL> CREATE OR REPLACE FUNCTION get_count(p_table varchar2)
      2     RETURN NUMBER IS
      3     v_cnt number;
      4     v_stmt varchar2(4000);
      5  BEGIN
      6     SELECT stmt INTO v_stmt
      7     FROM test;
      8     EXECUTE IMMEDIATE(v_stmt) INTO v_cnt;
      9     RETURN v_cnt;
    10  END;
    11  /
    Function created.
    SQL> SELECT get_count('emp')
      2  FROM dual
      3  /
    SELECT get_count('emp')
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at "SCOTT.GET_COUNT", line 8
    ORA-06512: at line 1
    --p_table in the column is a string and has nothing to do with p_table parameter in the function. And since there's no p_table table in my schema function returns error on execution. I suppose this is what you mean by "sql statement in a table not accepting variable"
    3- I rectify the problem by recreating the function.
      1  CREATE OR REPLACE FUNCTION get_count(p_table varchar2)
      2     RETURN NUMBER IS
      3     v_cnt number;
      4     v_stmt varchar2(4000);
      5  BEGIN
      6     SELECT replace(stmt,'p_table',p_table) INTO v_stmt
      7     FROM test;
      8     EXECUTE IMMEDIATE(v_stmt) INTO v_cnt;
      9     RETURN v_cnt;
    10* END;
    SQL> /
    Function created.
    SQL> SELECT get_count('emp')
      2  FROM dual
      3  /
    GET_COUNT('EMP')
                  14
    Hope this gives you some idea.-----------------------
    Anwar

  • How to  issue  currency notes  in  payment program for  Foreign Exchange

    HI
    I    have an issue  in   Foreign exchange  transaction  using  SPOT transaction.   Below is the  process flow
    1.   Record  the  spot transaction
    2.  Settle  transaction
    3. Tranfer  the  documents  to  FI  
    In   ( 3)   the   posting   create   posting in   the customer  for  whom  the  forex is to be issued.   
    My  QUESTION :
    I    have  to   pay  the customer   in   CURRENCY NOTES  and  NOT   by  CHECK    in  foreign currency.   The  automatic payment program  has  payment methods  viz  check, wire transfer.     How  do  I   issue   CURRENCY NOTES    or  TRAVELLERS CHECK .
    Thanks  for   a   immediate  reply.
    kamala

    Hi,
    I am not sure this is a right solution.  But I have some inputs on your requirements:
    1. For traveller cheques you may create a new payment method and do the required configuration for automatic payment program.  Don't generate any payment medium while running APP.
    2. For currency notes (cash payment) I am not sure how it works.  But probably it is possible by creating an account (account ID) for a particular house bank and use that (house bank & account id) for making payment. 
    Per my knowledge we have never used payment method cash (currency notes) in APP.  But logically it would work by create a new payment method and doing the required config for APP.
    Please update if you found a better way to do this.
    thanks & regards,
    Kumar

  • The report does not accept the value for apps.fnd_profile.value('USER_ID')

    Hi,
    I followed the below note and added a report to my SSHR menu.
    How To Add A Report To A 11i Self Service Menu [ID 334847.1]
    In my report , I have a condition in the query
    and a.created_by =apps.fnd_profile.value('USER_ID')
    When the report is submitted as a request , it works fine., however the same report when called from the self service page does not accept any value for apps.fnd_profile.value('USER_ID') .
    Is there a workaround to handle this problem.
    regards

    hi,
    I had already tried the option apps.fnd_global.USER_ID too.
    However it does not accept the value for apps.fnd_global.USER_ID.
    We want to call the reports in SSHR using oaf and at the same time the records that are pending for approval created by the employee should only be visible.
    regards
    Maya

  • 免 Chaines Char not accepted in QA system, working fine in Dev and PROD

    Hi Experts,
    I am stuck withchines char e.g. 免
    BW QA is not accepting it, I can see the PSA data 免 converted to #, where as same records show proper 免 in BW DEV and PROD.
    I checked the data in source system (RSA3) properly showing 免.
    I rechecked the SM59 RFC setting in QA and compare with DEV.
    All system are unicode supported.
    Please help to resolve.
    Thank-You.
    Regards,
    VB

    I crated a new flat file text datasource and tried to load data (chines char) and that to work in QA.
    Don't understand what's issue with 0CUST_SALES_ATTR extractor. ?
    Any help/experience is welcome.
    Thank-You.
    Regards,
    VB

  • Field Local currency not filled : POSDM Error

    Dear Experts,
    When I am posting a POS transaction( in  /n/posdw/mon0 ) in SAP BW and trying to process 0001 - Supply BW without  Distribution (Collective Processing) its giving me error that ---Field local currency not maintained.  I have checked all POS configurations .Kindly Suggest me if I am missing anything in BW side. 
    Thanks & Regards
    Rakesh

    Dear Vikrant,
    Thank you for your input. I have already loaded the master data.
    But, with your suggestion I have checked the 0plant data in BI and found that Local currency is not maintained in the respective records. After maintaining the local currency manually , the error get resolved.
    Kindly let me know, while pulling the Plant master from ERP to BI, why the local currency is not filled in the record. Suggest me to resolve this.
    Thanks & regards
    Rakesh

  • APEX DB: Not accepting the constraint ON UPDATE CASCADE

    Hi
    My schema tables is not accepting the ON UPDATE CASCADE constraint as it was accepting the ON DELETE CASCADE constraint. My use case is to update the records in the child tables, when a PK of parent table is modified/updated. Please help.
    Thanks
    Bhavesh

    Bavesh,
    Boy this question could spark a huge debate about relational theory and the merits of allowing the update of a primary key... But instead of stirring the pot, I'll answer your question. :-)
    Unfortunately Oracle does not support the ON UPDATE CASCADE constraint that PostgreSQL and other databases do.
    You might look at [this discussion|http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5773459616034] on ASK TOM where he talks about the merits and references a couple ways you can achieve similar things in Oracle.
    Hope That Helps,
    - Doug -
    http://sumnertech.com/

  • My tv does not accept the connector that my apple tv has

    my tv does not accept the connector that my apple tv , what can I do?

    You'd need to look for an HDMI to RCA adapter of some kind - as the RCA connectors are generally for standard definition video and stereo audio, the picture quality may not be great as AppleTV really expects an HD TV of 720p or more.  You would have more issues if the TV is not widescreen as well.
    I can't really recommend an adapter for those connections as I've never used one.  The annoyance with HDMI is despite offering good quality, adapters are frowned upon by the media 'industry' who don't want anyone being able to record/copy via analogue connections.
    I'd maybe look on Amazon in your country or e-bay for something, but as I say you can't guarantee it would work.
    The AppleTV 1 had analogue connections but that was component video (as well as HDMI) not really composite (yellow RCA) though some reported some kind of 'hack' that allowed one of the component RCA connections to output composite signal.  That model is discontinued and really doesn't support many of the newer features.
    Current AppleTVs are not an ideal mix with modern TVs I'm afraid.   You may not want a new TV but rather than trying to find an adapter it might be worth considering an entry level HDMI TV as they are far cheaper these days.

  • Workbench Request not accepted by SAP NW

    I work on SAP NetWeaver 7.0. The system prompt for Workbench request. I entered CTS. But the system did not accept it. The system told me the value not exist. I also tried other valus: RSMON, SPRO. The system still does not like the values.
    What value should I type in for Workbench request?
    Thanks for help!
    Mike

    Hi,
    If your client setting is *automatic recording of change then you dont have to give any transport request number.System will create the respective transport request.
    Select the option create request and give the Short Description and say save.
    Thansk,
    Harshal

  • 541 E not accepting

    Hi All,
    Mvt type 541 E (sales order stock) is not accepting in the system. Following error appears
    Special Stock E not supported (check your entry) while this mvt type is available.
    I am sending sales order stock to vendor and getting it done back through subcontracting. Please help me out.
    Rgds,
    RB

    Hi,
    Subcontracting special stock segment cannot be combined with sales order stock in standard system. So, you won't be able to use 541E.
    If you work in MTO environment (procurement for sales order stock or project stock), you have to decide whether the components are to be asigned to the order / project (1) or independently from the order / project (2) - during planning you control it via MARC-SBDKZ.
    Based on MARC-SBDKZ's value
    1. Components assigned to sales order / project
    You cannot move the components to the subcontractor special stock segment. When you receive your goods the components will be consumed from the (sales order or project) special stock by 543E or 543Q.
    (In this case the components remain in your SLoc till the consumption)
    2. Components are not assigned to sales order / project
    This is the normal subcontracting scenario where you send your goods to the subcontractor (mvt 541) and consume them from the subcontractor's special stock segment (543).
    Please check SAP online help:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/4d/2b90b043ad11d189410000e829fbbd/content.htm
    Withdrawal from Stock of Mat. Provided or Sales Order/Project Stock
    For components that are managed in sales order stock or project stock, you can define whether the components are to be withdrawn directly from each sales order/project stock or from the stock of material provided to vendor. You manage this via the dependent requirements indicator for individual customer requirements and collective requirements (MARC-SBDKZ).
    You can maintain this indicator in the following places:
    in the MRP view of the material master record (MRP 4)
    in the explosion types for the BOM item (in Customizing for Production in the step Basic Data -> Bill of Material -> Item Data -> Define explosion types)
    Configuring the explosion types has priority over the configuration in Inventory Management.
    If the indicator is set at Collective requirements only (2), the materials are withdrawn from the stock of material provided to vendor. If this indicator is set any other way, the system withdraws materials from sales order stock or project stock.
    Regards,
    Csaba
    Edited by: Csaba Szommer on Mar 7, 2009 8:58 PM

  • New password not accepted - why ?

    I had no record of a Useer name or password, then created new password for my email address, that was not accepted - said incorrect.  Could not go any further !

    Hi,
    I am sorry for the trouble with your log in.
    Please let me know if you are Acrobat.com user or your subscription name such as ExportPDF or PDF Pack.   If you are a subscriber to those services please check your email address as we cannot find your current email address as a subscriber to those services.
    Please let me know if you still have the same issue.
    Thank you
    Hisami

  • External table is not accepting more than 255 Characters

    Hi,
    I'm new to External table.. Somehow External table is not accepting more than 255 Characters even though I'm using VARCHAR2(4000 BYTES).. Can you please help me..
    CREATE TABLE DM_CL_ExterTbl_Project
    project_name VARCHAR2(80 BYTE),
    project_id VARCHAR2(20 BYTE),
    work_type VARCHAR2(100 BYTE),
    work_description               VARCHAR2(4000 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY UTL_FILE_DIR
    ACCESS PARAMETERS
    records delimited by '#(_@p9#' SKIP 1
    logfile 'pp.log'
    badfile 'pp1.bad'
    fields terminated by ','
    OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM
    missing field values are null
    REJECT ROWS WITH ALL NULL FIELDS
    project_name,
    project_id,
    work_type,
    work_description
    LOCATION (UTL_FILE_DIR:'TOG_Data_Extract.csv')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING
    Thanks in advance..
    ~~Manju

    I got the asnwer.. In the filed list I have to specify the datatype & it's Size otherwise by default it will take CHAR(255)..
    work_type CHAR(4000) solved the problem..!!

  • Exchange on Local LAN prompting password and not accepting

    I have users that have Exchange email account setup on their iPad/iphone(ios5,6,8) (Wi-Fi only) and it works fine when they are away from the company. When they are connected to the companies Wi-Fi and is on the same local subnet as the Exchange server they can't connect to the server. They receive this error "Password is not correct. Enter a password for Exchange account" We tried to enter the password multiple times in multiple devices but doesn`t accept. Does anybody have any ideas?
    -Exchange 2013
    -DNS win 2012, We have DNS records for local and global domain names.
    -We tried with iphone 4s, Ipad air2, iphone 5
    -We don`t have any problem with Laptops (win 7). They are using Outlook anywhere settings, too
    Thank you very much in advance.

    Sometimes they work fine, doesn`t ask password but some days it is asking password and not accepting.

Maybe you are looking for

  • Cannot connect to ITUNES store on IPOD touch 1st generation?

    I have an Apple IPOD Touch, 1st generation. I can no longer connect to the ITUNES store. IPOD is almost 4 years old. I've re-set the network settings, (not the actual IPOD itself, would prefer not to do that). I do have internet and all else works fi

  • Safari not rendering a page correctly

    A webpage I created in Dreamweaver uses drop down menus that are supposed to display just to the left of the link they drop from. In all other browsers they work correctly, but since the latest upgrade in Safari to 3.0.4 as a part of OS 10.4.11 on my

  • Lost all Music Purchases

    I purchased a bunch of music from my iPod (wireless/itunes) - I connected my iPod to the USB port on my computer. After about 2 minutes as it was downloading iTunes 9.2 all of my purchases made from my iPod disappeared. I have no idea what to do - I

  • What is the search syntax when trying to filter recipients in Exchange Admin Center?

    I'm hoping it's just an oversight on my part but, for the life of me, I can't figure out how to perform an advanced search. Interesting enough, when you start typing it provides tokens but there doesn't appear to be any wildcard options. As an exampl

  • SET @i=0; SELECT  @i:=@i+1 as row_number, * FROM table;

    How to execute this query in JAVA JDBC?? SET @i=0; SELECT  @i:=@i+1 as row_number, * FROM table;Please HELP!!!! Edited by: Tost on Mar 12, 2008 12:24 PM Edited by: Tost on Mar 12, 2008 12:25 PM