If Records of different list items are entered, then the data is not getting inserted in the table.

Hi Everyone,
A Very Very Happy, Fun-filled, Awesome New Year to You All.
Now coming to the discussion of my problem in Oracle Forms 6i:
I have created a form in which the data is entered & saved in the database.
CREATE TABLE MATURED_FD_DTL
  ACCT_FD_NO    VARCHAR2(17 BYTE)               NOT NULL,
  CUST_CODE     NUMBER(9),
  FD_AMT        NUMBER(15),
  FD_INT_BAL    NUMBER(15),
  TDS           NUMBER(15),
  CHQ_NO        NUMBER(10),
  CREATED_DATE  DATE,
  CREATED_BY    VARCHAR2(15 BYTE),
  PREV_YR_TDS   NUMBER(15),
  ADD_FD_AMT    NUMBER(15),
  DESCRIPTION   VARCHAR2(100 BYTE),
  P_SAP_CODE    NUMBER(10),
  P_TYPE        VARCHAR2(1 BYTE)
The form looks like below:
ENTER_QUERY     EXECUTE_QUERY     SAVE     CLEAR     EXIT
ACCT_FD_NO
CUST_CODE
FD_AMT
FD_INT_BAL
PREV_YR_TDS
TDS
ADD_FD_AMT
P_SAP_CODE
P_TYPE
CHQ_NO
DESCRIPTION
R
W
P
List Item
There are 5 push buttons namely ENTER_QUERY, EXECUTE_QUERY, SAVE, CLEAR, EXIT.
The table above is same as in the form. All the fields are text_item, except the P_TYPE which is a List_Item ( Elements in List Item are R, W & P).
The user will enter the data & save it.
So all this will get updated in the table MATURED_FD_DTL .
I am updating one column in another table named as KEC_FDACCT_MSTR.
and
I want this details to get updated in another table named as KEC_FDACCT_DTL only if the P_TYPE='P'
CREATE TABLE KEC_FDACCT_DTL
  FD_SR_NO                NUMBER(8)             NOT NULL,
  FD_DTL_SL_NO            NUMBER(5),
  ACCT_FD_NO              VARCHAR2(17 BYTE)     NOT NULL,
  FD_AMT                  NUMBER(15,2),
  INT_RATE                NUMBER(15,2),
  SAP_GLCODE              NUMBER(10),
  CATOGY_NAME             VARCHAR2(30 BYTE),
  PROCESS_YR_MON          NUMBER(6),
  INT_AMT                 NUMBER(16,2),
  QUTERLY_FD_AMT          NUMBER(16,2),
  ITAX                    NUMBER(9,2),
  MATURITY_DT             DATE,
  FDR_STAUS               VARCHAR2(2 BYTE),
  PAY_ACC_CODE            VARCHAR2(85 BYTE),
  BANK_CODE               VARCHAR2(150 BYTE),
  NET_AMOUNT_PAYABLE      NUMBER,
  QUATERLY_PAY_DT         DATE,
  CHEQUE_ON               VARCHAR2(150 BYTE),
  CHEQUE_NUMBER           VARCHAR2(10 BYTE),
  CHEQUE_DATE             DATE,
  MICR_NUMBER             VARCHAR2(10 BYTE),
  PAY_TYPE                VARCHAR2(3 BYTE),
  ADD_INT_AMT             NUMBER(16,2),
  ADD_QUTERLY_FD_AMT      NUMBER(16,2),
  ADD_ITAX                NUMBER(16,2),
  ECS_ADD_INT_AMT         NUMBER(16),
  ECS_ADD_QUTERLY_FD_AMT  NUMBER(16),
  ECS_ADD_ITAX            NUMBER(16)
So for the push button 'Save' , i have put in the following code in the Trigger : WHEN BUTTON PRESSED,
BEGIN
     Commit_form;
          UPDATE KEC_FDACCT_MSTR SET PAY_STATUS='P' WHERE ACCT_FD_NO IN (SELECT ACCT_FD_NO FROM MATURED_FD_DTL);
          UPDATE MATURED_FD_DTL SET CREATED_DATE=sysdate, CREATED_BY = :GLOBAL.USER_ID WHERE ACCT_FD_NO = :acct_fd_NO;
IF :P_TYPE='P' THEN
     INSERT INTO KEC_FDACCT_DTL
          SELECT FD_SR_NO, NULL, MATURED_FD_DTL.ACCT_FD_NO, FD_AMT, INT_RATE, P_SAP_CODE,
               GROUP_TYPE, (TO_CHAR(SYSDATE, 'YYYYMM'))PROCESS_YR_MON,
               FD_INT_BAL, (FD_INT_BAL-MATURED_FD_DTL.TDS)QUTERLY_FD_AMT , MATURED_FD_DTL.TDS,
               MATURITY_DATE, P_TYPE, NULL, NULL, (FD_INT_BAL-MATURED_FD_DTL.TDS)NET_AMOUNT_PAYABLE,
               NULL, NULL, CHQ_NO, SYSDATE, NULL, 'CHQ', NULL, NULL, NULL, NULL, NULL, NULL
          FROM MATURED_FD_DTL, KEC_FDACCT_MSTR
     WHERE KEC_FDACCT_MSTR.ACCT_FD_NO=MATURED_FD_DTL.ACCT_FD_NO;
END IF;
COMMIT;
     MESSAGE('RECORD HAS BEEN UPDATED AS PAID');
     MESSAGE(' ',no_acknowledge);
END;
If P_TYPE='P' , then the data must get saved in KEC_FDACCT_DTL table.
The problem what is happening is,
If i enter the details with all the records as 'P' , the record gets inserted into the table KEC_FDACCT_DTL
If i enter the details with records of 'P' and 'R' , then nothing gets inserted into the table KEC_FDACCT_DTL.
Even the records with 'P' is not getting updated.
I want the records of 'P' , to be inserted into table KEC_FDACCT_DTL, even when multiple records of all types of 'P_Type' (R, w & P) are entered.
So, can you please help me with this.
Thank You.
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
Oracle Forms Builder 6i.

Its not working properly.
At Form_level_Trigger: POST_INSERT, I have put in the following code.
IF :P_TYPE='P'THEN
  INSERT INTO KEC_FDACCT_DTL
  SELECT FD_SR_NO, NULL, MATURED_FD_DTL.ACCT_FD_NO, FD_AMT, INT_RATE, P_SAP_CODE,
  GROUP_TYPE, (TO_CHAR(SYSDATE, 'YYYYMM'))PROCESS_YR_MON,
  FD_INT_BAL, (FD_INT_BAL-MATURED_FD_DTL.TDS)QUTERLY_FD_AMT , MATURED_FD_DTL.TDS,
  MATURITY_DATE, P_TYPE, NULL, NULL, (FD_INT_BAL-MATURED_FD_DTL.TDS)NET_AMOUNT_PAYABLE,
  NULL, NULL, CHQ_NO, SYSDATE, NULL, 'CHQ', NULL, NULL, NULL, NULL, NULL, NULL
  FROM MATURED_FD_DTL, KEC_FDACCT_MSTR
  WHERE KEC_FDACCT_MSTR.ACCT_FD_NO=MATURED_FD_DTL.ACCT_FD_NO;
  END IF;
MESSAGE('RECORD HAS BEEN UPDATED AS PAID');
MESSAGE(' ',no_acknowledge);
It worked properly when i executed first time, but second time , in database duplicate values were stored.
Example: First I entered the following in the form & saved it.
ACCT_FD_NO
CUST_CODE
FD_AMT
FD_INT_BAL
PREV_YR_TDS
TDS
ADD_FD_AMT
P_SAP_CODE
P_TYPE
CHQ_NO
DESCRIPTION
250398
52
50000
6000
0
600
0
45415
P
5678
int1
320107
56
100000
22478
3456
2247
0
45215
R
456
320108
87
50000
6500
0
650
0
21545
W
0
In the database, in table KEC_FDACCT_DTL, the ACCT_FD_NO:250398 with P_TYPE='P' record was inserted.
ACCT_FD_NO
P_TYPE
250398
P
But second time, when i entered the following in the form & saved.
ACCT_FD_NO
CUST_CODE
FD_AMT
FD_INT_BAL
PREV_YR_TDS
TDS
ADD_FD_AMT
P_SAP_CODE
P_TYPE
CHQ_NO
DESCRIPTION
260189
82
50000
6000
0
600
0
45415
P
5678
interest567
120011
46
200000
44478
0
4447
0
45215
R
456
30191
86
50000
6500
0
650
0
21545
W
56
In the database, in the table KEC_FDACCT_DTL, the following rows were inserted.
ACCT_FD_NO
P_TYPE
250398
P
250398
P
260189
P
320107
R
320108
W
There was duplicate of 250398 which i dint enter in the form second time,
All the other P_TYPE was also inserted , but i want only the P_TYPE='P' to be inserted into the database.
I want only those records to be inserted into the form where P_TYPE='P' and duplicate rows must not be entered.
How do i do this???

Similar Messages

  • Large list items are not crawling

    Recently we have migrated SharePoint 2007 application to SharePoint 2013. In that we are having a list which contains 40000+ items and each item have unique permissions set based on the business requirement.
    After migration, we have ran full crawl on the web application. After the crawl, the list items are not crawled and displayed in the search results. When checked in the crawl log, there is no entry related to the list items.
    Based on suggestions from the blog and microsoft we have changed the FilterProcessMemoryQuota and DedicatedFilterProcessMemoryQuota to 500 MB from 100 MB.
    Still, the items are not crawled. Later we have modified some of the items in the list and ran the incremental crawl. The list items which are modified are crawled and available in the search results.
    We have scheduled the incremental crawl to run on every night and full crawl to run every week end (saturday) night. What happened is the incremental crawl that run after full crawl deletes all the items which are modified and crawled before the full crawl
    with a message "Deleted by the gatherer ( This item was deleted because its parent was deleted. )". This happens only with the incremental crawl run after the full crawl, but the subsequent incremental crawls add the items to the
    search results until full crawl run.
    Please advise on this.
    Ramkumar

    40k items with individual permissions? That's going to have significant performance impact across your content database and is getting close to the hard limit(?) of 50k scopes per list http://technet.microsoft.com/en-us/library/gg128955(v=office.15).aspx
    Having said that...
    Your full crawl is picking up the items but the first incremental crawl is subsequently deleting them. Are you really using Incremental crawl or is this continuous crawling? Are all list items being deleted or merely some of them?
    I'd normally put this down to the crawler not being able to identify the items, which may be the case here, but this sounds a little more interesting.

  • Whenever a record is Edited the rows are not getting displayed in the repor

    Hi all,
    When a new record is added or edited, It is physically getting added or edited according to the process, but those records are not getting displayed in the report..
    Please Any body faced this situation...
    Help me to identify what error i am doing........
    thanks in advance
    kavitha L

    Hi KChamarti,
    I am also trying to display images insid the datagrid but i get a weird broken image(all silver gray).
    My item renderer is:
              <mx:DataGridColumn headerText="Type">
                   <mx:itemRenderer>
                     <mx:Component>
                      <mx:HBox verticalGap="2">
                          <mx:Image id="dgImage" source="\assets\images\{toLowerCase(data.type)}.jpg" />
                          <mx:Label text="{data.type}"/>
                        </mx:HBox>
                     </mx:Component>
                   </mx:itemRenderer>
                </mx:DataGridColumn>
    Am i mentioning the source of the image in the right way?

  • Incoterms are not getting copied at the item level

    HI Gurus,
    I have an sales order where If we change the Incoterms at the header level, its not getting copied at the line Items. Its giving an information mesage stating, Header Business Data does not apply to Item.
    The Incoterms are intially getting copied from Customer master, but later I am not able to change it.
    Please let me know what might be the reasons ? If possible Please let me know some User exits which needs to be checked.
    Thanks,
    Swathi

    Check in VOV8 for your sale order type the following:-
    a)  If both Check Division and Item division are ticked, then system will pop up this message due to the fact that in the said sale order, the item division differs from header division
    b)  The field "ProdAttr.messages" should be blank
    Next go to VOV7, select your item category and execute.  There ensure that the box is ticked for "Business item".  If this is unticked, then system will copy all header data to line item and you cannot change it.
    thanks
    G. Lakshmipathi

  • Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator

    Issue : In sharepoint 2013, I am experiening below error while using filter in the list view due to the number of items in this list exceeds the list view threshold, which is 10000 items. Tasks that cause excessive server load (such as those
    involving all list items) are currently prohibited.
    Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator
    Could you please suggest a way to avoid this issue apart from incrementing the list view threshold limit .
    Prashanth

    Reorganizing content, or creating more specific views. sharepoint is warning you that the content is structured in such a way that it can cause performance issues, which should be addressed in some way.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Custom SharePoint 2010 designer page throws "The data source control failed to execute the insert command" exception while adding the new item after the August 13, 2013 CU has installed

    We have the SharePoint Server 2010 with SP1 environment on which the custom SP2010 designer pages were working as expected before the
    August 13, 2013 CU has installed. But, getting the below exception while trying to add the new item after the CU has installed.
    Error while executing web part: System.NullReferenceException: Object reference not set to an instance of an object.     at Microsoft.SharePoint.WebControls.SPDataSourceView.ExecuteInsert(IDictionary values)     at
    System.Web.UI.DataSourceView.Insert(IDictionary values, DataSourceViewOperationCallback callback) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65  w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected Microsoft.SharePoint.WebPartPages.DataFormWebPartException: The data source control
    failed to execute the insert command. 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.InsertCallback(Int32 affectedRecords, Exception ex)     at System.Web.UI.DataSourceView.Insert(IDictionary
    values, DataSourceViewOperationCallback callback)     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.FlatCommit()     at Microsoft.SharePoint.WebPartPages.DataFormWebPart.HandleOnSave(Object sender, EventArgs e)    
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean
    inclu... 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    06/19/2014 16:49:37.65* w3wp.exe (0x1240)                        0x1300 SharePoint Foundation        
     Runtime                        tkau Unexpected ...deStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 3b64c3a0-48f3-4d4a-af54-d0a2fc4553cc
    I have tried changing the "DataSourceMode" as below, now the insert command is working, but update command is not working.
    <SharePoint:SPDataSource runat="server" DataSourceMode="ListItem" />
    Also, the lookup dropdown fields are displaying the value as "<a href="Daughterhttp://cpsp10/sites/Employees/_layouts/listform.aspx?PageType=4&ListId={8F62F444-FB6A-4F03-9522-C4696B45DCD1}&ID=10&RootFolder=*">Daughter</a>"
    instead of only "Daughter".
    Please provide the solution to get rid of this issue.
    Thanks
    Ramasubbu

    Try below:
    http://social.technet.microsoft.com/Forums/en-US/ae910269-3a0c-4506-844b-e8bc89d95b71/data-source-control-failed-to-execute-the-insert-command
    http://blog.jussipalo.com/2012/01/sharepoint-2010-data-source-control.html
    While there can be many causes for this generic error message, in my case the first parameter or ddwrt:DataBind function inside the SharePoint:FormFields element was
    'i' and I was working with an Edit Form. Changing it to
    'u' as it was with every other FormField fixed the issue.
    <SharePoint:FormField runat="server" id="ff1{$Pos}" ControlMode="Edit" FieldName="Esittaja" __designer:bind="{ddwrt:DataBind('u',concat('ff1',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Esittaja')}"
    />
    Explanation:
    DataBind operation type parameters (the first parameter) are listed below:
    'i' stands for INSERT,
    'u' stands for UPDATE,
    'd' stands for DELETE.
    http://webcache.googleusercontent.com/search?q=cache:d9HHY4I7omgJ:thearkfloats.blogspot.com/2014/03/sharepoint-2010-data-source-control.html+&cd=4&hl=en&ct=clnk&gl=in
    If this helped you resolve your issue, please mark it Answered

  • Work item not getting displayed in the portal

    Hi  experts,
    We are creating a protoype for one of the standard HCM form for change in working time. When we initiate the process, the workflow is supposed to identify the agent(which is the manager in this case) and push the work item in the inbox of the manager.
    In our issue, we are able to see the workitem in SAP inbox, but the same work item is not getting displayed in the portal.
    If we try to approve from the SAP inbox, the hard coded message u201CWork item can only be executed using the Portal and the UWLu201D comes. [this comes through the method of  one of the tasks 17900101 which we are using for approving the form]
    We commented the message by using a Z class. Now we donu2019t get the hardcoded message, but still the workflow does not complete from here.
    Can this be aan integration issue of the workflow tasks with the portal??Can someone elaborate on this??

    <ItemType name="uwl.task.webflow.TS17900101.SAP_ECC" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="launchWebDynPro" executionMode="default">
          <ItemTypeCriteria systemId="SAP_ECC" externalType="TS17900101" connector="WebFlowConnector"/>
          <Actions>
            <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="yes" launchNewWindowFeatures="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no">
              <Properties>
                <Property name="WebDynproApplication" value="ApproveFormApp"/>
                <Property name="WebDynproDeployableObject" value="sap.com/pa~asr~formstep"/>
                <Property name="newWindowFeatures" value="resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no,directories=no"/>
                <Property name="openInNewWindow" value="yes"/>
                <Property name="display_order_priority" value="5"/>
              </Properties>
              <Descriptions default=""/>
            </Action>
          </Actions>
        </ItemType>
    You have to say to your portal team to modify their XML file as above. In simple you hvae to configure the task in the portal and in the SWFVISU txn as follows with the following vizualization parameters
    Task TS17900101 and visualization type is JavaWebDynpro
    APPLICATION     ApproveFormApp
    PACKAGE     sap.com/pa~asr~formstep

  • New changes are not getting reflected in the bam reports.

    Hi
    I have created a BPEL process and it polls the data from a table and populate an object created in Bam.I have accomplished the above task by createing two database adaptors.One is on 10g database and another one is on Bam database.I have created a view based on the bamobject and used a database adaptor to populate the data. BPEL process is populating the data properly to that bamobject but those changes are not reflecting to bam reports automaticaly. We need to refresh the report or reprompt the report to see the changes.Could some help me to reslove this issue.
    Thanks in advance
    Laj Abraham

    Hi charles
    I have tried that option too.But that is also not working. BPEL Procees is able to populate the BAM object with the help of the sensor.But those changes are not getting reflected in BAM Reports.But if i create or update an existing record in BAM object through BAM Architect, those changes are getting reflected in BAM Reports(No manual intervention is required).
    Your help in this regard is highly appreciated.
    Thanks
    Laj Abraham

  • Hi Friends... I'm trying to delete a back-up file on mu TC but I get the message "The operation could not be completed because the item "bands" is in use. I'd like to start the Back from scratch, could help me out with deleting the current file?

    Hi Friends...
    I’m trying to delete a back-up file on mu TC but I get the message “The operation could not be completed because the item “bands” is in use. I’d like to start the Back from scratch, could help me out with deleting the current file?

    Sorry, I am very confused. I asked the following question....
    Is this the only backup file on your Mac, or do you have other backup files and data on the Time Capsule disk?
    The answer that you gave was....
    This is the only one
    Now you are saying that....
    But I have lots of other files on Time Capsule! The back up file is only one of them.
    Can you clarify, please?

  • When i put a cd into my itunes library sometimes it does not get stored under the same cover. sometimes stored under 3 or 4 different icons. what can i do to prevent this. how do i get all the songs back under the same kicon in one place? help would be a

    sometimes when i put a new cd into my itunes libray all the songs do not end up under the same icon. sometimes it will go into the library under 3 or 4 different icons (album artwork) and sometimes if there are for example 12 songs on the cd each song goes under a separate icon.this seams to happen more frequently with cd's that have different artists on one disc and not just one artist performing all the songs.
    is there anyway to prevent this from happening?
    is there a way to go into my library and get them put back under one icon as it should have been? i have tried drag and drop and it will not work.
    thanks to anyone that can offer some help

    The sort fields should generally be empty unless you've putting in custom values to sort solo artists by their surnames. You can apply common changes to thousands of tracks at once, just don't apply the wrong change because there is no undo.
    It is a good idea to backup before undertaking large scale changes. See this backup tip for a suggested approach.
    tt2
    Message was edited by: turingtest2

  • A different part of a clip gets inserted in the middle of a a clip

    I am completely stumped! I subdivided a long clip into smaller clips in the timeline, and edited other clips in between. In one subclip, the video from a different section of the original longer clip keeps getting inserted into the middle of of the clip. The audio, however, remains uninterrupted. No edit points are evident. This keeps happening regardless of whether I try to replace this clip with the same section from the master clip from the browser, or if I delete the clip altogether and do an insert edit with the same footage. The same thing also happens even if I replace the effected clip with another source clip entirely--the same length and section of video appears in the middle. The "intruder" section of the clip does have an orange render line above that section while the rest of the clip is blue. If I render the sequence, the orange line is replaced by blue, but the unwanted video remains. I did confuse the slip and roll tools at one point while editing this piece, but I can't say for sure whether this is when the unwanted section appeared.
    None of the workarounds I've tried (replacing the clip or deleting it and re-editing the clip into the timeline) seem to work. Many thanks for any ideas!!

    I used an Airport Express to extend my FIOS wireless network w/o an AirPort Extreme.
    You likely configured your AirPort Express to "join" the FIOS wireless network. The Express does not provide any additional wireless coverage in this type of configuration.
    If you want to test to see if the Express is really extending, look at the label on the side of the AirPort Express and jot down the AirPort ID that you see there.
    Then, locate your Mac laptop near the Express. Hold down the option key on your Mac and click on the fan shaped AirPort icon at the top of the screen. Look for the BSSID.
    Does the BSSID match the AirPort ID of the AirPort Express?
    If no, the Express is not extending the signal. Your laptop is connecting to the FIOS router.

  • Partner details are not getting captured to the purchase order from the ven

    Hi,
    Issue : ( ECC PO)
    Partner details are not getting captured to the purchase order from the vendor master.
    We found that the partners are not getting captured in ECC PO's automatically from the vendor master. We checked for all the config and everything seems to be o.k, but could not figure it out.
    Any suggestions are highly appreciated.
    Regards
    Sudhakar

    Hey Sudhakar,
    I believe what is happening here is that the ECC PO document type has not been assigned to the partner determination procedure.
    If this is working properly for standard POs, then,
    Go to Partner detrmination under Purchasing>  Partner Settings in Purchasing Documents> Assign Partner Schemas to Document Types.
    and enter teh appropriate document type and refer it to the procedure you have for NB Pos

  • How do i solve The photo could not be opened, because the original item cannot be found

    How do i solve The photo could not be opened, because the original item cannot be found

    The issue is with iPhoto. When it opens it is looking for a photo that either no longer exists or is misplaced. I would post I the iPhoto forum where those experts are.

  • The latest Premier Pro CC 2014 update forced me to convert and create version of my project while guaranteeing that the project would not be altered; however, the timelines are not the up to date versions I had.

    The latest Premier Pro CC 2014 update forced me to convert and create version of my project while guaranteeing that the project would not be altered; however, the timelines/sequences are not the up to date versions I had. I saved different version of this project for various purposes, but they were all named differently(i.e joe and mary wedding, joe and mary wedding 2, joe and mary wedding 3, joe and mary wedding 3.1).  I do not know if they just pulled the timelines from the earliest version, eradicated the data entirely, or something else.
    Since the program prompts me to create and save a new version for the updated premier, I still have the previous projects, but cannot open them.  I imagine they are unchanged, but cannot be sure.
    Thoughts? Is it possible to uninstall an update re-install it later?
    Please advise.
    Thank you.
    Brian

    Also...
    Add to right click menu of timelines an entry for "go to next keyframe" and "go to last keyframe" a la After Effects, we should also be able to assign a kb shortcut to this.
    There are buttons on either side of the create keyframe button to advance forward or backward in the effects control panel or timeline.
    You can also advance forward or backward in the effects control window by holding shift while dragging the playhead.
    Allow copy/paste of selection of audio/video effects, not just one at a time. Sure we can copy/paste attributes but since we can also copy/paste effects it would only make sense to allow to copy/paste a selection of effects.
    I guess I don't get this one. If I have 5 effects on a clip, I can simply command-click on the ones I want to copy over to the other clip.

  • The Subsequent Requirm not getting deleted after deleting the Item from P.O

    Hi all
    The Subsequent Requirment for the Material is not getting  cancelled even after deleting the Item from the Purchase Order  and we have even deleted the Requirment for the Top level material . If we click on the Pegging requirment for the Subsequent requirment the system is telling that no Pegging Requirment exists but it is not getting deleted. Waiting for the feed backs

    Kumar,
    Run MRP for the Materials involed and let us know if there are any exception messages.
    Regards,
    Prasobh

Maybe you are looking for

  • MERGE using nested table doesn't work on Oracle 9i

    Hi, Oracle 9i Enterprise Edition Release 9.2.0.4.0 on Red hat Linux SQL> create table PERSONS (   2    ID  number(9)   3   ,SURNAME  varchar2(50)   4   ,constraint PERSONS_PK primary key (ID)   5  ); Table created. SQL> create or replace type T_NUMBE

  • Payment_method_lookup_code in supplier conversion using api

    The conversion is from 11i to R12. I am working on supplier conversion using API. The AP_VENDOR_PUB_PKG create_vendor or create_vendor_site does not have Payment_method_lookup_code to update into apps. How can i update the Payment_method_lookup_code

  • Currency EUR replaced by hash sign (#)

    Hello everybody, I have a SAPscript for vendor payment advice and one of the column is the currency of the amount (often EUR). When the form is printed, the 'EUR' is correctly displayed. but when the form is transformed into pdf to be sent per mail o

  • Can you insert a photo as a green screen background without it going in ..

    ...front of the video clip?

  • RSTXSCRP - Time out error

    Hello , I am using the RSTXSCRP program to download and upload script. I am able to download(EXPORT). But during upload(IMPORT) to another system its giving a TIME OUT error. Do we need tot create the script in the upload syatem before using the RSTX