FM to create profile

Hi All,
Is there any Function module to create a Profile within a profile set  in Sap Crm Marketing ?
or is there any other way to create a Profile within a profile set through a abap program ?

Thanks for the reply.
actually the requirement is dat we have to create Profile programatically in a profile set.
I found a FM to create Profile set through report program: BAPI_ProfileSet_Create. In d same Report I have to create a Profile through a FM or in some other way. Can u please guide me how to achieve dis?

Similar Messages

  • Folllowing instructions to create profile in Firefox

    I got halfway through profile instructions (open utilities>open terminal)
    - window name: Terminal-firefox-bin-80 x 24 Terminal-firefox-bin-80 x 24
    continuing with creating profile - I think
    In the window Firefox - Choose User Profile, I followed the tutorial I enter my new user profile name - exit
    Terminal-firefox-bin-80 x 24 - window is still open at this point
    - when I try to close window by hitting 'return' profile name is added on new line
    -clicking close window from window red button or Terminal's "shell" drop down menu opens new window with " Closing this window will terminate the running processes: login, bash, firefox-bin."
    I sure don't want to go through all this process again - if I close the window will it scrap creating profile?
    Thanks for any help

    that fix no longer works

  • How can I launch firefox on different displays simultaneously without creating profiles for each of them

    On my solaris server, there is an application which, in order to display some information, opens the browser. The server can be accessed thorugh X windows by various users. The issue is that whn firefox is open on one display, it fails to open on another display.
    The resolution for this problem as suggested by a lot of users on various forums is to create different profiles for various firefox instances. However, everytime my application will launch firefox, i will have to invoke it with -P option which will pop up the profile manager. I do not wish to show the pop up for creating profiles:(. Is there some way to allow multilple instances of firefox to run on different displays?

    when you lock the preferences with the mozilla.cfg file in the firefox program folder as it's described in the mozillazine kb article above, it should apply for all users...

  • How to create profile for apple tv

    How do i create profile file for Apple Tv?

    it really comes down to what you mean by a pofile file
    profile is often used for a custom setting for a user
    a file is a storage unit located on a file system on a device
    non of those things are a feature supported in the way you present it by the appletv

  • Need API for Creating Profile at site level

    Hi ,
    I need to create Profile at site level by using APi.
    I have a requirement to create dynamically Profile for storing last run date of my program.
    so I need a API which can create Profile by Pl/Sql code.
    Thanks in Advance,
    Ajit
    [email protected]

    The list of 11i APIs can be found under [Oracle Integration Repository|http://irep.oracle.com/].
    In R12, the Oracle Integration Repository is shipped as part of the E-Business Suite (Oracle Integration Repository Responsibilty).

  • Trying to connect apple tv 3 to wifi at school says I need to create profile but i have a pc and not a mac

    When I select other wifi options... the home sharing still does not work!!!! VERY ANNOYING. I want to smash this to pieces right now.

    it's very unclear what you are saying
    create profile what?
    if you mean create an appleId then that does not require a mac
    if something else which seem to require you having a mac tell us
    I never had any problems when I had a pc only

  • SQLJ Translation does not create profile file

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

  • How to view/edit/delete the user created profile in oracle 9i? Very Urgent

    Friends,
    I logged in as system in oracle 9i.
    SQL> create profile testpro limit
    2 idle_time 1;
    Profile created.
    SQL> alter user scott profile testpro;
    User altered.
    Then i logged in to sqlplusw as a scott user.
    and i waited for 10 mins after that.
    sql> select * from cat;
    its working......
    how come? i have already set a idle time to 1 minute.
    Please correct me if im wrong.
    Also, how can i view/edit/delete the user created profile.
    Thanks & Regards
    Sathyguy
    Message was edited by:
    sathyguy

    The resource limits set for a profile are enforced only when you enable resource limitation for the database.
    Enabling and Disabling Resource Limits While the Database is Open
    ALTER SYSTEM SET RESOURCE_LIMIT = TRUE;
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/users.htm#15451
    Manu

  • Anyconnect created profile not shown in connection list, especially the wireless profiles.

    Dears,
    Kindly advise as we encounter anyConnect issue, when creating profile for using with ISE, the new created profile is not shown in the connection list.
    I’m using profile editor to create profile for EAP-Fast, the issue is that the profile that was created not shown in the connection list.
    i put the xml file in the correct location
    C:\ProgramData\Cisco\Cisco AnyConnect Secure Mobility Client\Network Access Manager\newConfigFiles
    in windows 7.
    it is shown in saved networks but not shown in the connection list.
    we tried profile editor version 4 but the same issue still exist.

    Hi,
    Test the System Connector Type in the Portal.
    Connector should be any one of the Types :JDBC, ODBO, XMLA, OLAP then only the BI systems will be appear in the BI integartion wizard,
    Govindu

  • How to create Profile Based Rule in Endeca Studio Developer

    Hi,
    Can anybody tell me how to create Profile based rule in the Endeca Studio Developer. and how to fecth the data in the JSP. what are the parameter required to pass in the ENEQuery
    Thanks
    Shailesh

    I use visual studio 2012.
    I dont see rule set editor which can help me create busineesss rule.
    Where can I find it?
    Hi Rajesh,
    If you want to learn more information about RuleSet Editor in .net framework 4.5, check out https://msdn.microsoft.com/en-us/library/ee960221(v=vs.110).aspx
    for more information. 
    Best regards,
    Angie
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cant Create Profile in 5230

    I Purchased a 5230 a few months ago.
    The Problem with the phone is that I cant Create a new profile.
    Updated the software.
    And Tried everything I know.
    Still Cant Create a New Profile.
    Please suggest solutions.

    I did some more testing with my friend's phone, I even persuaded her to let me update it (now on 21.0.004), still no problems creating profiles.
    One thing to try, though I'm 50/50 whether I think it is going to help: backup your phone contents again, then reformat it using hte code *#7370# - the phone will ask you to confirm the reset then enter the lock code, which is 12345 if you haven't set a personal code, then shut down and restart. Once complete, try to create a profile before you restore your backup - if it works, then there could have been some corrupt data in your settings data preventing this from working, in which case omit settings from from the resotration when you restore the backup.
    If it still doesn't work, it could be an issue with your phone's specific variant of the software (this will vary according to region of the world and network operator), in which case all you would be able to do is report the issue to Nokia via the "contact us" link. Be sure to give them the product code of your phone (this is on the label in the battery compartment, usually a 7-digit code beginning 05).

  • CREATE PROFILE HECM_PROFILE limit PASSWORD_VERIFY_FUNCTION ERROR

    I am getting the following error when creating profile
    SQL> CREATE PROFILE HECM_PROFILE limit PASSWORD_VERIFY_FUNCTION ins_verify ;
    CREATE PROFILE HECM_PROFILE limit PASSWORD_VERIFY_FUNCTION ins_verify
    ERROR at line 1:
    ORA-07443: function INS_VERIFY not found
    However, INS_VERIFY does exist
    SQL> desc INS_VERIFY
    FUNCTION INS_VERIFY RETURNS BOOLEAN
    Argument Name Type In/Out Default?
    USERNAME VARCHAR2 IN
    PASSWORD VARCHAR2 IN
    OLD_PASSWORD VARCHAR2 IN
    1 select substr(object_name,1, 10),CREATED, STATUS
    2* from user_objects where object_name = 'INS_VERIFY'
    SQL> /
    SUBSTR(OBJ CREATED STATUS
    INS_VERIFY 28-JAN-10 VALID
    What I am missing ?
    Thanks in advance

    Dear user7591510,
    Here is the error code;
    http://ora-02376.ora-code.com/
    ORA-02376: invalid or redundant resource
    Cause: a create, or alter profile command which names a resource not yet defined, or try to specify same resource twice.
    Action: define resource firstAlso check the following thread;
    Oracle Profiles
    By the way, what is your resource_limit parameter?
    Regards.
    Ogan

  • BAPI to create profile for material

    Hi all,
    Is there a BAPI to do following things:
    1. create Profile for material
    2. Assign new Class Type 300 for Material
    3. add variants class to have characteristics and update its values.
    Thanks in advance,
    Amruta

    Hi Amrutha,
    Please try this BAPI
    BAPI_UI_CREATE
    Regards
    Rasheed

  • When I open Firefox, I'm prompted to create a profile, but every time I click the create profile button, the window opens and immediately shuts.

    I've uninstalled and reinstalled mozilla several times. I've read online about looking for a profile.ini file, that file does not exist on my computer. Everytime I open firefox, the choose user profile box appears, and when I click create profile, a window opens and immediately closes.

    If even the Mozilla folder isn't there then it is possible that Firefox already crashes before being able to create that folder structure.
    Try to do a clean reinstall and delete the Firefox program before (re)installing a fresh copy of the current Firefox release.
    *Download the full Firefox installer and save the file to the desktop<br>http://www.mozilla.org/en-US/firefox/all.html
    If possible uninstall your current Firefox version to cleanup the Windows registry and settings in security software.
    *Do NOT remove "personal data" when you uninstall your current Firefox version, because this will remove all profile folders and you lose personal data like bookmarks and passwords including data in profiles created by other Firefox versions.
    Remove the Firefox program before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall
    Boot the computer in Windows Safe Mode with network support (press F8 on the boot screen) as a test.
    *http://www.bleepingcomputer.com/tutorials/how-to-start-windows-in-safe-mode/
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Cannot create profile for IMG display only access - Timeout

    Hello all,
    I have created a role for IMG display only role. It has hundreds of Org values and fields. I have made ACTVT=03 in change Authorization
    Everything is fine except when i click to create profile, the system does starts processing but its taking hell of a time. It times out since the system has time out after 9000s. Anyway 2 hrs for creating profile..phew!
    Is there a way I can create profile?
    Alternatively, Is there a simpler way to create role for IMG display only access?

    How are you building your role?  It shouldn't be timing out - might be worth having a chat with your basis team.
    Alternatively, if you can save the role (but not generate it) you might be able to generate it in the background via transaction SUPC.  It's better to understand why you cany create it first though.

Maybe you are looking for

  • Mac Running Very Slow

    My 2009 iMac started running very slowly this past week. I have searched the forums and used EtreCheck to get rid of Genieo, but it seems to be getting slower. How is that even possible. Here is the data from EtreCheck. EtreCheck version: 2.1.5 (108)

  • Can you change the worktop color in version 9?

    Hi!  I find it very difficult to read the text captions on the black face of the worktop.  How can you change or customize to something that's easier on the eyes?  I have managed to change the workspace panel color but can't figure out how to change

  • Hyperlink in a jTextArea

    Hi I've different strings of text which I wrote in a jTextArea. How can I implement that when I click on one of these text-lines I can excute an ActionEvent? Should be something like the hyperlink system; however to an other jTextArea. Thanks in adva

  • Does anyone have a solution for the I phone 4 acting as though it is sideways under most applications?  Is there a simple solution?

    My daughters I phone 4 acts as though it is sideways when being used for the camera, messaging, and music,  Shutting the phone off seemed to fix it the first time, but it has acted up again and that remedy no longer works.  Am I missing something in

  • Adobe support how do I contact adobe?

    the support link on the website is recursive, you ask for more support and it folds back on itself, linking you to the same place, never providing a link to adobe support.