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.

Similar Messages

  • 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???

  • Can I edit out the middle of a video clip in iMovie?

    I know how to crop the beginning or end of a video, but I would like to crop out a section in the middle. I don't want to lose the part following the cropped frames. What must I do? Thanks for any advice you can offer. Miriam

    Can I edit out the middle of a video clip in iMovie?
    Yes.
    What must I do?
    Basically you have three options:
    1) If the clip is in the "Event" window, simply select (i.e., set and adjust if necessary "in" and 'out" points) the segment you want and transfer it to your "Project" window and place it where you want it.
    2) If the clip is already in the "Project" window, simply select (i.e., set and adjust if necessary "in" and 'out" points) the segment you want to keep...
    a) and press the "Split" option in the edit menu (or the "Split Clip" option in the context menu) to divide the clip into three segments. Then select each of the segments you don't want and press the "Delete" key to remove them from the "Project" window.
    b) or, even easier, simply press the "Trim to Selection" option in the "Edit" menu.
    All of these work flows do not physically remove anything from the "Event" but merely perform a non-destructive edit of the project for the purpose of later output.

  • Transition in the middle of a video clip

    How can I insert a transition such as a cross dissolve into the middle of a video clip?

    Hi larryjo:
    You need to highlight the clip by clicking on it, then go to Edit / Split Video Clip. You will see a line where the clip has been split.
    Then drag your transition to that split line. It will work then.
    Might want to download these for some help...
    http://manuals.info.apple.com/en/iMovieAtAGlance.pdf
    http://manuals.info.apple.com/en/iMovieLesson1.pdf
    http://manuals.info.apple.com/en/iMovieLesson2.pdf
    http://manuals.info.apple.com/en/iMovieLesson3.pdf
    http://manuals.info.apple.com/en/iMovieLesson4.pdf
    http://manuals.info.apple.com/en/iMovieLesson5.pdf
    http://manuals.info.apple.com/en/iMovieLesson6.pdf
    http://manuals.info.apple.com/en/iMovieLesson7.pdf
    Sue

  • Flash movie gets stuck in the middle

    Hey,
    I have simple sliding pages mechanism in my flash file, all done with AS3 code. Now the pages, which are movieclips, are slid off the screen on a button press. Sometimes, everything goes smoothly, but on some people's computers the sliding pages get stuck in the middle, and then the next slide starts from the wrong position. This throws everything off the loop...I cannot understand why this is happening..as it only happens sometimes...I have rechecked the code millions of times...why is this happening??? Is it the code??
    The file can be checked out at http://cleatbeat.com/halftime/issue5/index.html.
    Any suggestions will be greatly welcome..am I doing something wrong in the code...??
    Cheers,
    Aditi

    Can't say anything without seeing the codes.
    I guess you have some errors at calculating the sliding effect.
    When clicked too fast sliding errors occur.
    You have to disable the click event till the the page stops at the right position  (removeListener for the button, then addListener....)

  • How do I insert a title in the middle of a a clip?

    Hi! I am new to iMovie - I have figured out how to put a title at the start of a clip but how do I insert a 'title' in the middle of a clip - I guess like a new chapter heading - I want it on a background/title graphic like the ones you select  rather then as text over the top of the video?
    Hope that makes sense .... many thanks
    Rhonda

    Hi again Rhonda,
    This article from iMovie Help will give you a bit more information on splitting clips:
    http://help.apple.com/imovie/index.html#mov3a61cda3
    You can access Help by clicking on Help in iMovie's menu, then select iMovie Help. In the window that opens, firstly click on the Get Started tab, then on the Browse Help tab when you are ready for more detailed instructions. Be sure to view the video tutorials, where available.
    John

  • Two records getting inserted with the same timestamp...

              hi all,
              I am trying to submit a form . Now whenever I click submit before I insert any
              data sent in that form I make a check (SELECT stmt. to see if that record can
              be inserted ...few business validations..) and if the check is successful I then
              proceed for the necessary insert into a table the Primary key for which is a running
              Oracle sequence.
              But if I click on the Submit button twice in close succession I have observed
              may be 1 in 1000 attempts I am able to submit two records with the same time stamp
              for the date of insertion . We are using Oracle 8 with weblogic 5.1. And I don't
              think ORACLE's date precision is beyond seconds.
              So any suggestion ..what is the best way to handle such things : one can be
              to place the same business validation check just before the ending brace of the
              method , or secondly sucmit the form thru javascript and don't submit it twice
              even if the user clicks the submit button twice... any suggestion which u can
              give .. are welcome.
              thnx in advance
              sajan
              

    Is the pkey a timestamp or an Oracle sequence? The latter will always work,
              since no two requests to a sequence can get the same value (rollover
              excluded). If you must use timestamp, then you must auto-retry the insert
              if the first attempt fails. Oracle does have higher precision than seconds,
              but I can remember the exact precision ... I am pretty sure it works out to
              at least two or three digits though.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com
              Tangosol Server: Enabling enterprise application customization
              "Sajan Parihar" <[email protected]> wrote in message
              news:[email protected]...
              >
              > hi all,
              > I am trying to submit a form . Now whenever I click submit before I
              insert any
              > data sent in that form I make a check (SELECT stmt. to see if that record
              can
              > be inserted ...few business validations..) and if the check is successful
              I then
              > proceed for the necessary insert into a table the Primary key for which is
              a running
              > Oracle sequence.
              > But if I click on the Submit button twice in close succession I have
              observed
              > may be 1 in 1000 attempts I am able to submit two records with the same
              time stamp
              > for the date of insertion . We are using Oracle 8 with weblogic 5.1. And I
              don't
              > think ORACLE's date precision is beyond seconds.
              > So any suggestion ..what is the best way to handle such things : one
              can be
              > to place the same business validation check just before the ending brace
              of the
              > method , or secondly sucmit the form thru javascript and don't submit it
              twice
              > even if the user clicks the submit button twice... any suggestion which u
              can
              > give .. are welcome.
              >
              > thnx in advance
              > sajan
              

  • Added a Song...How do I fade the song in the middle of a video clip?

    I have a 5 minute video of my daughters first birthday. I added a song, but I want to accomplish the following:
    Start the song 15 seconds into the video (after we sing happy birthday)
    Fade the Audio roughly 2 minutes into the video so that I can highlight my older daughters voice
    In between all of this I want to detach the background noise/talking from the video so only the song is heard.
    There are only a few clips of the video that I want the voices to be heard, other than that, I just want the song to be the only audio.
    Help???

    Yes, you can do this.
    1) Drag the song and drop it on the video clip at the point (15 seconds) where you want it to start. You drop it on top of the video clip - not in the background.
    2) You will want to isolate the clips where you want your daughter's voice to be heard. If they are already separate clips, this is easy. But if they are part of one long clip, you can select the frames that you want to isolate by dragging with your mouse. A yellow border should be around these frames. Then EDIT/SPLIT CLIP. Or right-click/Split Clip. (Note: It is important to do this in the Project, not in the Event)
    3) Once you have Split the clip, you can open the audio inspector and turn the volume down on those video clips where you want the clips to be muted. Turn the audio down to zero. For those clips where you want your daughter's voice to be heard, select the clip. Go to the Audio tab of the inspector, and turn on Ducking. Ducking will diminish all other tracks by the percentage you specify.
    4) [This Video Tutorial|http://www.apple.com/findouthow/movies/imovie08.html#audioclips] is a good explanation of audio in iMovie. It is for iMovie 08, but most of it still apples in iMovie 09.

  • Re: How to keep an array ordered when inserting into the middle

    I would use a for loop with two different int values used as a counter:
    int q = 0;
    int insertPosition = 3;
    for(int i = 0; i < (origArray.length + 1); i++) {
        if(insertPosition == i) {
            newArray[i] = "put on socks";
        } else {
            newArray[i] = origArray[q];
            q++;
    }Edited by: kavon89 on Jan 4, 2009 6:08 PM
    messed the code up a bit, now fixed

    Here is a screen shot of the photo when it's open in "Paint."
    Now here is a screen shot of the frame I inserted in the page where I'd like to place the photo:
    Finally, here is a screen shot of what happens when I try to paste the photo in the frame (see how tiny the photo is??):
    So what are your thoughts?

  • How to add round image inside the table column? with different background color, column value should appear in the middle of the round portion.

    Hi
    This question is related to table component implementation.
    I want to display the column values inside the small round image with different colors and value should appear in the middle.

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I edit out the middle of a video clip?

    I am used to shortening a movie clip on either end, but don't know how to cut out a portion in the middle. Please help me. Thank you.

    Hello Miriam Griggs
    There are a few ways you can do that. Check out the  page below and it will layout the multiple ways to trim clips, even the stuff in the middle.
    Trim, split, and move clips
    http://help.apple.com/imovie/mac/10.0/#movf8b8fc9b2
    Regards,
    -Norm G.

  • Excise Part-2 is not getting updated during the MIGO

    Dear Experts,
    When I am doing GR (MIGO), I am selecting the Excise posting transaction in "Excise" header tab as "Capture & Post Excise Invoice".
    But, here after posting the GR, only Part-1 is getting updated. Part-2 is not updating. Moreover, if I try to post the same vendor excise invoice in J1IEX, it is giving the error as " Part-1 not yet posted even though Part-1 is updated. Can any body suggest what is the root cause for the same?
    One more thing is, once I select "Only Capture Excise Invoice" during GR, in the normal process Part-1 is updating and I'll be able to post the Part-2 in J1IEX. There is no issue. But, I can't be able to post the Part-2 during GR.
    Note: I am receiving the goods against with the STO. And, we are paying the customs against with the STO. After paying the Customs Invoice, we are receiving the goods into our manufacturing Plant from logical plant.
    Thanks in advance for your action!!!!
    Regards,
    Satya
    Dear

    Hi Ashok,
    I went through the above note. It explains the causes that why the posting is not happening in J1IEX.
    And, as per the solution that is in that note, if we change the status of that excise invoice from 'P' to Blank in the table J_1IEXCHDR, then Vendor excise invoice will be cancelling.
    So, I guess this can't resolve my issue. Because, my issue is if I select "Only Capture Excise", the Part-1 is updating in MIGO and I am able to post the Part-2 in J1IEX. But, If I select "Capture & Post Ecxise Invoice" in MIGO, then only Part-1 is updating and even I am not able to post the Part-2 in J1IEX also as the status of the Excise Invoice is "Posted".
    And, this is happening frequently during MIGO while selecting "Capture & Post Excise". So, I guess the Function Module / BADI which updates the J_1IPART2 is not getting triggered during MIGO. Once it triggers in MIGO, then Part-2 will be posting in GR itself.
    Could you please let me know the standard FM / BADI which updates the Excise Invoice Part-2 (J_1IPART2). So that I'll check with my ABAPer whether it is triggering or not during the MIGO.
    Thanks,
    Satya

  • Iphone and Itunes each has different AppleID. How to get Itunes on the phone?

    My computer is a PC and I had an apple id, but didn't know it.  My phone gave me a new one with my new email address.  Now they don't match.  How do I put my Itunes music on my phone?
    Thanks!

    My question led me to some other good questions.  I saw I can change the id in my phone to the one in my itunes.  I would rather let go the one in my itunes and change the itunes one to the one on the phone.  How can I do that?
    Thanks!

  • Program gets stuck in the middle of a click

    When I'm using Google Chrome for browsing this happens a lot. It's when I'm clicking something, like a new tab,  a link that opens a new tab or basically anything, Chrome gets stuck, does not freeze or anything, just stuck. The mouse, keyboard and everything works. But because of that, all pages stops loading until I click the trackpad once again. Then everything is back to normal.
    It almost seems like the OSX thinks I'm "dragging" something. But I can't see that there is anything under the mouse pointer.
    The issue have been present for more then a year.
    I've also never ever had any issues with my trackpad in any sense. I think this is software related. 
    The problem occurs frequently in Google Chrome. I can't remember if it happens in any other application.
    I also can't reproduce it. Problem seem to happen randomly.
    Anyone else have the same issue?
    Suggestions on how to fix this? Or what it could be?

    Hi IamMille and welcome to Apple Support Communities,
    First update your software to at least 10.6.8.
    Then reset PRAM and SMC:
    http://www.guidingtech.com/30498/what-is-pram-smc-mac-reset/
    >It almost seems like the OSX thinks I'm "dragging" something<
    It might be that there is a cable problem w/ the trackpad or the track pad needs an adjustment.
    Worst case, replace the track pad.

  • HT1222 Trying to upadte the the first ipad with the new software. The update gets intrrupted in the middle. Any help or tips

    I am trying to update my ipad from 5.0 to 5.1 version. It gets intrupted while updating. Tried many times with no sucess

    Are you trying to update with the iPad connected to your computer or with the iPad connected via wifi?
     Cheers, Tom

Maybe you are looking for

  • Customer Reserved stock on sales order creation

    Hello experts We have a business requirement to be able to reserve an agreed quantity of a material in stock for a nominated customer, such that when that customer places an order for the material it will always be available.  The material is also pu

  • HP 6300 all in one can't set up for wireless use

    can't set up for wireless use

  • Does Photoshop Elements 13 support Nikon D7100 Raw format?

    Does Photoshop Elements 13 support Nikon D7100 Raw format?

  • Inserting Tabs with multiple graphic on same

    Hi experts I have follow DHTML function for each Tab in Tab-Header for SAP BW 3.5: <a href="http://help.sap.com/saphelp_nw04/helpdata/en/65/c54a7e1a1b584589d238ba188df053/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/65/c54a7e1a1b584589d2

  • Compiling .fmb

    Hi, I am compiling my .fmb files through forms migration assistant wizert under Developer suite , after I do finish, it gives me converter log as ERROR opening C:\HMSS\Hmsdev\Accounts\Fmb\ac_mm_bd.fmb :oracle.forms.jdapi.JdapiException: FRM-10102: Ca