11.5.10.2 cloned instance; responsibilities are missing

11.5.10.2 instance.
ATG Rollup 3.
OS: IBM AIX , 5.2.0.0
Java: 1.3.1
User logs in. All resps (responsibilities) are displayed. Clicks on 'System Administrator' responsibility. Chooses 'Security/Define' , User define form pops up.
Queries his own id. Adds a new resp OR end_dates a resp. Clicks on "Navigotor" button on top of the form. He finds his actions (adding or removing resp) were taken care. He closes all form screens. Comes back to homepage (jsp version, main page). Clicks on refresh button of Internet explorer. Changes are not affected. Still he can see old resps. He logs out. Logs in. No use. Still he finds those changes did not take palce. ADDED TO THIS, FOR SOME USERS, 'SYSTEM ADMINISTRATOR' resp is gone.
BUT, if you login as "/f60cgi/dev60cgibin" , everything is fine. You can see expected changes taken place.
In short, users resps are missing when one adds or removes resp.
Any thoughts? Replies are highly appreciated.
Thanks,
GKM

See responses on other forum: 11.5.10.2; Cloned instance. Missing responsibilities

Similar Messages

  • 11.5.10.2 cloned  instance. Missing responsibilities.

    11.5.10.2 instance.
    ATG Rollup 3.
    OS: IBM AIX , 5.2.0.0
    Java: 1.3.1
    User logs in. All resps (responsibilities) are displayed. Clicks on 'System Administrator' responsibility. Chooses 'Security/Define' , User define form pops up.
    Queries his own id. Adds a new resp OR end_dates a resp. Clicks on "Navigotor" button on top of the form. He finds his actions (adding or removing resp) were taken care. He closes all form screens. Comes back to homepage (jsp version, main page). Clicks on refresh button of Internet explorer. Changes are not affected. Still he can see old resps. He logs out. Logs in. No use. Still he finds those changes did not take palce. ADDED TO THIS, FOR SOME USERS, 'SYSTEM ADMINISTRATOR' resp is gone.
    BUT, if you login as "/f60cgi/dev60cgibin" , everything is fine. You can see expected changes taken place.
    In short, users resps are missing when one adds or removes resp.
    Any thoughts? Replies are highly appreciated.
    Thanks,
    GKM

    Any thoughts?Just kill the user

  • Default parameters are missing in the cloned EUL

    we have discoverer up and running perfectly on our existing instance - SIGMA
    now we have a new instance - ALPHA,
    we cloned the whole EUL from old instance(SIGMA),
    IN ALPHA every thing is working fine, we have all the BA,folders and all the workbooks seem to work fine, but we have a issue with the default parameters.
    the default parameters are missing from the workbooks, now this has become an big issue, because we have hundreds of reports and user want need them all with the default parameters
    could somebody please help me on this issue
    few questions:
    when cloned does the default parameters get erased??
    Does the default parameters entered in the workbook get saved anywhere in the EUL_Tables??
    Could you please give me a best approach to bring in thoese default parameters??
    any thoughts are highly appreciated
    note: i can edit the worksheet and enter the default parameter and save the worksheet but we have got some hundreds of workbooks

    Hi,
    when cloned does the default parameters get erased??I would be surprised if the default parameters are erased. More likely is that they are not being used because the default value is not valid anymore or because Discoverer is trying to use the last parameter value. Check the value of the SaveLastUsedParamValue preference setting. Is this the same on Desktop, viewer and Plus?
    Does the default parameters entered in the workbook get saved anywhere in the EUL_Tables??The default parameters will be save along with the workbook in the EUL5_DOCUMENTS table. The field is of type LONG RAW so you won't easily be able to see this field. You can use the workbook dump utility to check whether there are default parameters actually set up in the workbook.
    Could you please give me a best approach to bring in thoese default parameters??You could try exporting and importing the workbooks into the new environment to see whether this fixes the issue.
    Rod West

  • Cloned instance or not

    Hi,
    How can i now my instance is cloned instance or not.
    Rgs,
    Ram
    Edited by: 891940 on Mar 18, 2013 2:18 AM

    Hi,
    Unfortunately all the source files can be deleted after clone.
    If files were not deleted, then you can go to $ORACLE_HOME/appsutil/clone/data/stage and check the source system name in the file addbhomsrc.xml.
    If all the relevant files are deleted, i do not think oracle maintains list of all previous clone. But you could look for LOGFILE_NODE_NAME,OUTFILE_NODE_NAME columns in FND_CONCURRENT_REQUESTS.
    Thanks

  • HT4436 Why don't all my contacts and calendar events on my iMac (version 10.7.4) stream onto iCloud? For instance, there are 470 entries in my address book but only 270 on iCloud. And not all my appointments in iCal are transferred.

    Why don't all my contacts and calendar events on my iMac (version 10.7.4) stream onto iCloud? For instance, there are 470 entries in my address book but only 270 on iCloud. And not all my appointments in iCal are transferred either.
    I have the same problem transfering Address book on iMac to contacts on iPhone (old version 3G - on iCloud). this is a hard wired connection

    Might you have 200 entries in On My Mac groups and some of your appointments in On My Mac calendars?

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • Do we have any native methods to get object instances which are alive ?

    Do we have any native methods to get object instances which are alive ?
    Help appreciated.

    If you are looking for accessing objects that are eligible for GC but are not GC,than it should be very difficult.As Java does not give you memory access to its variables.

  • After upgrade to 12.1.3, no responsibilities are found

    hi experts,
    This is no similar problem in this forum or google, so i post it here.
    Recently i successfully upgrade EBS from 12.1.1 to 12.1.3. However, after i login into the home page, not any responsibilities are shown there.
    I try to debug this problem, and find that there is exception when home page tries to load the XML responsibility data. It's like:
    <pre>An exception occured.
    <pre>URL=http://host:port/OA_HTML/OAR?transactionid=1585393965&language_code=US&type=menu
    <pre>java.lang.IllegalArgumentException: Resource /OAR?transactionid=1585393965&language_code=US&type=menu not foundI am stuck here, please help.
    Thanks,
    Ted

    Hi Hussein ,
    Thanks for your reply.
    Hussein Sawwan wrote:
    Did you complete the steps in these docs?
    Oracle E-Business Suite Release 12.1.3 Readme [ID 1080973.1]I just applied patches 9239089&9239090, and nothing else. I'll follow this note step by step.
    Do you get this error when you access any responsibility?After i login, main menu has no content, so i can't access any responsibility. I think this error
    is prompted when web page tries to fetch main menu data.
    Do you have any invalid objects in the database? Any errors in the database log file?
    What is the output of "adopmnctl.sh status" command?Haven't tried to run this script yet, i'll try it.
    Please run "Compile menu information" from adadmin and check then.I force compile all menu information, but it makes no good.
    Ted

  • Dynamically populated dropdown values are missing when instances are added

    HI Team
    I have a subform which is repeatable have  a drop down  as one of the field which is dynamically populated from the web service call(short lived process) from the DB.On initialize event of the subform the data connection is executed .Dropown is populated with the values but when an instance of subform is added the dropdown values are missing.
    Only in the first instance of a subform  dropdown values are showing up , when instances of subform is added the drop down values are missing.
    Please let me how can i solve this issue,
    Thanks in Advance
    Bharathi

    I've tried this option by adding some value (hard-coded) during initialize event of the subform and all values are populated in the newly added instances as well.
    Not sure why it's not working for you.. Can you try adding some sample values without calling web service and confirm if it's working?

  • Why some instance variables are passed to current contructor ..

    I wonder why some instance attributes are passed to contructor like
    publi class A{
    private int numberone;
    public FileReader fr;
    public BufferedReader br;
    public A(FileReader fr,BufferedReader br){
    this.fr = fr;
    this.br=br;
    You see int numberone is not passed but we can still use. why we can not do same with the FileReader and Buffer object? please explane
    Thank very much
    Jorg3

    Deos anyone have a clue why this hapens?
    Thanks a lot
    Jorg3
    Error: C:\LookupServer.java(30): Incompatible type for =. Can't convert int to java.lang.String.
    while((line=br.read())!=null)save.addElement(line);
    fr = new FileReader(file_name);
    br = new BufferedReader(fr);
    String line =" ";
    while((line=br.read())!=null)save.addElement(line);
    for(int i = 0; i<save.size();i++)
    String k = (String)save.elementAt(i);
    System.out.println(k);
    }catch(Exception e){
    System.out.println(e.toString());

  • ITunes thinks songs are missing when they are NOT...

    I've written about this in the past and I thought I had fixed it manually. For some reason a large number of my songs (about 1300) in iTunes are not able to be found on the drive when I try to play them. Once I try to play them I get an error message saying "The song "song name" could not be used because the original file could not be found. Would you like to locate it" and then the "!" symbol shows up next to the song. The songs files ARE there though.
    In the past I thought I solved this problem because I "re-added" using all the songs in my library (about 4500) "File->Add To Library". If the song was one of these "missing" songs it was re-added to the library. The songs that were not "missing" were not re-added. (and again, the song files iTunes is re-adding are the exact song files it is saying aren't there in the first place) After the "re-add" I essentially had two of all the missing songs. One with the "!" and one without it. The newly added songs did not have any of the stats the original song had. So I used a script I was told about that goes through and syncs the song's statistics. Then after the song stats were synced I removed the "!" song from the library. I had to do this one song at a time. Of course, this took a VERY long time and I don't really want to go through it again... especially now that I know it may not be a permanent fix anyway!
    However here is something new I noticed now that I have Leopard: The files that are showing up as missing are also the ones that don't have a "thumbnail" icon of the album cover in the finder. Also, if I go into coverflow view in the finder those files don't have the album as the other files do. However, there should be no differences between the files. For example, one album where each song was ripped at the same time in the same way will have some songs that have the cover icon and some that don't.
    As I reported last time, this is not specific to one machine and has noting to do with the drive the songs are on. This also was happening on both 10.5.1. and 10.4.11 and lower.
    So, why is this happening and how can it be fixed. I'm not going to re-import the songs because then I loose all my stats, ratings, etc and have to re-do the long method of fixin the stats.. There needs to be some way to permanently fix this problem. Is it with the song files or the library? Is there some sort of validation script that can be run?
    Oh, on a side note... pre-leopard the "!" would show all the time. Now, if I close iTunes and re-open the "!" are gone until I try to play the song that should have the "!". This makes things even more challenging because I can't quit iTunes if I want to know which songs are "missing".
    Jeff

    I have this same issue. I use an external HD connected to an Airport Extreme Base station to store my music. On Tiger 10.4.11 iTunes created a music database just fine and found every mp3. I just installed Leopard last night and left iTunes to create its database overnight. It found every song, but there are plenty with the exclamation just as you described. If I want to play these songs I must hit "Yes" to locate the song manually. I can then play any other song with an exclamation point in that particular album, but if I go to try to play another song with an exclamation point from another album I must repeat the process again.
    It's definitely a problem with Leopard as I just got my mac back from the Apple store with a replaced hard drive. I created the iTunes database in Tiger on one day, then the next decided to purchase and install Leopard. So one day passed between each instance of building the database and it worked fine on a clean install of Tiger but not on a clean install of Leopard.

  • How to restore a deleted iCloud backup? I deleted the backup to free up the 5 GB free storage and now on my iPhone some of my Contacts are missing a phone

    How to restore a deleted iCloud storage backup?
    I deleted it all to free up the free 5 GB storage and now on my iPhone 5s some of my Contacts are missing a phone # info and some of the Contacts are missing entirely. Thank you.

    I used this to restore my deleted notes from Time Machine, hope this helps others
    closed Notes,
    turned WiFi off,
    entered finder/go+option/ to 'get to library':  /Library/Containers/com.apple.Notes/Data/Library/Notes/
    entered TM and selected the 3 files/ hit restore/ keep both (just to make sure, then I deleted the newer file, not the 'restored' file when this worked out)
    opened notes and my deleted notes were back so I copied my notes into pages as a backup,
    turned on WiFi and the notes disappeared!
    replaced my restored notes by copy/pasting my backups into notes/iCloud.... 
    notes/mac would not show across iCloud.... don't remeber this being an issue prior to Mavericks when 'all' notes were selected?
    Apple needs to hear from us so they can fix glitches like this.  TM was created for instances like this, hopefully this is just an oversite.  Pass this along to Apple Feedback/iCloud/bug.  If enough of us flag such issues, hopfully it's addressed on the next update.
    Dear Apple, this should be much easier than it is. We should be able to open Notes, go into Time Machine, and restore anything regardless if it's on my Mac or on the cloud.

  • Sent emails are missing from Thunderbird following migration from alternative email client and import of emails

    All sent emails are missing from the Thunderbird 'Sent' folder following import, but Sent folder still shows a count of the imported emails (Thunderbird considered them to be unread when importing them, hence the count). The messages are also visible online (BT Internet email) and on other devices (Android running BlueMail). Settings are set to place copies of sent items into Sent folder. Having imported all my old email, I can send email but again they do not appear in the Sent folder (but do appear online and on other devices). I have tried compacting the Sent folder and i have tried repairing the folder. All other folders (Inbox, other newly created folders) show the email i have imported.
    If I move an email online from the Sent folder to another test folder, it syncs and appears in Thunderbird in that test folder. If I then use Thunderbird to move the email back from that test folder to the Sent folder then Thunderbird will do so, but locks up for a good minute or so while doing that.
    Running TB 24.6.0 on Windows 8.1, incoming server set to IMAP on mail.btinternet.com (port 993), outgoing server set to SMTP on mail.btinternet.com (port 465).
    Help gratefully received!

    Cheers for that, Mulder.
    It did seem to recover some emails which had disappeared from Mail, but not all of them. That's the frustrating thing - short of going through my Yahoo webmail accounts and logging every single email, and then cross-referencing with what's on my desktop, I just can't be sure what's there and what's not!
    Sometimes it's immediately clear that something is awry - the folder I use for emails from my girlfriend is completely empty, for instance, when I definitely had things in there before the weekend. (Yes, again I went away for the weekend, with the computer still running - and Mail on - and again I returned to discover emails missing.
    Arrgh!

  • Subform instances and data missing in email submitted pdf

    I have created a form in which a user can add instances of a subform, enter data, and submit it to an email address as a pdf. When I receive the form the instances are missing. What steps do I need to follow to ensure that all of the data that is entered is sent? Thank you.
    Stephen

    I made sure "Preserve Scripting changes" was set to automatic. And still when I save the form, the instances are not saved.
    Basically I have a main page with several checkboxes that open instances of different types of order forms. It works great in PDF View, but when I save the form with data filled in, only the First page and data are saved and the instances of the other forms do not show up.

  • My important annotations on acrobat for android are missing! What do I do?

    Help. I annotated some very important documents on my android tablet in acrobat and the annotations have gone missing. How do I get them back!?

    Actually, if you know of any nice PC stores, they could help you with determining what needs to be done. Memory slots are memory slots, whether they are PC or Mac. If you look at the memory already in your computer, how many do you have? If you have two sets of two, then you very well might have no additional slots to put memory in. The lower level Macs did only have four total slots. For instance, my dual 1.8 only has four slots and only supports up to 4GB of RAM. If you have the actual slot that the memory fits in, but the clips that are on the ends of each slot are missing, then you should be fine to add more RAM.

Maybe you are looking for