FRM-41050

I have a form where a field (Tax payer id) is synchronized to a database column say column1. The form gets data using a view.
The tax payer id field is in the VNDR block. Update allowed is set to 'Yes', and locking mode is set to 'immedidate' for the block. The tax payer id field itself is a non-database text field with update allowed is 'Yes' and lock record is 'No'.
There are 'pre-insert','on-insert','pre-update','on-lock','pre-query','post-query' etc triggers on the vndr block. I modified the 'post-query' to get the tax payer id from a column2 if column1 is null.
When I run the form and query for a vendor (that has data in column2 and column1 is null) using the vendor# or the vendor name, I get all the information back except the taxpayer id. I also get the FRM-41050 :You cannot update this record message.
Any suggestions on what is causing it and how to solve?
Thanks,
Chiru

The tax payer id text field is a non-db field synchronized to a db column. So, does any one know if there is a way to
set the text field to the column2 value with out assigning the column2 value to the tax payer id field?
Currently my code looks like this(this procedure gets called from the post_query trigger on the 'vndr' block):
procedure Resolve_num_1099 is
begin
  if :vndr.num_1099_mir is null and :vndr.individual_1099 is not null then
    :vndr.num_1099_mir := :vndr.individual_1099;
  end if;
--SET_RECORD_PROPERTY(:system.trigger_block,:system.trigger_record,STATUS,QUERY_STATUS);
end Resolve_num_1099;I am trying to get the value from the 'individual_1099' field and assign it to the tax payer id text field 'num_1099_mir' if the 'num_1099_mir' (which is synchronized with num_1099 db column) is null.
Instead of using the assignment statement
  :vndr.num_1099_mir := :vndr.individual_1099;Is there a way to set the value at run time?
Thanks,
Chiru

Similar Messages

  • Suppress FRM-41050 through Forms Personalization

    I have a view only form wherein the user can view information but cant update. This form gives warning messages FRM-41050 (You cannot update this record) for each record fetched. I am looking to suppress / hide these messages through forms personalization...Can anybody help me or through some ideas on this...thanks in advance

    Hello-
    I am just wondering if you were able to resolve this issue? I am running into the same problem.
    Thanks,
    Amy Bauman

  • 11.5.9: APXINWKB  FRM-40212: INVALID VALUE

    제품 : FIN_AP
    작성날짜 : 2004-10-14
    11.5.9: APXINWKB FRM-40212: INVALID VALUE
    ==========================================
    PURPOSE
    11.5.9 INVOICE WORKBENCH에서 나타나는 문제를 해결하기 위해 작성했습니다.
    Problem Description
    11.5.9 에서 Prepayment에 Apply된 invoice 의 Distribution Button을 눌렀을때 다음과 같은 Error Message 가 발생한다.
    FRM-41050: You cannot update this record
    FRM-40212: Invalid value for field REQUESTER_NAME
    Workaround
    11.5.9 에서는 다음과 같이 manual하게 작업을 해주어야한다.
    @ 01. Please make a backup copy of the $AP_TOP/forms/US/apxinwkb.fmb file.
    @ 02. Open the new file in Forms Builder, and navigate to Program Units.
    @ 03. Select the INV_SUM_FOLDER_ITEM_OVERFLOW package Body.
    @ 04. Find the requester_name_display procedure. It should show as follows:
    @ procedure requester_name_display (event varchar2) is
    @ begin
    @ if (event in ('INIT',
    @ 'WHEN-NEW-RECORD-INSTANCE',
    @ 'POST-QUERY')) then
    @ IF :inv_sum_folder.requester_id is not null THEN
    @ SELECT full_name
    @ INTO :inv_sum_folder.requester_name
    @ FROM per_all_people_f pap
    @ WHERE person_id = :inv_sum_folder.requester_id
    @ AND :inv_sum_folder.invoice_date >= pap.effective_start_date
    @ AND :inv_sum_folder.invoice_date <= nvl(pap.effective_end_date,sysdate);
    @ END IF;
    @ else
    @ message('Invalid event passed to requester_name_display');
    @ Raise Form_Trigger_Failure;
    @ end if;
    @ end requester_name_display;
    @ 05. Insert the set_item_property statement so the code now is updated to:
    @ procedure requester_name_display (event varchar2) is
    @ begin
    @ if (event in ('INIT',
    @ 'WHEN-NEW-RECORD-INSTANCE',
    @ 'POST-QUERY')) then
    @ IF :inv_sum_folder.requester_id is not null THEN
    @ SELECT full_name
    @ INTO :inv_sum_folder.requester_name
    @ FROM per_all_people_f pap
    @ WHERE person_id = :inv_sum_folder.requester_id
    @ AND :inv_sum_folder.invoice_date >= pap.effective_start_date
    @ AND :inv_sum_folder.invoice_date <= nvl(pap.effective_end_date,sysdate);
    @ END IF;
    @ --Bug 2621328
    @ set_item_property('INV_SUM_FOLDER.requester_name',
    @ ITEM_IS_VALID,
    @ PROPERTY_TRUE);
    @ else
    @ message('Invalid event passed to requester_name_display');
    @ Raise Form_Trigger_Failure;
    @ end if;
    @ end requester_name_display;
    @ 06. Save the changes and recompile the form.
    @ 07. Test the changes.
    Solution Description
    공식적인 해결책은 Fin_PF.E를 적용하는 것이다.
    Reference Documents
    Note 272982.1

    When I update fnd_profile.value('ORG_ID') of the sql of lov to a specific value org_id(for example 120),
    then compile the form. After creating a record, to return back to find window ,the item of lov can show record.
    So I think that it have not get value from fnd_profile.value('ORG_ID') after creating a record.
    Why is this?
    Thanks.

  • What Can I Do About This Error?

    I have 2 form programs. The first program is the main menu. The user pushes a
    button and the program transfers control to a second form program. On this second screen, the user enters an SSAN. At the bottom of the screen there is a
    message which says:
    'Enter a query: press F8 to execute, Ctrl + q to cancel'
    I press F8 and get the error message:
    FRM-41050: YOU CANNOT UPDATE THIS RECORD.
    I know that I am attempting to update a record on a block that does not allow
    updates. I also know that I should not update records in this block until I have
    set the UPDATE ALLOWED BLOCK PROPERTY TO TRUE.
    However I have said:
    SET_BLOCK_PROPERTY('NCOER',UPDATE_ALLOWED,PROPERTY_TRUE);
    and I still get the error message:
    FRM-41050: YOU CANNOT UPDATE THIS RECORD.
    What can I do to get around this error?

    I presume that your Form is in CHANGED mode and when you go to second screen and enter SSAN and press F8, then it will give you the error "YOU CANT UPDATE RECORD".
    Before pressing F8 you need to go into enter_query mode and then do the query.
    Please mark the answer if it helps

  • Debugger - How to Find Error

    Hello.
    When I run a form, I receive a 'FRM-41050: You cannot...' message.
    There is a way to find out where is the error with Debugger without trace all program ?
    How ?
    Thank's in advance.

    The code is fine.
    Check the properties of the block. Most likely the Update Allowed Property is set to False. Change that to True and you should be fine.
    Sudha

  • Security locking insert ,update and delete

    Hi all,
    for security purpose i want a user to enter a form and not allow to him to insert or update or delete any data,
    i tried personalize form and set the update and insert and delete ALLOWED property to false in the trigger (WHEN-NEW-FORM-INSTANCE) it work but it generate severeal message to the user (FRM-41050: You cannot update this record) is there any way to do this issue or any modification to what i did??
    any advice will be approtiated.

    UPDATE emp_dept
    SET loc = 'BOSTON'
    WHERE ename = 'SMITH';But that doesn't make sense. You cannot just LOC for SMITH, because LOC is not an attribute of EMP. If you change the LOC in the view then you must change it for all employees in DEPT 30 (or whatever).
    The key preserved thing is merely about maintaining your data integrity.
    I rather not use Instead Of Trigger because it take a lot of PL/SQL code :(The problem is, your business rule is not clear. Are you wanting to change the LOC for the DEPT record which is the DEPTNO to which SMITH belongs? Or are you wanting to change SMITH's DEPTNO to be the one for the BOSTON office?
    Cheers, APC

  • Too many rows found

    I have two data blocks, one data block joins two tables and second datablock is based on one table.
    first datablock has all fields with 1:1 relationship with Packing_id and second data block details has multiple rows
    for every Packing_id. I wrote 2 procs for 2 datablocks are called in respective Post-Query trigger.
    My problem is when I am running forms it gives error Message('too many rows found_orders_begin');
    Here are my codes.
    PROCEDURE post_query IS
    CURSOR mast_cur IS
    SELECT pa.ship_to_last_name,
    pa.ship_to_first_name,
    pa.ship_to_address1,
    pa.ship_to_address2,
    pa.ship_to_city,
    p.packing_id,
    FROM packing_attributes pa,packing p
    WHERE p.packing_id ; = pa.packing_id
    AND p.packing_id ; = :PACKING_JOINED.PACKING_ID;
    BEGIN
    Message('too many rows found_orders_begin');
    OPEN mast_cur;
    loop
    FETCH mast_cur INTO :PACKING_JOINED.SHIP_TO_LAST_NAME,
    :PACKING_JOINED.SHIP_TO_FIRST_NAME,
    :PACKING_JOINED.SHIP_TO_ADDRESS1,
    :PACKING_JOINED.SHIP_TO_ADDRESS2,
    :PACKING_JOINED.SHIP_TO_CITY,
    :PACKING_JOINED.PACKING_ID,
    end loop;
    CLOSE mast_cur;
    EXCEPTION
    WHEN too_many_rows THEN
    Message('too many rows found');
    WHEN no_data_found THEN
    Message('no data was found there');
    WHEN OTHERS THEN
    Message('do something else');
    END post_query;
    Detail proc
    PROCEDURE post_query IS
    CURSOR det_cur IS
    SELECT pd.quantity,
    pd.stock_number,
    FROM packing_details pd,packing p
    WHERE p.packing_id ; = pd.packing_id
    AND pd.packing_id = :PACKING_JOINED.PACKING_ID;
    BEGIN
    Message('too many rows found_pack_begin');
    OPEN det_cur;
    FETCH det_cur INTO
    :DETAILS.QUANTITY,
    :DETAILS.STOCK_NUMBER,
    CLOSE det_cur;
    EXCEPTION
    WHEN too_many_rows THEN
    Message('too many rows found');
    WHEN no_data_found THEN
    Message('no data was found there');
    WHEN OTHERS THEN
    Message('do something else');
    END post_query;
    Thanks in advance for your help.
    Sandy

    Thanks for reply.
    Maybe it gives this message because you have programmed to show this message ?
    I intentionally gave this message to see how far my code is working,if I don't give this message and execute query I get FRM-41050:You cannot update this record.
    Even though I am not updating record(I am querying record) and data block UPdate Allowed is set to NO.
    Some additional comments on your code:
    What is the loop supposed to do? You just fill the same fields in forms repeating with the values of your cursor, so after the loop the last record from your query will be shown. In general, in POST-QUERY you read Lookup's, not details.
    Sorry but I have no idea how to show detail records,thats why i tried with loop. In first proc I will have only 1 row returned so I guess I don't need loop in that proc?
    In second there will be multiple rows for one packing_id(packing_id is common column for both block), please let me know how to do that?
    Your exception-handler for NO_DATA_FOUND and TOO_MANY_ROWS are useless, for these errors cannot be raised using a cursor-for-loop
    I will remove these. Thanks
    Sandy
    Edited by: sandy162 on Apr 2, 2009 1:28 PM

  • FRM-40405 (No Changes to apply)

    When i open a form through menu and save record i am getting the message 'FRM-40405 No changes to apply'.
    I am not geeting the error while running the form independently i.e not calling through menu. commit_form built is used in key-commit trigger.
    I am using OAS 4.0.8 and Forms 6i with Patch 1.

    I think in this case, you issued a commit without actually changing any data, so the commit was not necessary. Many Times I had to do this and did not want to see this error.
    What you can do to overcome this is to create a forms 'on error' trigger. Then trap the error like follows -
    DECLARE
    errnum NUMBER := ERROR_CODE;
    errtxt VARCHAR2(80) := ERROR_TEXT;
    errtyp VARCHAR2(3) := ERROR_TYPE;
    BEGIN
    IF errnum = 40301 THEN
    Message('Your search criteria identified no matches... Try Again.');
    ELSIF errnum = 40350 THEN /* no records found */
    null;
    ELSIF errnum = 41026 THEN /* FIELD OUTPUITING*/
    Message('This field is calculated');
    ELSif errnum=40401 then /* double commit somewhere */
    null;
    ELSif errnum=40505 then /* double commit somewhere */
    null;
    ELSif errnum=41050 then /* Record has been saved already */
    null;
    ELSIF errnum=41008 then /* Undefined Keys */
    null;
    ELSIF errnum=40100 then /* beyond first record */
    null;
    ELSIF errnum=40200 then /* field protected against update */
    null;
    ELSIF errnum=40352 then /* beyond last record */
    endif;

  • Getting error message FRM-40700:No such trigger: SPECIAL20

    Hi,
    We have designed a custom report (Quote) and would like to use Special Menu's(Reports Menu) to open this custom Report. When I try to open this Report using
    REPORTS->Quote, The Report is opening seccuessfully but i am getting following error message at the bottom of screen bar.How can I clear this message ?
    FRM-40700:No such trigger: SPECIAL20
    The code which I wrote in the custom.pll is
    IF (form_name = 'OEXOEORD') THEN
    -- Enable View Order Report -- V1.4 --
    if (event_name = 'WHEN-NEW-FORM-INSTANCE') then
    app_special.instantiate('SPECIAL20', 'View Order Report');
    app_special.enable('SPECIAL20',PROPERTY_OFF);
    else
    if (event_name='WHEN-NEW-BLOCK-INSTANCE') THEN
    if block_name='ORDER' then
    app_special.enable('SPECIAL20',PROPERTY_ON);
    else
    app_special.enable('SPECIAL20',PROPERTY_OFF);
    end if;
    end if;
    end if;
    if (event_name='SPECIAL20' and block_name='ORDER') then
    param_to_pass1 := name_in('ORDER.HEADER_ID');
    select order_number into param_to_pass2 from oe_order_headers_all where header_id=param_to_pass1;
    editor_pkg.report(BSI_Quote(param_to_pass2), 'Y');
    null;
    end if;
    end if;
    Please give me valuable inputs on this issue.
    Thanks,
    HTH

    Hi,
    your package " app_special" does a call to "execute_trigger('SPECIAL20');" ,
    but there is no trigger with this name in your form. ( perhaps an Menu-item exists with this name.)
    Lock for "execute_trigger" in:
    app_special.instantiate('SPECIAL20', 'View Order Report');

  • FRM-92010 Error while saving a form in HRMS

    Hi,
    I created a new 12.1.1 instance and impletented HRMS as per doc id#145837.1.
    Applied patch 8934107, Ran DataInstall and hrglobal.drv.
    Now while saving the forms we are getting the following error: (in application.log)
    10/05/13 18:12:03.269 formsweb: Forms session <1> aborted: unable to communicate with runtime process.
    10/05/13 18:12:03.270 formsweb: Forms session <1> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
    at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    I have also applied patch 8682249 as per doc 867501.1 (since error was the same) but still no luck.
    Please help.
    Regards,
    Neeraj
    Edited by: user556153 on May 13, 2010 6:19 AM

    Hi;
    Did you checked
    Queries Error With FRM-92101 In Many NLS Forms [ID 443922.1] << seems similar error like yours
    Forms FRM-92050, FRM-92100, FRM-92101, FRM-92102 Reference Guide [ID 444690.1]
    If its not help please enable trace
    How To Perform System Tracing For All Forms Runtime Processes? [ID 400144.1]
    Regard
    Helios

  • FRM-41211 Integration Error SSL - OracleAS 10g

    Hi.
    I have error Frm-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms.
    I have error: FRM-41211 SSL integration error .....
    OracleAS server began on Windoes XP SP2.
    Do you help me ?

    Hi,
    I remember having seen this issue in teh apst. My best recommendation is to work with customer support (metalink.oracle.com)
    Frank

  • FRM-41211 Integration Error SSL - Oracle Forms 10g

    Hi all.
    I have FRM-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms in this code:
    =====================================================
    DECLARE
    BEGIN
    repid := find_report_object('MODULE21');
    v_rep := RUN_REPORT_OBJECT(repid);
    -- jobid := substr(v_rep, length('rep60_WS70004')+2, length(v_rep));
    -- web.show_document('/reports/rwservlet/getjobid'||jobid||'?server=rep3945','_blank');
    END;
    =====================================================
    I have error: FRM-41211 SSL integration error .....
    OracleAS 10g server began on Windows XP SP2.
    Do you help me ?
    Very thanks !!

    Do you help me ?
    Thanks.

  • FRM-92101 error while running report from a button or menu

    Hi All,
    I am getting the error FRM-92101 while running report without parameter from a button or menu. I am using Developer Suit 10g. I get the error as it shows there has some configuration problem in my form. Will you please help me anyone how can i solve the problem. My previous forms running very well both with parameter and without parameter.
    Arif

    Hello Sir,
    Thanks for your cooperation. I have solved my problem by myself. The fact was that, when i tried with the following code which made my report---
    SELECT br.bid, br.bname, br.branchtxnstatus, dif.difference
    FROM branch br,
    (SELECT gladbrid branchid,
    SUM
    (CASE
    WHEN ga.gl_acc_categry IN ('L', 'I')
    THEN gd.gladbalance
    ELSE -1 * gd.gladbalance
    END
    ) AS difference
    FROM glaccount ga, glaccountdetail gd
    WHERE ga.glid = gd.gladglid
    GROUP BY gladbrid) dif
    WHERE dif.branchid = br.bid AND br.branchtxnstatus = :Br_Status
    and dif.difference!=0
    ORDER BY br.bid;
    and the code against the button or menu item is---
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('ASSET');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    which has shown the error FRM-92101 and didn't run the report.
    In that case I have changed the query to run the report. first of all i create a view following the query and build the report using a simple select query. that's etc. my report running fine now.
    It is mentioned that there had no error on my codes.
    Arif

  • Can not delete record from the master block ,frm-40202 field must be entere

    hi ,
    i have built a form which contain master and details blocks
    the problem is
    when i try to delete a record from the master block it gives me new serial for the transaction and when i try to save it, it says
    >frm-40202 field must be entered
    where this field is required and i cant save it
    although in another form when i delete from the master it gives me the previous record and it works properly
    if any one has any ideas pls help me
    thank u
    ------- the master block has a trigger when-create-recoder
    Declare>v_dummy number;
    Begin
    Select nvl(max(ERNT_NO),0) + 1 >Into v_dummy
    From LM_RENT_EXPNMST >Where cmp_no = :LM_RENT_EXPNMST.cmp_no
    And brn_no = :LM_RENT_EXPNMST.brn_no>and fiscal_yr = :LM_RENT_EXPNMST.fiscal_yr;
    >:LM_RENT_EXPNMST.ERNT_NO := v_dummy;
    END;
    IF :PARAMETER.RNT_NO IS NOT NULL THEN
         :LM_RENT_EXPNMST.RNT_NO:=:PARAMETER.RNT_NO;
              :LM_RENT_EXPNMST.RNT_YR:=:PARAMETER.RNT_YR;
         :LM_RENT_EXPNMST.CUST_DESC:=:PARAMETER.RNT_ADESC;
    END IF;Edited by: ayadsufyan on May 8, 2013 2:03 PM

    If this is a FORMS question you should mark this one ANSWERED and repost your question in the FORMS forum
    Forms

  • Can not delete the  last record ,  frm-40202 field must be entered

    hi ,
    i have built a form which contain master and details blocks
    the problem is
    when i look for a record by executing query on on transaction serial and try to delete this record from the master block it gives me new serial for the transaction and when i try to save it, it says
    >frm-40202 field must be entered
    where this field is required and i cant save it
    although in another form when i delete from the master it gives me the previous record and it works properly
    the question is :
    why it gives a new serial when i delete the record ??if any one has any ideas pls help me
    thank u
    ------- the master block has a trigger when-create-record
    Declare>v_dummy number;
    Begin
    Select nvl(max(ERNT_NO),0) + 1 >Into v_dummy
    From LM_RENT_EXPNMST >Where cmp_no = :LM_RENT_EXPNMST.cmp_no
    And brn_no = :LM_RENT_EXPNMST.brn_no>and fiscal_yr = :LM_RENT_EXPNMST.fiscal_yr;
    >:LM_RENT_EXPNMST.ERNT_NO := v_dummy;
    END;
    IF :PARAMETER.RNT_NO IS NOT NULL THEN
         :LM_RENT_EXPNMST.RNT_NO:=:PARAMETER.RNT_NO;
              :LM_RENT_EXPNMST.RNT_YR:=:PARAMETER.RNT_YR;
         :LM_RENT_EXPNMST.CUST_DESC:=:PARAMETER.RNT_ADESC;
    END IF;

    Hi ayadsufyan,
    As it looks Andreas assumption of internal status change was correct. So taking into account this fact I would assume you are doing some data manipulation on the row you are unable to delete.
    What I would suggest to do is to put the following code in your KEY-DELREC trigger :
    clear_message;
    message(:system.record_status);pause;Now when you delete the record you should get the INSERT status of the record. If so it definitely means you are doing some manipulation on the record you are trying to delete. From this point on you will have to pinpoint the offending code.
    Best regards.
    Edited by: GregorM on May 11, 2013 10:41 AM

Maybe you are looking for

  • Adobe Reader cannot connect to the review server

    Hi all, I'm from the DoIT and some of our employees can't publish comments in one of our PDF files. When the employee opens the pdf file, it doesn't matter if he is using Adobe Reader or Acrobat, he gets this message We have review the Tracker and th

  • Chess game in Mac OS X is there a bug fix for it

    This is not a major issue but I have noticed it on all the Apple computers I have played the Chess game that comes with the Mac OS X and it seems to only involve the Pawn making an illegal move when capturing another piece. As we all know the Pawn ca

  • How to communicate with Siebel gateway server by Javascript?

    I am providing support to one J2EE web application. This application is integrated with Siebel application. This application need to transfer control one view of siebel application means a Page ( HTML+ Javascritp) forwards control to Siebel view. Que

  • Strange sound distortion since update (but only some files and Bluetooth)

    Hello Community! My Xperia Z1 compact got updated to Lollipop (14.5.A.0.242) this morning. Moreover, the Walkman got updated to 8.5.A.3.3. From then onwards, some music files are distorted when played with Walkman, but only when played via Bluetooth.

  • Can the Skype online number use my old mobile num...

    Hello, I want to demand a french on line number on Skype. But I have a french mobile number en France, and I used this number for 3 years. Right now I will go to another countries for 1 year, is it possible, when I demand a Skype on line number, Skyp