Still Unable to save

This is a follow-up to post Re: Uable to save multiple checkbox records
I can still only save the last record selection not all the selections made with the checkbox.
Create a detail-table storing just a fk-id to the base-table-record and the reject_code (or a fk-reference to the table with the reject_codes).
There is already a detail table (efn_reject_master) for each reject code that is linked to the efn_rejects table that stores the selections.
original code to save is:
DECLARE
rej_cnt NUMBER := 0;
BEGIN
GO_BLOCK('efn_reject_master');
FIRST_RECORD;
WHILE :efn_reject_master.reject_desc IS NOT NULL LOOP
IF :efn_reject_master.check_box = 'Y' THEN
:efn_rejects.reject_code := :efn_reject_master.reject_code;
--added insert here that did not work
INSERT into MEMB.EFN_REJECTS (nominating_lodge, reject_code) VALUES
(:efn_reject_master.reject_code, :efn_reject_master.reject_desc);
rej_cnt := rej_cnt + 1;
END IF;
NEXT_RECORD;
END LOOP;
FIRST_RECORD;
EXIT_FORM;
END IF;
END;
I tried forcing the insert for all checkboxes marked but only last selection is saved. Please help me fix this.

Create a detail-table storing just a fk-id to the base-table-record and the reject_code (or a fk-reference to the table with the reject_codes).There is already a detail table (efn_reject_master) for each reject code that is linked to the efn_rejects table that stores the selections.From that data-model there is no detail table. You just have your base-table (with columns NAME and REJECT_CODE) and one lookup table containing all the existing reject_codes (with columns REJECT_CODE and REJECT_DESCRIPTION). So you can just assign one REJECT_ODE to a customer and not more than one. A table-structure using a detail-table would be
Table EFN_REJECTS
ID (PK-COLUMN You didn't post that, but i guess there is one)
NAME
Table EFN_REJECT_ASSIGNMENTS (stores assignments of reject_codes to the Rejects)
EFN_REJECTS_ID (FK to ID in EFN_REJECTS)
REJECT_CODE (FK to REJECT_CODE in EFN_REJECT_MASTER)
Table EFN_REJECT_MASTER remains as is)

Similar Messages

  • Still unable to save bookmarks in Safari 5.1.2 - any clues?

    Starting with Safari 5.1.1 on Lion I have been unable to save any bookmarks after an initial few hours running when it has been possible. I had hoped that the new release of Safari 5.1.2 might have cured the problem, but it doesn't appear to have done so.
    I've followed all the suggestions on various posts and cleared the numerous plists and caches. This results in being able to save bookmarks in the normal manner, but only for a few hours or so. The next time I open Safari I find that I am once again unable to save any bookmarks without going through the whole rigmarole of exporting the bookmarks, trashing all the Safari preferences, restarting Safri and importing all the bookmarks once again.
    It's great if you have the time and the patience, but my patience is wearing very thin by now.
    Does anyone have any definitive solutions to this problem, which happens on all my Macs running Lion and Safari 5.1, thus ruling out a problem with just one Mac?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is localized to your user account, or is system-wide. Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select “Help” from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Any application you run will behave as if you were running it for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    As Guest, launch Safari and test. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.

  • Unable to save lookup field data in SharePoint 2013 online list

    Dear Support,
    I had successfully created provider hosted app and deployed on SharePoint 2013 online site, in my project I created orderservice.asmx.cs web service and write a code for save record on SharePoint
    2013 online list as I mentioned below and calling on App1.js file.
    But I am unable to save lookup field value as mentioned below code
    Customer is a lookup field I want to save data in SharePoint 2013 online list( Order)where I had successfully
    inserted text field  data (Title &
    Special_x0020_Instruction).
    i am getting error as mentioned below
    500 Internal Server Error {"Message":"Invalid web service call, missing value for parameter: \u0027Title1\u0027.","StackTrace":"   at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary`2
    parameters)\r\n   at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary`2 parameters)\r\n   at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData,
    IDictionary`2 rawParams)\r\n   at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)","ExceptionType":"System.InvalidOperationException"}
    Please let me know the code how to insert lookup field value (Customer)
    in SharePoint online list.
    OrderService.asmx.cs
    Public
    int InsertOrder (Order
    orderRecord)
                pwd.MakeReadOnly();
                clientContext.Credentials =
    new
    SharePointOnlineCredentials (myUserName, pwd);
    try
                  Web
    oWeb = clientContext.Web;
    ListCollection lists = oWeb.Lists;
    List oOrderlist = clientContext.Web.Lists.GetByTitle("Order");
                    clientContext.Load<ListCollection>(lists);
                    clientContext.Load<List>(oOrderlist);
                    ListItemCreationInformation
    itemCreateInfo = new                 ListItemCreationInformation();
    ListItem oListItem = oOrderlist.AddItem(itemCreateInfo);
                    oListItem["Title"]
    = Title;                        listItem["Special_x0020_Instruction"]
    = orderRecord.Instruction;
                        listItem ["Customer"]
    = orderRecord.CustomerId;
                        listItem.Update();
                        clientContext.ExecuteQuery();
    return 1;
    catch
    return -1;
    App1.JS
    $("#Save").click(function
    debugger;
    var OrderProfile = $('#orderprofile').val();
    var CustomerId = $('#exCustomerlist').jqxComboBox('getItem',
    $('#exCustomerlist').val());
    //var Instruction = $('#instruction').val();
            alert(OrderProfile);
            alert(CustomerId);
    var obj = {
    'Title': OrderProfile,
    'Customer': CustomerId }
            $.ajax({
                url:
    "OrderService.asmx/InsertOrder",
                type:
    "POST",
                dataType:
    "json",
                data: JSON.stringify(obj),
                contentType:
    "application/json; charset=utf-8",
                beforeSend:
    function (XMLHttpRequest) {
    //Specifying this header ensures that the results will be returned as JSON.
                    XMLHttpRequest.setRequestHeader("Accept",
    "application/json");
                success:
    function (response) {
                    $(".errMsg ul").remove();
    var myObject = response.d;
                    alert(myObject);
                error:
    function (response) {
                    alert(response.status +
    ' ' + response.statusText +
    ' ' + response.responseText);
    Regards,
    Akhilesh

    Hi Alex Brassington,
    Thanks for your reply.
    I am having the Site Administrator Permission of the public site.
    I am having the permission of Company Administrator of that site but still unable to find
    Device Channel on Site Setting. still I gave the user full control from Site Permission but nothing is happening.
    What should I do next?

  • Unable to save a report that includes a datasource of "Microsoft SQL azure" type

    I have install SSRS in azure using the following instructions (http://msdn.microsoft.com/en-us/library/dn449661.aspx) and all seems to work fine, however when I create a report in report builder 2014 (in this case empty) that includes a Microsoft SQL Azure
    datasource type I am unable to save the report and get the following error message (even though when I test connection it succeeds). 
    "The report definition was saved, but one or more errors occurred while setting the report properties"
    Reports with standard sql datasources work fine.
    I have also tried creating the report using Visual Studio 2013 and get a similar error message.
    I have tried this using SQL 2012 and SQL 2014 and get the same error.
    Does anybody know how I can create a report with Microsoft SQL Azure datasource type?

    Hi jamesla,
    Based on my research, the issue can be caused by a deleted shared data source still exist under the Data Sources list in Report Builder. For more details about this scenario, we can refer to the following thread:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/7170dbee-048c-4298-89ba-df4d42924c8e/the-report-definition-was-saved-but-one-or-more-errors-occurred-while-setting-report-properties?forum=sqlreportingservices
    Since the error message without detail information, we can try to render the report to see the detail error message. Besides, we can try to check it in the log file. The SQL Reporting Services log files are found on the reporting services point server, in
    the folder %programfiles%\Microsoft SQL Server\<SQL Server Instance>\Reporting Services\LogFiles.
    For more information about how to use Microsoft SQL azure as the data source of a report, please see:
    http://msdn.microsoft.com/en-IN/library/ff519560.aspx
    http://programming4.us/database/2158.aspx
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • I have Acrobat Pro DC and Adobe PDF Pack and I am still unable to open a PDF file from my outlook.

    I have Acobat Pro DC and Adobe PDK Pack and I am still unable to oepn an PDF filed from my Outlook.  So I have to save it on my computer but then I can only open it in Adobe Reader.  Please help

    Hello courtneym48375386,
    Could you please let me know what version of Outlook are you using.
    Please try opening some other PDF file and check if the same issue persists as this might be a document specific issue.
    Also, what happens if you try opening the file in Acrobat?
    Let me know.
    Regards,
    Anubha

  • I am still unable to install itunes in Windows Vista

    I have tried to run Fix it 4 times now after doing other things suggested in the Apple community and I am still unable to install itunes. Do you have any other ideas?
    I've been uninstalling/reinstalling and using CCcleaner, sfcscannow and nothing seems to correct error msg 2- corrupt files found/unable to fix.  Now what??????
    I am using windows Vista.  I NEED help!

    nothing seems to correct error msg 2
    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Unable to save ANY types of files in Elements 5.0

    Today I was working with Elements, creating a photomanipulation. This involved several layers, including a background of a beach, a horse, and some text. I've done this before with this exact same program on this exact same computer and not had too many problems. But not today.
    Today when I try to save my creation, in ANY format, I get this message:
    Could not save as
    "C:\Users\User\...\Untitled-1.jpg" because the file is already in use or was left open.
    GAHH!!!! Well of COURSE the stupid file is open, I'm working ON IT and trying to save my work!!! If I try to close the file, I get the standard question:
    Save changes to the Adobe Photoshop Elements document "Untitled-1" before closing?
    to which if I say yes, I get the same old crap:
    Could not save as
    "C:\Users\User\...\Untitled-1.jpg" because the file is already in use or was left open.
    Now if I select save as *PSD or *PDD, *SOMETIMES* it acts like it has saved my work, (Instead of just saying it can't) but when I look for what I saved, all I find are a bunch of crap files that can't be opened. Example:
    Cannot open 'C:\Users]User\Pictures\Photo Manips\~ps2AA0.tmp' because it is the wrong type of file.
    Please note that I never actually chose to save ANY files called ~ps2aa0.tmp at any point in this process.
    So I am stuck in a vicious cycle where before everything was working just fine. And it's not just editing photos or doing manipulations. I can take a brand new blank canvas, scribble a line on it with a paintbrush, and I am completely and totally unable to save even the simplest thing in ANY format whatsoever.
    I tried uninstalling Elements and reinstalling it and that did absolutely nothing, except cause me to lose all the special effect brushes I spent hours downloading. And when I started it back up, I was right where I was before, it even had the same custom color preloaded on the palette, as if it did not truly uninstall AT ALL. (Just the special brushes were missing, thanks for nothing!)
    My computer is maybe 8 months old now, a nice Hewlitt Packard with Vista. I specifically bought this computer so I could do more things with my art and more photos, and the first thing I loaded on it was the Bamboo tablet by Wacom, which came with Photoshop Elements 5.0 free. I've been using it ever since with hardly a problem and now today, I can't save the simplest little thing, and it is really aggravating me to death.
    ANY light that anyone could shed on this would be most appreciated. I'm sure it's something extremely stupid, like I found the secret invisible "do not save anything ever again" button and somehow managed to press it. Whatever it is, I can not for the life of me figure out how to make it work like it's SUPPOSED to work. Somebody please help me before I go stark raving mad.

    Further note: I have uninstalled this stupid program now THREE different times, including using a registry cleaner, which then deleted my DVD drive, thankyouverymuch. And even after I got the DVD drive back so I could reinstall the program, it was like I'd never uninstalled it (with the exception of the custom brushes still being missing) right down to the canvas size and paint color I had been using when all this started.
    So uninstalling it does nothing, resetting preferences does nothing... I can not save my work, period. I've been fighting with this for about 8 hours and I am so frustrated I could just throttle someone with my bare hands for putting me through this crap.
    For a product that came bundled with a $200 graphics tablet, it sure isn't worth a damn. Anybody got any ideas? I'm at my wits' end here.

  • Unable To Save Quark XPress File In Mac OS 10.2.8

    I have been trying to save a layout I created using Quark XPress 6.1 on an iMac with a 10.2.8 OS. When I first created the document, I was able to save it with no problem. However, after I had done some more work on it, I tried to save the changes -- but all I got was a message that said "Cannot find required volume or folder [-35]." The folder I have been trying to save it to is still there. I then tried using Save As to save it in a different location or under a new name -- but then I get an "Unknown error [-51]."
    I tried to solve the problem by consulting Help, but all I was able to find is that apparently the error is occurring with the OS, not with Quark XPress.
    I spent hours working on this document and will be sick if I am unable to save it. Can anyone possibly help me? I'd really appreciate it. Thanks.

    How big is your hard drive, and how full is it?
    How big are files like the one you are trying to save?

  • Unable to save in Enterprise

    Good Day To All,
    I'm working in CRXI 11.5.0.313 and using INFOVIEW as my frontend. Just recently I am unable to save reports to certain directories.
    I get
    "Add objects to folder" right is required to save to the document to folder "Finance".
    Please keep in mind I have full rights as Admin. And I have added reports to this directory in the past.
    Any help would be appreciated.
    Regards,
    David Martinez

    Have you upgraded your system recently to any patch?
    I had a similar issue in BI 4.1 SP2. Please check the below note
    1970288 - Error Could not save the document to the repository for the following reason:[repo_proxy 58] when saving a report to the repository from the webi rich client
    Try by giving full control on the applications and Public folders.
    If issue still persist, try to add the user to admin and check it again.
    If issue not persists, raise an Incident with SAP.  Sure you will have some ADAPT.

  • Unable to Save in Port Range Forwarding

    I'm using the BEFW11S4 wireless router and am unable to save the new port range forwarding settings I have entered.  Everytime I click Save Settings, I receive a box which reads:
    "The server 192.168.1.1 at Linksys BEFW11S4 V4 requires a username and password.
    Warning: This server is requesting that your username and password be sent in an insecure manner (basic authentication without a secure connection)."
    When I enter the same u/p that I used to access the router in the first place, it rejects and keeps bringing up the log in screen.
    I cannot get the port range forwarding to save at all due to this.
    Does anyone have any suggestions?
    Thank you!

    try remembering the password you used for first time while installing the router .... if not then use default password admin with out any username ....
    If still not working then you need to reset the router ....

  • Preflight keeps saying  "Unable to save the PDF File after post processing"

    I'm at a loss how to overcome this. Spent almost a whole day, together with another person, trying to fix it with no success!
    I use Adobe pro CC on a PC
    I usually receive pdf files from this one client who edits and formats a book in Mac Pages. Up until a few days ago I had no problems converting the client's pdfs into pdf/x3, but the last three versions of the latest file have stumped me.
    Just to test, I first just tried to convert the file (33MB), unchanged, to pdf/x3 using the save as other option - message reads  "the document has been saved, however, it could not be converted according to the selected standard profile: convert to PDF/X. Please use preflight with the profile "Convert to PDF/X" in order to identify those properties of the document which prevent it from being compliant to this profile"
    if I then choose under Profiles - convert to PDF/X3 - it says no problems found, and appears to have saved the file. If I try to save again as a pdf/x3, just to make sure, it then tells me it's not pdf/x3 compliant
    OK - so then I go back to preflight - and choose the standards function - then pdf/x3, then continue with the default colour profile. About halfway through the conversion, at the point of saving the file,  I get the message "unable to save the pdf file after post processing"
    So far I've had no luck figuring out what this is.
    I then choose the option of "verify compliance of ppdf/x3" - message reads "pdf/x3 version key (GTS_PDFXVersion) missing", and "Trapped key not true or false"
    Help!! How can I be sure the file converted / or not?
    kim

    Yes I was/am aware of Preflight's inability to play nicely over cloud technologies in certain cases, especially wrt Standards technologies, this will be partially addressed in an upcoming version of Preflight without saying too much.  But the same thing could theoretically have happened if the file was also located on another local network client or server.  Leaving aside the argument that this may violate the Acrobat User Agreement - since purchasing the software, the user agrees to employ its functionality on a single host system and precludes host-client-based scenarios - this simply is not a supported use, meaning the user may not have expectations that it will work at all, if the applications requirements are not observed.  There do exist server-solutions for Preflight files within networks, but Acrobat and by extension Acrobat Preflight is not one of those solutions, and (still) belongs in the single host-based desktop environment.
    However most (99.9%) functions within Acrobat <-> acrobat.com file exchange are supported, file syncing across multiple devices will soon be supported, but Standards compliance is still admittedly a problem at this point.  Some testing has been done using 3rd party cloud technologies starting with enterprise-based solutions, such as Office 365, and this will continue to ramp up to include other 3rd party products.
    As for the second point, Preflight will usually change the PDF version to be complaint, are you saying that it was unable to do so in this case?  It seems that this error should have popped up during the normal Preflight conversion attempt.  Personally I think solving a workflow problem using the print path is a little bit of a heavy-handed approach, but if helped and the results are acceptable, then that is good.  Since that path is non-existent on a Mac, as one needs to Save as Adobe PDF from the Print dialog's PDF drop-down menu, I am assuming your workflow involved file creation on a Mac, then further processing on Windows using the PDF printer.  I am wondering if a simple resave/Save As... to PDF with overwrite on a Mac, or Preflighting the file using a PDF version compatibility profile before the PDF/X conversion would have helped.  Since there are such a multitude of methods that a PDF can be created, there are also many ways within Acrobat that a user can shape the file to be compatible with the expected workflow, ie, 'many ways to skin a cat', without being morbid.

  • Unable to save paragraph and character styles

    I noticed an issue popping up for me in CS6 yesterday. I thought it was originally because of Fireworks saved PSD but an effort re-create the file from scratch in PS I'm coming across the same issue. In PS when I have a large amount of text layers and create a paragraph or character style, when I have ANY layer/group in my document locked I'm unable to save any paragraph or layer styles. Regardless of the layer or group being locked and regardless of what layer is highlighted I'm unable to save styles / any settings / name etc. The error I get for character styles for example is:
    "Could not complete the Modify Named Character Style command because a specified layer is locked."
    I did notice that in the Fireworks created PSD that without any layer even being locked I'd still get an error. It may be that this other document got some bad mojo from the Fireworks PSD. When creating a test doc and only creating a couple text layers and a bunch of empty groups and layers I'm unable to reproduce this. It appears to happen to me when I have a slew of text layers.
    Has anyone else experienced this and figured out a more solid workaround?

    If you want to add the styles to an already created document:
    1) Create you Character style containing only the character color
    2) Find and Replace, searching for text with red color and replace formatting with the new character style. (Don't type anything in the text part of the Find and Replace dialog)
    3) Create and apply your paragraph style to all. The text with the Character Style applied will stay red.

  • Office 2013 - Unable to save/save as to mapped home drive

    Hello--
    We have several users who are unable to save documents to their mapped home drives, which we point to H.
    If you browse to the UNC of the mapping, you can save just fine. Other mapped drives work correctly, only the H mapping give us the message: "Access denied. Contact your administrator." with a second message "Unable to save to this location..."
    I have only seen the error in Excel so far, I am still contacting the other users.  This is not widespread.
    Our server admins have verified permissions and the save actions to the full UNC confirm this.
    Has anyone else encountered this issue?
    Thanks!
    Matt

    Hi,
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Still unable to edit a word document after conversion from pdf?

    I converted a pdf file to a word document but am still unable to edit the word document and save as a newly created word document.  please help, thanks.

    Hi Disc9,
    In order to help you. Let me know which application of Adobe you are using including the version.
    Also let me know the complete workflow how you convert the PDF to docx/doc.
    Regards.

  • The server was unable to save the form at this time. Please try again

    Having created a new custom list (even with only a text field) I am unable add new items to the list - the error message is Unexpected
    response from server. The status code of response is '0'. The status text of response is ''. when in 'quick edit'.
    If I try to add or modify an item in the list by clicking 'add new item' I get "The
    server was unable to save the form at this time. Please try again."
    I have restarted the Sharepoint Search Host Controller server but to no avail. I have 24Gb RAM for this server so it's not a
    memory issue (8Gb available). I have also tried from various browsers including Chrome and Safari - still the same error message.
    This error only occurs on lists. I can edit document properties in a library and have no problems with calendar entries.
    There are no entries in the event viewer, so where do I need to begin looking to find out what is (or rather is not) happening?

    One thing I noticed in SP 2013 is that if your list has unique permissions and a user/group has permissions only on that list and has limited or no access at the site level, then you run into this error: "The server was unable to save the form at this time.
    Please try again."
    This can be resolved by either giving that user/group atleast read access at the site level or in my case I had to create a new permission set (since we cant update limited access permission set) which is same as limited access but with the additional permission
    of "Use Remote Interfaces  -  Use SOAP, Web DAV, the Client Object Model or SharePoint Designer interfaces to access the Web site."
    I am not sure if this is a bug or as per design, but not allowing a user who has needed permissions at the list level but limited access at site level doesnt seem right. Never ran into this issue in prior version of SharePoint. I tested and this additional
    permission doesnt seem to violate any security at site level. But implement this at your risk. No guarantees provided and not responsible for any issues with this implementation if any.

Maybe you are looking for