Can a JApplet manipulate data in his parent website?

Hello,
I know that there are possibilities to call a method of a JApplet from the parent website.
But is there a way, to manipulate a textfield's value in the parent website from the JApplet?
Thanks...

check this blog
Extracting data in Table maintenance

Similar Messages

  • I have deleted my sons apple id and data from his old phone by accident as i thought i was resetting it for me to use and now he has lost everything on his new phone and his id etc does not work.  Can someone please explain how i am able to retrieve

    Can someone please shed some light on this???
    I thought i was resetting my son's iphone 4 so that I could use it. But I seem to have erased his icloud/apple id and all of his data from his new phone too.  His Apple ID doesnt work and cant be accessed as it now says it is disabled.  I have tried the iforgot.apple.com website without success and have no idea how to rectify.  I have requested a password change to his email address but that is not working either.
    Please help? 

    That sounds confusing.  First off, don't be too worried. There's practically no way to actually delete an Apple ID or it's purchase history.  You should be able to get to it back somehow.  Secondly, that's likely something that you'll need to talk to a real person on the phone for since it likely requires you to explain that you need access on behalf of your son, (who probably just set some security questions or an email address that you didn't know he put in.)  Just call the appropriate AppleCare phone line (800-APL-CARE in the USA, or see the link below for other countries) and tell them you want to talk about an iCloud account security question.
    Phone Support: Contact Apple for support and service - Apple Support

  • My parents have one apple id and me and my two other siblings are getting our own. How can I transfer the data saved on the parent apple id to all three kids apple ids?

    Me and my siblings all want our own apple ids, and my mom has the apple id that has all of our games, apps, movies, and music on there. how can we copy the data onone apple id to the three kid accounts?
    thanks!

    Sorry, but unless I misunderstand what you're asking, you can't. Purchases from the iTunes Store are permanently tied to the Apple ID through which they were purchased. If your parents want you to be completely independent of their Apple ID and iTunes Store account, you'll each have to re-purchase the apps, etc. Otherwise they'll have to continue to allow you access to their account, or will have to do all the updates for you.
    Regards.

  • TS3297 when I press the iTunes button on my ipod touch I get the message 'cannot connect to iTunes store' .  My wifi is working fine, I can connect to safari & you tube, no parental setting in place, and time and date are correct. Can anyone help please?

    When I press the iTunes button on my ipod touch I get the message 'cannot connect to iTunes store' .  My wifi is working fine, I can connect to safari & you tube, no parental setting in place, and time and date are correct. Can anyone help please? I have restored my ipod to factory settings and rest it.

    I also tried moving the date forward by a year and then moving it back to normal and it still doesn't work.  i can't find an automatic update of time zones on my itouch to turn this off.

  • Can you change the data model query dynamically based on its parent query

    Hi
    Question:
    I have a data model query q1 and q2 is the child of q1
    Say q1 returns 2 rows and and
    for the first row
    i want q2 to be select 1 from table1
    for the second row
    i want q2 to be select 1 from table2
    Basically i want to build the q2 dynamically
    for each row fetched in q1.
    Can this be done?
    If so where do i write the code to achieve this
    Thanx in advance.
    Suresh

    One simple (but not very realistic) example:
    1. DATABASE TABLES AND DATA
    CREATE TABLE dept_all (
    deptno NUMBER (2),
    dname VARCHAR2 (20),
    in_usa CHAR (1) DEFAULT 'Y')
    INSERT INTO dept_all VALUES (10, 'DEPT 10', 'Y');
    INSERT INTO dept_all VALUES (20, 'DEPT 20', 'N');
    INSERT INTO dept_all VALUES (30, 'DEPT 30', 'Y');
    CREATE TABLE emp_usa (
    empno NUMBER (4),
    ename VARCHAR2 (20),
    deptno NUMBER (2))
    INSERT INTO emp_usa VALUES (1001, 'EMP 1001', 10);
    INSERT INTO emp_usa VALUES (1002, 'EMP 1002', 10);
    INSERT INTO emp_usa VALUES (3001, 'EMP 3001', 30);
    INSERT INTO emp_usa VALUES (3002, 'EMP 3002', 30);
    CREATE TABLE emp_non_usa (
    empno NUMBER (4),
    ename VARCHAR2 (20),
    deptno NUMBER (2))
    INSERT INTO emp_non_usa VALUES (2001, 'EMP 2001', 20);
    INSERT INTO emp_non_usa VALUES (2002, 'EMP 2002', 20);
    2. DATABASE PACKAGE
    Note that Oracle Reports 3.0 / 6i needs 'static' ref cursor type for building Report Layout.
    So, in package specification we must have both ref cursor types, static for Report Layout
    and dynamic for ref cursor query.
    CREATE OR REPLACE PACKAGE example IS
    TYPE t_dept_static_rc IS REF CURSOR RETURN dept_all%ROWTYPE;
    TYPE t_dept_rc IS REF CURSOR;
    FUNCTION dept_query (p_where VARCHAR2) RETURN t_dept_rc;
    TYPE t_emp_rec IS RECORD (
    empno emp_usa.empno%TYPE,
    ename emp_usa.ename%TYPE);
    TYPE t_emp_static_rc IS REF CURSOR RETURN t_emp_rec;
    TYPE t_emp_rc IS REF CURSOR;
    FUNCTION emp_query (
    p_in_usa dept_all.in_usa%TYPE,
    p_deptno dept_all.deptno%TYPE)
    RETURN t_emp_rc;
    END;
    CREATE OR REPLACE PACKAGE BODY example IS
    FUNCTION dept_query (p_where VARCHAR2) RETURN t_dept_rc IS
    l_dept_rc t_dept_rc;
    BEGIN
    OPEN l_dept_rc FOR
    'SELECT * FROM dept_all WHERE ' || NVL (p_where, '1 = 1') || ' ORDER BY deptno';
    RETURN l_dept_rc;
    END;
    FUNCTION emp_query (
    p_in_usa dept_all.in_usa%TYPE,
    p_deptno dept_all.deptno%TYPE)
    RETURN t_emp_rc
    IS
    l_emp_rc t_emp_rc;
    l_table VARCHAR2 (30);
    BEGIN
    IF p_in_usa = 'Y' THEN
    l_table := 'emp_usa';
    ELSE
    l_table := 'emp_non_usa';
    END IF;
    OPEN l_emp_rc FOR
    'SELECT * FROM ' || l_table || ' WHERE deptno = :p_deptno ORDER BY empno'
    USING p_deptno;
    RETURN l_emp_rc;
    END;
    END;
    3. REPORT - QUERY FUNCTIONS AND DATA LINK
    FUNCTION q_dept RETURN example.t_dept_static_rc IS
    BEGIN
    -- "p_where" is a User Parameter
    RETURN example.dept_query (:p_where);
    END;
    FUNCTION q_emp RETURN example.t_emp_static_rc IS
    BEGIN
    -- "in_usa" and "deptno" are columns from Parent Group (G_DEPT)
    RETURN example.emp_query (:in_usa, :deptno);
    END;
    Of course, we must create Data Link between Parent Group (G_DEPT) and Child Query (Q_EMP).
    Regards
    Zlatko Sirotic

  • How can I change the date of birth on my child's Apple ID?

    HI,
    My son's school have started an initiative where they use iPads as part of their lessons, and subsequently my son has a brand new iPad through the scheme.
    The setup guide that the school supplied directed us to enter the parent's date of birth and the student's name to set up an Apple ID.  However, since setting his iPad up we have become aware of Family Sharing when we setup our old iPad for his younger brother, and the ability to create an Apple ID for a child.  We would obviously like the same level of protection and security for both children, not to mention restricting any accidental purchases!
    Is there any way to change his date of birth from mine to his?  I have read other similar posts with the best solutions apparently to fudge the date of birth so that the child is older than 13 years old.  I would like to do this properly rather than lie about his age...
    Thanks in advance

    You can not change the date of birth on the account. You are explicitly told this when the account is created.
    The ID you created is yours, not your son's. If your son is under 13, then to claim it is your son's ID is to say that you committed a crime when you created it. Create a new account for your son.
    Inform the school that if they are instructing parents to do this because the children are under 13, they are potentially criminally liable. They should know better.

  • How can I get my data back after a family member hacked into my iphone and replaced my data

    A family member hacked into my iPhone and replaced my data with his own data. I am afraid to plug it into iTunes for fear of overwriting my backup. iCloud probably already overwrote. Can I restore the phone without synching first, and then use Time Machine to get back to an earlier backup and re-synch?

    Over two years and no spsonse to this? will there be any point me asking the same?

  • My grandson deleted all the data from his ipod touch . all he gets when he turns it on is a gray screen and an apple logo. Our computer no longer recognizes the ipod nor does itunes, Help.

    My grandson delted all data from his ipod touch {thinking he was deleting his songs.] Now all he gets when he turns it on is a gray screen with an apple logo. We do not have it backed up nor was it ever turned on to itunes. We purchased it used from a co worker and didnt get that far.. Our computers do not recognise it as any thing nor does itunes when we have it plugged into itunes. Any way to fix this? Apple support will remote into our computer to fix it. For $ 99.00. Well needless to say he used all his savings to buy the ipod so ......  Any free ideas??

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar              

  • How can I disable web/data access during certain hours?

    I have added a feature to my wireless account restricting my daughter's text/data/surfing access during evening hours.  I thought I was pretty clever and assumed she would only have access to her music on her iPhone.  Turns out she can still access all she wants using our home WIFI so my sceme is rendered useless.  Other than confiscating her phone each evening, does anyone know how I can restrict wifi on her phone during certain hours?
    Also, does anyone have a nano?  Thinking she could use that for music and to set her alarm, but I don't think the nano has an alarm function.
    Thanks for your input!

    No way to restrict it during certain hours. You can restrict it always, or never. Parental supervision is one solution. It's a losing battle to try to outwit children. It's better to require trust, with consequences if trust is breached.

  • Issue dates of only parent publications are getting reflected in a subscriptions order.

    Dear All,
    Could you please help me with a development pertaining to Issue dates of only parent publications are getting reflected in a subscriptions order.
    Synopsis:
    An offer has been created by me using combination of two publications namely A and B.
    The Combination has been defined by creating a mix type (JDMPS0) by keeping A as a parent publication and B as a child publication.
    When a subscriptions order gets created for this combo offer, the order delivers the issues of both the Publications as per their respective issue dates. The deliveries of the same can be observed in table (JVVLFZUO)
    The Issue crops up when I wish to terminate this order over the issue dates of the child publication. This is because issue dates of only parent publications are getting reflected in a subscriptions order (JK03).
    Could you please suggest a development where in I'll be able to view issue dates of all publications.
    Regards,
    Himanshu

    Hi,
    Please sit with your PP Consultant.
    Muzamil

  • How can i submit form-data with acrobat pocket pc

    how can i submit form-data (http-post) on a PPC?
    how can i store the data offline?
    which submit-functions are availabe for the pocket pc reader?
    do i need ARES?
    where can i find a documentation of of the available functions for the ppc version?
    where can i fond form-samples for ppc?
    from the docu on my pocket pc:
    Submit form data using handheld devices over a wireless connection. If you are working offline, the data is temporarily stored, then submitted once a connection is established. Send forms by e-mail or directly to the destination server using a cradle or cable

    To your question regarding the Pocket PC version of Reader, I downloaded Adobe Reader for Pocket Pc 2 and installed it on my HP iPAQ . I then loaded my test PDF file onto the iPAQ. The Reader for Pocket PC preformed an email submission fine. However, I received no indication that anything happened when I tried an HTTP Post. So I think you can only do an email submission.
    In general, I have been testing to see how much I can do without the Live Cycle Reader Extensions, since for sure I will never be able to purchase them. What I have found is that for Acrobat Reader 7, the email submission works for all of the people I have asked to test it, but the HTTP Post has worked for only one of the two people who have tested it so far with Reader 7 (the one for which it worked claims that he only has Reader 7 on his computernot Acrobat).

  • Manipulate data of a SQL SERVER 2000 database

    Problem:
    I need to manipulate data of a SQL SERVER 2000 database that it’s installed in a Windows
    from an oracle 8.1.7 database that is installed in a red hat linux server.
    This access has to be made in a procedure created in this Oracle instance.
    The Solution’s Environment:
    - oracle 8.1.7 database - red hat linux server - ORCL INSTANCE
    - SQL SERVER 2000 version 5.0 database - Windows server - SQLSERV INSTANCE
    - Oracle 8.1.7 database - windows 2000 professional server - HSDB INSTANCE
    We did the following steps:
    1) We installed an oracle database 8.1.7 in the windows 2000 professional.
    The name of this instance is HSDB.
    2) We configured the HSODBC resource in this HSDB instance so as to access the SQLSERVER database.
    3) It was created a database link in the ORCL instance (LINUX) so as to access the oracle HSDB instance
    4) It was created a procedure in the ORCL instance that insert data into the SQLSERVER database using the database link.
    This procedure pass through the following instances:
    ORCL Instance (database link) => HSDB Instance (HS Resource) => SQLSERV Instance
    5) When I execute this simple procedure of the ORCL Instance, the process takes a long time. Although if I run this insert on a SQL Plus, the transaction ends fast. Why it’s happening?
    PROCEDURE PRC_TESTE(P_CD_CMC7 IN VARCHAR2) IS
    BEGIN
    BEGIN
    INSERT INTO VSolicitacaoRetirada@MSSQLDB
    ("CMC7")
    VALUES
    (P_CD_CMC7);
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERROR '||SQLERRM);
    END;
    COMMIT;
    END;
    Tranks

    I modified the PRC_TESTE procedure and worked fine when I made the following change.
    In spite of using the P_CD_CMC7 parameter on the INSERT command, I included a fixed value. Althoug I can´t use this fixed value. What it can be?
    Example:
    CREATE OR REPLACE PROCEDURE PRC_TESTE(P_CD_CMC7 IN VARCHAR2)
    IS
    BEGIN
    BEGIN
    INSERT INTO VSolicitacaoRetirada@MSSQLDB
    ("CMC7")
    VALUES
    ('123456');
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('ERRO NO INSERT '||SQLERRM);
    END;
    COMMIT;
    END;
    ------------------------------------------------------------

  • How to manipulate data in AS400 using JSP?

    hi i am developing a system and i am using JSP with AS400 as its database.
    My question in how am i be able to access the data from the database to the pages?
    How can i also manipulate the data in the database using JSPs?ex..add,edit,delete
    Can anyone help me about it..it would be better if i got to see some sample codes.

    Now then first of all lets come back to origination of specification
    to me AS 400 is a product technology from IBM.
    IBM offers solutions for operating on respective platform using a specific Application Programming Environment and if you are looking for a solution using Java Environments the below PDF / articles might have to serve your need.
    http://www.redbooks.ibm.com/pubs/html/as400/v4r5/ic2924/info/java/rzaid/java400.pdf
    http://search400.techtarget.com/tip/1,289483,sid3_gci537120,00.html?FromTaxonomy=%2Fpr%2F2fa
    http://publib.boulder.ibm.com/iseries/v5r1/ic2924/index.htm?info/rzahh/javadoc/RLReadFileExample.html
    http://publib.boulder.ibm.com/infocenter/iadthelp/v6r0/index.jsp?topic=/com.ibm.etools.iseries.javatools.doc/tasks/t4over.htmand if you are looking for a open source solution the below project library might intrest you
    http://jt400.sourceforge.net/Hope that might help :)
    REGARDS,
    RaHuL

  • Opening Nested folders changes the modification date of the parent folder

    This has been bugging me for some time and is very odd...
    If I open a folder that is nested inside another folder it changes the modification date of the parent folder to today's date and time, even though I have not made any changes to the folders contents, or even viewed any of the contents.
    I have posted this question on other forums and no one has been able to reproduce this on their systems.
    I have multiple macs, using a combination of 10.4 and 10.5, connected via an AEBS and this only seems to occur when I am connected to my network.
    All machines have been setup using a migration from a previous machine going way back to my original OSX installation and various iterations of Powerbooks, iBooks, iMacs, Minis, MacBooks etc...
    Can anyone throw any light as to what is causing this?
    Many thanks,

    Hi Ben,
    I have multiple macs, using a combination of 10.4 and 10.5, connected via an AEBS and this only seems to occur when I am connected to my network.
    I'm not sure about this, but I think that when it happens that network time and date is automatically being set.
    Dimaxum

  • Exception when trying to manipulate Data in an ADAM server

    Hi all,
    I'm having problems with trying to manipulate data in the ADAM instance on my machine. Currently I can bind to the ADAM instance (took me a while to figure out that ADAM isn't like other normal LDAP servers... you need to bind as a user which is a member of the Administrators group. So currently my url is ldap://localhost:389/O=Microsoft,C=US, user is cn=Mary,cn=Roles,o=Microsoft,c=US for example), but using java code all I can do is search for data and retrieve the results. However when it comes to modifying, adding and the like I keep getting a NameNotFoundException:
    org.springframework.ldap.NameNotFoundException: [LDAP: error code 32 - 0000208D: NameErr: DSID-031001D2, problem 2001 (NO_OBJECT), data 0, best match of:
         'O=Microsoft,C=US'
    What is wrong? Why can I do searches but not anything else? Since this looks like a permissions issue with ADAM I haven't included any of my source code. Also this org.springframework.ldapNameNotFoundException is the same as JNDI NameNotFoundException, so even if you don't know anything about spring framework this isn't a cause for concern.
    Thanks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I am having problem retrieving the users from the AD, can anyone help me with this with an example plz!

Maybe you are looking for

  • Doubt in GUI_UPLOAD function

    Hi friends, CALL FUNCTION 'GUI_UPLOAD ' EXPORTING FILENAME = FILE FILETYPE = 'ASC' *HAS_FIELD_SEPARATOR = 'X' TABLES DATA_TAB = ITAB. In the GUI_UPLOAD function what the filetype should be and has_field_separator should be given what value? What does

  • Jakarta POI VS JEXCEL

    All I'm from Japan. My English is very poor and sorry. I want to operate Excel Spread sheet on Java program. I found out an information for excel spread sheet operation on Java program by using API's POI or JEXCEL. But I have no idea which is better.

  • How to write ABAP Routeines in Update/Transfer Rules ?

    Hi Experts, Iam new to BW and i don't have ABAP knowledge.Can any body help me ..to write ABAP Routeines in Update rules/Transfer rules.Give me some basic knowledge with proper example.and what type of routeines we need to write ? I will appreciate i

  • How to Search for Supplier Email?

    We are on version 6.1.1.1 and  use Supplier Collaboration.  I have a use case where emails are being sent to a supplier contact that continually gets rejected.  This user has a cryptic gmail account so we have been unable to identify the supplier to

  • How to add osmonitor to servers

    Hi all, <br> I have a bunch of galaxy servers installed with our jumpstart server. I would know manage them with N1SM. I can discover those server without any problem but can't enable the osmonitoring. Trying adding this feature always end up with :