Create, Save Delete Advice

I am creating an application with potentially about 20,000 users.
At the moment I have manually coded my insert, update and delete procedures in page processes, which I will probably move into the database later. I also have my page load coded manually
Is this the best approach or should I be using the Apex automatic row processing function.
I tried to replace one of my manual update processes with a automatic row process and received an error
ORA-06550: line 1, column 17: PL/SQL: ORA- 00936: missing expression ORA-06550: line 1, column: PL/SQL: SQL statement ignored
Not sure why ?
Gus

The automated row processing takes care of optimistic locking for you. There is nothing wrong with building your own inserts, updates and deletes as long as you take care of this too.
I don't know why you got that error, but then I don't know quite what you did. You can't just change the processes, you have to update the region and item properties to associate them with the database table and columns.

Similar Messages

  • I have this following problem in Adobe Premiere Elements 11: Error of export: You don't have permissions to create or delete the output file.

    Hey guys,
    I have this following problem:
    When i export my movie to my desktop from premiere elements 11 it fails and says "Error of export: You are not permitted to create or delete the output file."
    This is the first time i had this problem.
    I have no ideas to solve this problem ... I don't found it on this page neither in the whole web -.-
    I look forward to get requests

    S
    QuickTime is a requirement for Premiere Elements (any version). Please download and install it so that we can continue this troubleshooting. Among other things, without QuickTime installed, you will not have QuickTime presets in Publish+Share and will not have available to you codecs supplied by that player.
    Please right click the Premiere Elements 11 desktop icon and apply Run As Administrator. Please review computer permissions..
    In the meanwhile, please reply to all the questions, including
    What is the description for your export choice and does it make a difference if your Export Save In location is the desktop or to Video Folder in Documents?
    What is a description of your computer resources?
    Please consider and supply details need to help us help you.
    We want you to succeed.
    Thank you.
    ATR

  • How to create a deletion of Adobe Acrobat through SCCM 2007

    Can anyone give me assistance with creating a deletion package through SCCM 2007 that will remove Adobe Acrobat 8? I've tried the delete switch and msiexec, but doesn't seem to do the trick. Any assistance would be helpful.

    Create A batch file
    Content:
    ==============================================================================
    @echo off
    cls
    echo
    =================================================
    echo Please wait while  ....PRODUCT NAME ....  is uninstalling
    =================================================
    Msiexec.exe /x {QUID} /q
    ::::Replace QUID with quid number ie  AC76BA86-1033-ffff-7760-000000000006
    ==============================================================================
    SAVE BATCH FILE IE UNINSTALL.BAT
    THEN CREATE PACKAGE IN sccm

  • How to use icons (database, database backup, save, delete etc.) in Oracle f

    Hi Everyone,
    I am using Oracle forms 5.
    I want to use iconic buttons in Oracle forms 5 for database, database backup, save, delete etc.
    Example:
    Like Oracle Enterprise Manager, a GUI tool, we can see the different icons for different items (icon for database backup, database etc).
    How should I get these icons? How should I attach these icons to the buttons/Image item in Oracle Forms ?
    Should I give the file path of these icons in property palette of an item in Oracle forms?
    If yes, then which property of item, will I use in order to attach the icons?
    Please send the solution.
    If some one can also send the related icons, I will thankful to him.
    Regards
    Martin

    Hi FRANKS,
    Thanks for your useful information.
    WIth regards to attach icons to button/text item in Oracle forms,I am still facing problem.
    As you said, I created the parameter/variable UI_ICONS in Forms Home and gave the value pointing to the directory holding the .ico files.
    And then set the iconic property of the button and the icon's name without its extension.
    But it didn't work.Could ypu please let me know what is going wrong?
    I am thankful to you.
    Martin

  • Create Edit Delete in Oops ALV

    Hi Experts,
    I need to create an ALV which will provide all the functionality of Create, Edit, Save and Delete records and update the Custom table accordingly.
    I want to design it as follows -
    1. Display should be in non-ediatble mode initially (because I don't want to make it completely ediatble at all times)
    2. When the user clicks Create button a new line appends at the bottom and the ALV has to be made editable, for the values to be entered at the new row appended.
    3. When the user presses Save, again the ALV goes into non-ediatble mode.
    4. When the user presses Edit Button, the ALV is open for editing and again the whole ALV is editable. After Editing, the user will select those particular lines through Box Button and Press on Save Button to enable those particular lines to be modified and saved in ALV. Again at the press of Save button, the ALV will switch to Non-modifiable view.
    5. For Deletion, select the particular line/lines through Box Button and Click on Delete.
    This is how I plan to achieve the Create, Edit, Delete Functionality.
    Can you please confirm the feasibilty of this Design, whether it is achievable.
    There is some option of dynamically changing the Field Catalogue. If it is there, I'm thinking of utilising it for switching the modes on click of Create, Edit and Save Buttons. Click/Edit --> Modifiable. Save --> Non-modifiable.
    Please do give your comments on the above functionality and feasibility. If you are knowing a different or easy approach please do share it. If you have done it then please do share it.
    Thanks & Regards
    Tanu

    Plz ask your specific requirement otherwise mosarator will block the thread...

  • CREATE and DELETE operations in MI7.1 for PDA

    Hi,
    We are developing a sample scenario for PDA in 7.1. Problem is we are able to implement GETLIST, GETDETAIL and MODIFY operations but not able to implement CREATE and DELETE operations. For GETLIST and GETDETAIL i have created queries. Modify is also simple (i am creating a form to edit and commiting data once i click on save). But to implement CREATE and DELETE we dont have any reference.
    Regards,
    Vinay

    Hi,
    Now i know the answer
    There is a typed method on the service component model class for root node creation. Example for binding a new root instance to a context node:
    wdContext.nodeCurrentEmployee().bind(Collections.singleton(model.createEmployeeSdoEmployee()));
    where model is your webdynpro model.Employee is a context node model bounded to Employee model class.This node has to be manually created in context(and then can be context mapped and bound to elements in view)
    wdContext.nodeCurrentEmployee().setLeadSelection(0);
    Creating a child is done on the root itself, but persisting it is a two step process:
    address = employeeRootNode.createNewAddresss(); <- this only creates the instance in memory
    where employeeRootNode is the model object for which the child has to be created. If the element for which the child has to be created exists in context then it can be got by
    wdContext.nodeEmployee().currentEmployeeElement.model()
    employeeRootNode.addToAddresss(address);  <- this persists the new instance
    wdContext.nodeCurrentAddress().bind(Collections.singleton(address));
    wdContext.nodeCurrentAddress().setLeadSelection(0);
    Delete of a root is also done on the sc model class:
    model.removeEmployeeSdoEmployee(employeeRootNode);
    Delete of a child is done one the root:
    employeeRootNode.removeFromAddresss(address);
    Hope this helps.
    Regards,
    Vinay
    Edited by: Vinay TS on May 5, 2008 8:31 AM

  • How do I create (or delete) a new tag for a website, so that its tag appears (or does not appear) every time I restart Firefox?

    How do I create (or delete) a new tag for a website, so that its tag appears (or does not appear) every time I restart Firefox?

    See this - https://support.mozilla.org/en-US/kb/How%20to%20set%20the%20home%20page

  • How to create SAVE button in Workbook using BI IP Functionality

    Hi All,
    I have Real-time Infocube (ZCUBSDID) with me. Planning has been done on the cube using BI-IP (like Aggregation level, filter, planning function and planning sequence are present there).
    As an Input i have everything in Quality system like I can access query in Bex Anlyzer (Input Ready Query) and also i have workbook associated with the query. SAVE button is also present on workbook which is giving result based on fiscal year and version.
    Now my task is to create workbook on Development system with the same functionality as Quality System.
    I have same Query available on DEV system also. I created new  Workbook but SAVE button is not available in my workbook.
    Can anyone suggest how to create SAVE button in my new workbook.
    I am new in IP side so please let me know if i can get any help from workbook which is already present in Quality system.
    Which type of analysis i should do to come out with solution.....otherwise let me know step by step procedure to create SAVE button on workbook using BI-IP functionality.
    It will be great help. My advance thanks goes to you people.
    Thanks,
    Rupali Singh

    Check points 19 & 20 on this link http://help.sap.com/saphelp_nw2004s/helpdata/en/43/a033e0f56e21b5e10000000a1553f6/frameset.htm.
    Command to be called on SAVE button is SAVE_AREA as explained in the point 20.
    Regards,
    Deepti

  • BAPI for purchase order .. to create and delete confirmation

    HI Gurus
    I need to create and delete PO(Purchase order) confirmation in SAP 4.7 R3 .
    Please let me know which BAPI i can use for .. in SAP 4.7
    1. Create PO confirmation
    2. Delete PO confirmation
    Many thanks and regards
    Sandeep Sharma

    Hi Sandeep,
    In SAP 4.7 R3 & ECC 5.0. we don't have BAPI to delete / create PO confirmatons.
    Use this FM for both : ME_CONFIRMATION_UPDATE
    In addition to above , we need to use this FM : ME_CONFIRMATION_REDISTR_ITEMS , for PO item update in MD04 transaction.
    In addtion to above 2 FM, you need to used Change doucment FM for write log data.
    Thanks.

  • How to identify combination of created and deleted Bank Details

    Hi Experts,
    I will develop a report similar to standard report RFKABL00. The requirement is to display the date, time, vendor number, vendor name, changed by, field name, company, purchasing org, new value and old value everytime a user make a change on the bank details (Bank Key and Bank Account only in XK02).
    The content of field name will be either Bank Key or Bank Account with its corresponding old and new value. Using transaction XK02, I tried to replace the Bank Account of the vendor and saved the data. The created and deleted values can be found in CDPOS using: objectclas: kred, tabname: lfbk and fname: key; but it is difficult to identify the correct combination of deleted and created values. I observed that for non-key fields in LFBK table there are entries for old and new values but for key fields like bank key and bank account they have nothing.
    How will we identify the correct combination of deleted and created values if there are many entries in CDPOS?

    Murali,
    As already specified in your previous thread. You can get the id using source code. or extend the CO and print the value of s2.
    Regards,
    Gyan
    www.gyanoracleapps.blogspot.com
    www.querenttech.com

  • Re: Enable Save ,Delete buttons in Form

    Hi All,
    I using Jdeveloper 11.1.2.3 ,
    My scnerio is i am taking 2 panel tabs  One tab contain table i.e List, second tab contain the Form i.e Details ,
    I am taking Save,Delete,CreateNew buttons, Whenever i am in List Only CreateNew buttons should enable mode,remaining 2 buttons is in disable Mode.
    and in Details form Save and Delete buttons is Enable Mode.
    How Can i achieve this requirement,
    With regards,
    satishkumar

    Thanks for your Rply Timo,
    I have lot of forms in Application, thats why i am globally defined all the Buttons.
    WithRegards,
    satishkumar N

  • How do i create "Save As" option to file menu in Numbers version 2.3 (554). I have done this previously but cant remember how its done. My OS is 10.9.3

    How do i create "Save As" option to file menu in Numbers version 2.3 (554). I have done this previously but cant remember how its done. My OS is 10.9.3

    You can follow the steps in this article on TUAW to change the five-key shortcut for Save As… to the old tthree-key shortcut.

  • Services for Object (Create , Change, Delete)

    Hi All,
    Is there any sample program where we can create (Change and delete) a note in the services for object for sales order.
    We have requitement where we need to develop a Z program which should have the functionality of changing or creating or deleting the Note from the services for object in sales order. the input parameter will be sales order.
    Thanks.
    Chindam.

    I don't have any sample code
    Please check how this fm called
        CALL FUNCTION 'BDS_CALL_NAVIGATOR'
           EXPORTING
                classname      = 'BUS2037'    " Business object for sales order
                classtype      = 'BO'
                OBJKEY         = L_OBJKEY  " Sales order Number
           TABLES
                EXCLUDING      = i_excluding
           EXCEPTIONS
                INTERNAL_ERROR = 1
                OTHERS         = 2

  • Users unable to create or delete folders in migrated public folders using Outlook

    We have an Exchange 2013 CU3 environment migrated from Exchange 2007.
    The public folder migration was completed over the weekend.
    The environment has several public folder mailboxes.
    Post migration users are unable to create/delete new sub folders,  or modify permissions using Outlook on any of the migrated public folders.  Users can however create new top level folders using outlook. They can also create and delete new posts
    in migrated public folders.
    Admins are able to create folders and set permissions on migrated folders using the EAC.
    Test User accounts used for testing are set to use the Primary Hierarchy mailbox as their default public folder mailbox.
    Test Users have been given Owner permissions from the root down on the folders we are testing with.
    We have tested with Outlook 2010 and 2013 getting the same "Cannot create the folder" error.

    Further testing
    We moved a top level folder from a secondary PF mailbox to the primary PF mailbox using the New-PublicFolderMoveRequest command in powershell.
    After the move completed we could create new folders under the moved top level folder.
    The top level folder that was moved had it's own sub-folders that we did not move to the primary mailbox. (We didn't move the whole branch.. Just the top level folder)
    We still cannot create or modify the existing sub-folders after moving the top level folder.
    We then moved the newly created sub-folder to a secondary PF mailbox.
    At that point we could no longer create sub-folders in the folder form outlook.
    From what I can tell you can only create new sub-folders in folders homed to the primary PF mailbox when using outlook.
    Is this a bug or as designed?
    According to this Tech ed presentation Clients connecting to a secondary PF mailbox should have folder changes proxy to the primary PF mailbox.. (See slide 10)
    http://channel9.msdn.com/Events/TechEd/NorthAmerica/2013/OUC-B329#fbid=
    Update : 2-5-2014
    Not much new to report other than it appears that users need to be homed to the primary PF mailbox to delete calendar meetings.
    Opened a ticket with Premier support.
    Update 2-11-2014
    Premier support continues to look into the issue. No ideas as to the cause yet.
    2-24-13
    Still no resolution from support or even a clue what is causing this.

  • /BIC/ namespace not modifiable, can't create PSA delete variant in process

    Hello,
    When I attempt to create a PSA delete process in a process chain, I get an error message as such:
    Namespace '/BIC/' must be set to 'changeable' (transaction SE06)
    Message no. R7063
    I have had Basis dot his for me before and it worked, but it takes a lot of change menagement to do this.  I have asked Basis to leave it modifiable in SE06, but they will not.  Is that the only way to be able to create PSA process variants is to have Basis use SE06?  I looked in Object Changeability, but nothing stuck out.  I should not have to have Basis do this task every time.  Please let me know if there is a better way.
    Thank you.
    Brent

    Hi Brent
    I believe /BIC/ namespace should remain modifiable where you are creating PSA deletion process.
    You can check if that is the case in your system.
    Check in TRNSPACE table with namespace /BIC/  .. changagle flag should be X. I think it should be in your production also
    Regards
    Anindya
    Edited by: Anindya Bose on Mar 8, 2012 4:52 AM

Maybe you are looking for

  • Unable to filter the report by clicking the last column's name

    Hi, I have interactive report page having lots of column. All columns were not fitting in the screen so I added a code in the region--- header and footer section--- <div style="overflow: auto; width: 1220px; height: 700px;"> I got a scroll bar at the

  • I-Book G4 start-up Issue

    I power on the I-Book G4, and all I hear is the fan running. The O.S. doesn't boot up, and nothing comes up on screen. Could this be a loose cable not connected ( DIY Fix? ) or escalate to the Apple Pro's?

  • Replace "\r\n" with ";"

    Hi everyone! How can i replace a string that contains "\r\n" carriage return and line filled with a ';' semicolon character? e.g String str="Company \r\n address \r\n phone \r\n"; new String str="Company;address;phone;"; thanks in advance!

  • Having issues mapping network drives

    Having issues mapping network drives to my Mac. I trying to use samba, the name of the server is Media_Server and I want it to connect to volume_1. So I put int smb://mediaserver/volume1 and I get an error. Can anyone tell me what I'm doing wrong?

  • How to correct a double value to two decimal places

    hi, How to correct a double value to two decimal places eg. double tt=100.100032 i want to correct to 2 decimal places ie tt=100.10 regards, jagan