Making selection of a qualification in /MRSS/PPPT mandatory (MRS 8.0)

Hello All,
I have a question about the t-code /MRSS/PPPT that we use to add a qualification into the profile of an employee.
Assume that the qualification is structured as shown below. MRS 1 is a high level categorization, MRS 1.1, MRS 1.2 etc is the first level breakdown and MRS 1.2.1, MRS 1.2.2 etc is second level breakdown for qualification MRS 1.2.
MRS 1
--MRS 1.1
--MRS 1.2
MRS 1.2.1
MRS 1.2.2
MRS 2
--MRS 2.1
MRS 2.1.1
MRS 2.1.2
--MRS 2.2
--MRS2.3
When selecting the qualification in /MRSS/PPPT, the SAP system will allow me to select the qualification level MRS 1, select a proficiency level and then save the employee profile. In this case the qualification MRS 1 is added to my profile. Also, if I select a lower level qualification (say MRS 2.1.2) and save, my profile gets saved with that qualification as well.
My question is: Is it possible to prevent selection of higher level qualifications? In other words, can I make the selection of a lower level qualification (MRS 1.2, MRS 1.2.1, MRS 1.2.2 etc) mandatory? In the example above, I intend to not allow anyone to select MRS 1 or MRS 2 and add it to the employee profile. I wish to make it mandatory for any user to select a lower lever qualification (MRS 1.1, MRS 1.2.1, MRS 2.1.2 etc).
Has anyone done this? Is this possible at all in the standard MRS system..? Please let me know.
Regards
Jensibo

Hi,
  This can be done in two ways:
1.
At  selection-screen output.
loop at screen.
IF rd1 EQ 'X'.
   if screen-name = 's_erdat-low' or screen-name = 'P_AEDAT'.
   screen-required = 1.
  modify screen.
  endif.
endif.
endloop.
the above code would make the lower value in select-option s_erdat and parameter p_aedat mandatory.
2.
at selection-screen.
if rd1 eq 'X'.
if s_erdat is initial.
  message 'PLease enter date'.
endif.
endif.
The above will fire an error when you hit execute and the rd1 is choosen and date is not entered
Himanshu

Similar Messages

  • Making selective fields editable in adobe form [using web dynpro]

    Hi,
    I have displayed an adobe form using web dynpro application. But I have to make certain fields (not all fields) on this adobe form editable. I dont want to make this adobe form interactive because I dont have to save any data in database. The data entered in the editable fields will be saved as a pdf.
    What I did so far:
    1) The fields which I want as editable,  I have given there type as "User entered/ optional" & for rest of the fields I have given type as "Read only".
    2) In web dynpro, I have enabled the adobe
    3) This is not making the fields editable.
    4) If I write the following code in my webdynpro method WDDOMODIFYVIEW, then my data coming from adobe is not getting displayed even though the fields get selectively editable.
    *data: LR_INTERACTIVE_FORM type ref to CL_WD_INTERACTIVE_FORM,
    *LR_METHOD_HANDLER type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.
    *check first_time = abap_true.
    *LR_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT('adobe').
    *LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM->_METHOD_HANDLER.
    *LR_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( abap_true ).
    Any inputs regarding this??
    Thanks & Regards.

    Hi,
    Like I had mentioned using the following code in my webdynpro method WDDOMODIFYVIEW, my data coming from adobe form was not getting displayed even though the fields get selectively editable.
    *data: LR_INTERACTIVE_FORM type ref to CL_WD_INTERACTIVE_FORM,
    *LR_METHOD_HANDLER type ref to IF_WD_IACTIVE_FORM_METHOD_HNDL.
    *check first_time = abap_true.
    *LR_INTERACTIVE_FORM ?= VIEW->GET_ELEMENT('adobe').
    *LR_METHOD_HANDLER ?= LR_INTERACTIVE_FORM->_METHOD_HANDLER.
    *LR_METHOD_HANDLER->SET_LEGACY_EDITING_ENABLED( abap_true ).
    So I kept this code & I also kept the Interface type "ABAP Dictionary based".
    Additionally in Webdynpro, I used adobe form generated FM to get the adobe content & passed it to the "content" parameter of my adobe component in webdynpro.
    Thanks & Regards.

  • How to get dimensions information to appear next to the mouse cursor when drawing/ making selections

    Hello,
    On a previous computer I used Illustrator for, when I would draw or make selections, next to the cursor in a small black box with white text, there would be the dimenstions information. It was similar to what you'd find in the Window>Info panel but simplified and would let you know how big the selection you're making is. I've looked all over the Preferences and can't find it. I can't tell if I was imagining it somehow or what, but I'm hoping someone knows what I'm talking about and knows where to find it. Thanks.

    Use smart guides: Cmd/Ctrl + U

  • Hiding and then making select-options visible on the selection-screen

    I've created a selection screen. On this i've got a field (pr_inpt) depending on whose value i have to display the rest select-options viz. (so_c1, so_n1, so_d1, so_t1) say ,
    1.)if (pr_inpt) contains value 'A' then display (so_c1 & so_d1)
    2.)if (pr_inpt) contains value 'B' then display (so_n1, so_d1 & so_t1)
    To achieve it, in the initialization event, i looped at the screen and for all (so_c1, so_n1, so_d1, so_t1) i made screen-active = '0'. Due to this my objective to hide fields in the beginning is achieved.
    Next when user is entering value into (pr_inpt), i am making screen-active = '1' at selection-screen output event, for those relevant select-options (say if A, then made active for so_c1 & so_d1) but my problem is that it is making all select-options (so_c1, so_n1, so_d1, so_t1) visible on the screen which i don't want.
    How can i achieve this, also is it possible to change the label of the select-options while displaying.
    Plz help.

    hi just copy and paste following code into ur abap editor and see weather this logic helps u ????
    REPORT Z_HRA1.
    tables: pa0000, pa0001.
    parameters: p_chk1 as checkbox user-command rusr,
    p_chk2 as checkbox user-command rusr,
    p_chk3 as checkbox user-command rusr,
    p_chk4 as checkbox user-command rusr,
    p_chk5 as checkbox user-command rusr.
    selection-screen: begin of block blk1 with frame.
    select-options: s_pernr for pa0000-pernr modif id ABC no-extension no intervals,
    s_stat2 for pa0000-stat2 modif id DEF,
    s_werks for pa0001-werks modif id GHI,
    s_persg for pa0001-persg modif id JKL,
    s_persk for pa0001-persk modif id MNO.
    selection-screen: end of block blk1.
    AT SELECTION-SCREEN output.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'ABC'.
    IF p_chk1 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'DEF'.
    IF p_chk2 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'GHI'.
    IF p_chk3 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'JKL'.
    IF p_chk4 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'MNO'.
    IF p_chk5 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    Regards
    Gagan

  • Making selected copy transfer its characteristics into an already made style

    Hi,
    I often have a task of artworking a file from designers into a proper artwork file, where I use a master template with built in stylesheets or styles, as they are called in ID. I always wanted an option to select, say, a heading from a text box and tell it to transfer its characteristics to an already made style on my list.
    Example: I copy text boxes from the original design file with all the text broken from their original style (break link to style), effectively making it "No style", into my template and I click in a paragraph and  I want to call it Heading 1, which I already have in my template.
    The essence of this need is I use GREP styles in my template, but I don't want the tedious task of manually selecting the font, size, colour and any other characteristic of the selected text into my styles. I want to do two things in one go.
    Any help greatly appreciated.

    You're still not entirely clear, Are you saying you want to redfine the style to use the font specs from the unstyled text while retaining other attributes, like GREP and Nested Styles?
    If that's the case, redfine the styles first to use the parameters you want, then use Find/Change to find the text that has the parameters you want to assign that style to.

  • Can I stop the cursor from automatically making selections?

    If I'm not quick enough to park my cursor in a "safe" place, it automatically selects whatever it lands on, sometimes so quickly the screen doesn't even finish filling before Safari leaps somewhere else, and then somewhere else again, and then ... I feel like I'm stuck in an out-of-control transporter! How can I force Safari to stay on the page I selected until I TELL it to go somewhere else? This random, manic leaping about is driving me nuts!

    You can maintain the cursor (and the graph scales...) between defined boundaries programmatically, using an attribute node. Not a very elegant solution, since there is some quivering. See the example.vi.
    Of course, if the user need to modify the scales (zoom in/out...), there will be some additional work ! :-)
    Hope this help.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Bound_cursor.vi ‏51 KB

  • Making  selected rows to display mode in ALV  grid

    I Have program with ALV grid display, which has check box as the first field.
    The requirement is like.
    When i select some rows in the grid display with the check box and click on a button , then the selected
    rows shud change to display mode and others rows shud be in edit mode as before.
    *& Report  ZSRI_CHCKBOX_ITAB_UPDATE
    REPORT  ZSRI_CHCKBOX_ITAB_UPDATE.
    TYPE-POOLS: SLIS.
    DATA: BEGIN OF ITAB OCCURS 0,
            CHK    TYPE C,
            VBELN  TYPE VBAP-VBELN,
            POSNR  TYPE VBAP-POSNR,
            MATNR  TYPE VBAP-MATNR,
            MATWA  TYPE VBAP-MATWA,
            MATKL  TYPE VBAP-MATKL,
          END OF ITAB.
    DATA: T_FCAT TYPE SLIS_T_FIELDCAT_ALV,
          W_FCAT TYPE SLIS_FIELDCAT_ALV,
          RT TYPE SLIS_SELFIELD,
          W_LAYOUT TYPE SLIS_LAYOUT_ALV  .
    PARAMETERS: S_VBELN TYPE VBAK-VBELN.
    DATA: WA LIKE LINE OF ITAB.
    DATA: G_GRID_REFERENCE TYPE REF TO CL_GUI_ALV_GRID.
    DATA: BEGIN OF ITAB1 OCCURS 0,
            CHK    TYPE C,
            VBELN  TYPE VBAP-VBELN,
            POSNR  TYPE VBAP-POSNR,
            MATNR  TYPE VBAP-MATNR,
            MATWA  TYPE VBAP-MATWA,
            MATKL  TYPE VBAP-MATKL,
          END OF ITAB1.
    DATA: T_FCAT1 TYPE SLIS_T_FIELDCAT_ALV.
    DATA: W_FCAT1 TYPE SLIS_FIELDCAT_ALV.
    START-OF-SELECTION.
      SELECT VBELN POSNR MATNR MATWA MATKL FROM VBAP
        INTO CORRESPONDING FIELDS OF TABLE ITAB WHERE   VBELN EQ S_VBELN.
      W_FCAT-COL_POS = 1.
      W_FCAT-FIELDNAME = 'CHK'.
      W_FCAT-TABNAME = 'ITAB'.
      W_FCAT-CHECKBOX = 'X'.
      W_FCAT-EDIT = 'X'.
      W_FCAT-SELTEXT_L  = 'CHECK'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-COL_POS = 2.
      W_FCAT-FIELDNAME = 'VBELN'.
      W_FCAT-TABNAME = 'ITAB'.
      W_FCAT-SELTEXT_L  = 'SALES'.
      W_FCAT-EDIT = 'X'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-COL_POS = 3.
      W_FCAT-FIELDNAME = 'POSNR'.
      W_FCAT-TABNAME = 'ITAB'.
      W_FCAT-SELTEXT_L  = 'ITEM'.
      W_FCAT-EDIT = 'X'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-COL_POS = 4.
      W_FCAT-FIELDNAME = 'MATNR'.
      W_FCAT-TABNAME = 'ITAB'.
      W_FCAT-SELTEXT_L  = 'MATERIAL'.
      W_FCAT-EDIT = 'X'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-COL_POS = 5.
      W_FCAT-FIELDNAME = 'MATWA'.
      W_FCAT-TABNAME = 'ITAB'.
      W_FCAT-SELTEXT_L  = 'MATERIAL QTY'.
      W_FCAT-OUTPUTLEN = 20.
      W_FCAT-EDIT = 'X'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      W_FCAT-COL_POS = 6.
      W_FCAT-FIELDNAME = 'MATKL'.
      W_FCAT-TABNAME = 'ITAB'.
      W_FCAT-SELTEXT_L  = 'MATERIAL GROUP'.
      W_FCAT-OUTPUTLEN = 20.
      W_FCAT-EDIT = 'X'.
      APPEND W_FCAT TO T_FCAT.
      CLEAR W_FCAT.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         I_CALLBACK_PROGRAM                = SY-REPID
         I_CALLBACK_PF_STATUS_SET          = 'STATUS1'
         I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
         IS_LAYOUT                         = W_LAYOUT
         IT_FIELDCAT                       = T_FCAT[]
        TABLES
          T_OUTTAB                          = ITAB[].
    *&      Form  STATUS1
    FORM STATUS1 USING P_EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'STATUS1' EXCLUDING P_EXTAB.
    ENDFORM.                    "PF_STATUS_SET
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM TYPE SY-UCOMM
                            R_SELFIELD TYPE SLIS_SELFIELD.
      CASE R_UCOMM.
        WHEN 'READ'.
    R_SELFIELD-REFRESH = 'X'.
          CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
            IMPORTING
              E_GRID = G_GRID_REFERENCE.
          CALL METHOD G_GRID_REFERENCE->CHECK_CHANGED_DATA.
          LOOP AT ITAB INTO WA WHERE CHK = 'X'.
            APPEND WA TO ITAB1.
          ENDLOOP.
          W_FCAT1-COL_POS = 1.
          W_FCAT1-FIELDNAME = 'CHK'.
          W_FCAT1-TABNAME = 'ITAB'.
          W_FCAT1-CHECKBOX = 'X'.
          W_FCAT1-SELTEXT_L  = 'CHECK'.
          APPEND W_FCAT1 TO T_FCAT1.
          CLEAR W_FCAT1.
          W_FCAT1-COL_POS = 2.
          W_FCAT1-FIELDNAME = 'VBELN'.
          W_FCAT1-TABNAME = 'ITAB'.
          W_FCAT1-SELTEXT_L  = 'SALES'.
          APPEND W_FCAT1 TO T_FCAT1.
          CLEAR W_FCAT1.
          W_FCAT1-COL_POS = 3.
          W_FCAT1-FIELDNAME = 'POSNR'.
          W_FCAT1-TABNAME = 'ITAB'.
          W_FCAT1-SELTEXT_L  = 'ITEM'.
          APPEND W_FCAT1 TO T_FCAT1.
          CLEAR W_FCAT1.
          W_FCAT1-COL_POS = 4.
          W_FCAT1-FIELDNAME = 'MATNR'.
          W_FCAT1-TABNAME = 'ITAB'.
          W_FCAT1-SELTEXT_L  = 'MATERIAL'.
          W_FCAT-OUTPUTLEN = 20.
          APPEND W_FCAT1 TO T_FCAT1.
          CLEAR W_FCAT1.
          W_FCAT1-COL_POS = 5.
          W_FCAT1-FIELDNAME = 'MATWA'.
          W_FCAT1-TABNAME = 'ITAB'.
          W_FCAT1-SELTEXT_L  = 'MATERIAL TYPE'.
          W_FCAT-OUTPUTLEN = 20.
          APPEND W_FCAT1 TO T_FCAT1.
          CLEAR W_FCAT1.
          W_FCAT1-COL_POS = 6.
          W_FCAT1-FIELDNAME = 'MATKL'.
          W_FCAT1-TABNAME = 'ITAB'.
          W_FCAT1-SELTEXT_L  = 'MATERIAL GROUP'.
          W_FCAT-OUTPUTLEN = 20.
          APPEND W_FCAT1 TO T_FCAT1.
          CLEAR W_FCAT1.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              I_CALLBACK_PROGRAM = SY-REPID
              IT_FIELDCAT        = T_FCAT1[]
              IS_LAYOUT          = W_LAYOUT
            TABLES
              T_OUTTAB           = ITAB[].
    CLEAR ITAB1.
    CLEAR ITAB1[].
    CLEAR T_FCAT1.
    CLEAR T_FCAT1[].
      ENDCASE.
    ENDFORM.                    "USER_COMMAND
    Edited by: dharmaji Srinivasu on Feb 6, 2009 1:22 PM

    Hi
    Check out the following links:
    http://www.sapdev.co.uk/reporting/alv/alvgrid_rowsel.htm  " To obtain selected rows
    http://www.sapdev.co.uk/reporting/alv/alvgrid_editable.htm  "To make cells editable
    In the case stmt for particular button you can do:
    loop at itab into wa.
          if wa-sel EQ 'X'.
          Process records that have been selected
          endif.
    endloop.
    Hope this helps
    Regards,
    Jayanthi.K

  • White still showing in PDF but not in Photoshop after making selection

    Hi,
    The first attachment is a selection I've made of a makeup brush that was originally on a white background.The second attachment is a screenshot of how that brush is showing up after I place the selected brush in an Illustrator file and export to PDF.
    As you can see, even though you can't see any extra white around the brush in my selection, its showing up with it in the final PDF. I put the black background behind the selection in the first attachment to simulate the background from the PDF. It is the same exact color, which verifies that there is no extra white in the original selection which can be seen.
    How can I get rid of that extra white showing up?
    Thanks!

    Have you tried zooming in on the pdf and seeing if the white outline is still there? I've found a lot of the time with my pdf's that the viewer itself is just not rendering the image correctly.
    Like this crappy white edge
    But then when I zoom in it vanishes

  • Making selection field mandatory in invoice overview

    Hi All,
    I am trying to make selection field  (Ship from Location ) mandatory in invoice overview through customizing mode.
    however system is showing mandatorysymbol against field but not throwing any error message when user execute the invoice overview screen without ship from location.
    kindly suggest / help
    Best Regards
    Gaurav

    Hi,
    You can do it simple:
    AT SELECTION-SCREEN ON s_matnr.
    IF s_matnr IS INITIAL.
        MESSAGE e055(00).
    Make an entry in all required fields
    ENDIF.
    (s_matnr: is a field on the selection screen)
    Good luck.
    Gilad Hubara.

  • Making selection-screen fields output only

    Hi all and thanks for the quick replies to my last question!
    Here comes another one: Does anyone know how to display a parameter field in a selection screen as output only?
    Thanks
    Magnus

    hi Magnus,
       Check event AT SELECTION-SCREEN OUTPUT.
    <b>PARAMETERS: P_MNTH RADIOBUTTON GROUP H1 USER-COMMAND ABC DEFAULT 'X'</b>
                                                             MODIF ID ABC.
    <b>AT SELECTION-SCREEN OUTPUT.
      IF P_DETA = 'X' OR P_STRT = 'X'.
        LOOP AT SCREEN.
          IF SCREEN-GROUP1 = 'ABC'.
            SCREEN-INPUT = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.</b>
    Regards,
    santosh
    Message was edited by: Santosh Kumar P

  • Making selection filed in infopackage mandatory

    Hi all
    I have a requrement to make selection fields in an infopackage mandatory.
    Is there any way we can acheive this!!!
    Thanks in advance
    jP

    Hi JP,
    In case your datasource is R/3 then write a small ABAP program and update the values in the ROOSFIELD table.
    The ABAP program code is as follows:
    tables ROOSFIELD.
    Update ROOSFIELD set SELECTION = 'M' where
    OLTPSOURCE = '<your datasource name>' and
    FIELD = '<field on which mandatory selection is needed>'.
    Bye
    Dinesh

  • Path Layer Deselecting after Making Selection

    Hello,
         As I use this tool for multiple fast renderings, I love to use the Path Selection tool to modify the selection as such in quick succession. However, it seems as though after my slection is made, usign the path, the path layer disappears, needing reselection in the Path Window to do so. Here's what happens:
    Step 1
    I my paths, in which I want to first select this box, and then combine them at differing feather overlays. So naturally, I select the center most item, and...
    Step 2
    Up comes the dialog box as normal. I set the feather, hit enter and...
    Step 3
    Where did my other paths go?!?!
    Step 3 (Previous to CC, at least in CS5)
    Here I had the option to grab another path with my tool, overlap a feather at a different amount. Why does this happen?
    Is there a way to revert the tool back to the CS5 way of Selecting? Please let me know, thanks.

    I believe your paths are still there, if i look at the path's palette.
    When you deselect the path in the path's palette, no path will be visible in the stage. Try adding fill color and see.
    Step 01 and 02, your path was still selected in the path's palette but in step 03 it wasn't. Once you made the selection click on the path in the path's palette and see if it is visible or not.
    Check my tutorial on 'How to hide the path when adding layer style'. If the path is not selected in the path's palette, then it looks like it is not there.
    http://www.beekeepersblog.com/2012/12/ps-05-how-to-hide-path-when-adding.html

  • Making Selection Enabled for fields

    Hi,
    I have a infopackage which contains some fields in the data selection tab. My question is: How to make any other field to make Selection Enabled in Infopackage?
    What are the steps need s to be carried out in R/3 and in BI system?
    Thanks In Advance,
    Suman Chakravarthy

    Hi,
    You need to transport the Datasource from R/3 dev-Qat-prd only.
    In BI you can just replicate the datasource and the changes will be reflected.
    If any obkects become inactive in BI sysytem because of  Datasource replication then you need to collect the BI objects also.
    PLease give a try in Dev and QAt system first and then see how it works.
    Just select the fileds in Rsa6 which you need to enable in Infopackage selection screen and then replicate the same datasource in BI ,After that those fields will be available in Infopacakge selection screen.
    Once done with that then transport the datasource from R/3 dev to qat and replicate the same in BI qat and follow the same steps for PRD also.
    Hope it gives you clear idea.
    Regards,
    AL

  • Making Select Option Obligatory

    Hi all,
    I am taking one field as input in select option now i want to make this obligatory..
    For example:
    Select-options:Budat for bkpf-budat obligatory.
    but by this only budat-low is getting obligatory ..
    What to do to make budat-high also obligatory?
    Is it possible?
    Thanks in advance...

    Loop at screen and make screen-input = 1.
    *& Event AT SELECTION-SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        CASE screen-name.
          WHEN 'S_AUART-LOW' OR 'S_AUART-HIGH'.
            screen-input = 1.
            MODIFY SCREEN.
          WHEN 'S_PSTYV-LOW' OR 'S_PSTYV-HIGH'.
            screen-input = 0.
            MODIFY SCREEN.
        ENDCASE.
      ENDLOOP.
    Regards,
    Fred Morsell

  • Making selections in a video in imovie 10

    I updated to Maverick and imovie 10 but can't seem to figure out how to make certain edits to my video. I want to select difference parts of my movie and delete them but I can't seem to find any way to do this in imovie10.
    It also seems as if they got rid of a lot of the share options.
    I can't seem to do anything that I use to do in version 9.Is there any manual that might help me or did Apple do away with a lot of the features from imovie 9?

    Tigervision wrote:
    The old imovie 9 use to put a green checkmark by the pictures one used in a video... the new imovie 10 does not.  Drives me crazy.  Is there a way to turn this on??  thanks.
    I've also noticed this. It is a bit annoying when you are placing many pictures in the timeline (say for a slideshow). It becomes difficult to remember which ones have been placed. Certainly, there is no marker or indication on the photos in the iPhoto Library within the iMovie Library. However, if you click back on the Event you will see all photos listed that have been included in your project. Also, right-clicking on a photo in the timeline will reveal a drop down menu. If you select Reveal in Event Browser you will see the photo listed in the Event.
    Of course, this is not as handy as having the photo marked as in iMovie '11 (version 9.0.9). I've not found a way of enabling this feature in iMovie 10.
    if you are using iMovie to prepare a slideshow, a good method is to firstly create an Album in iPhoto then place all the required photos in the preferred order within that Album. Now drag the Album into the iMovie project timeline.
    John

Maybe you are looking for

  • Creation of bapi

    I need to create a BAPI for a classical report YUFA.(Forecast Accuracy) The problem is the report is a quarterly one and every time it shows different columns according to the periods ie 1 month has 4 periods,so  for 7th month starting it shows 25th

  • ITunes match has deleted a playlist and all my itunes library are showing errors on my mac, it wont update

    I have logged into iTunes on my Mac and found that one of my playlists has been wiped and that every single of my 12000 songs has an error saying that it cant be loaded in itunes match when they are all there.

  • Using the word "iPhone" and the Apple Logo

    Hello Forum, If creating marketing collateral as a leave behind for potential clients to an industry specific iPhone App, would it be OK to use the words "iPhone" & "Apple" in addition to an image of the iPhone and the Apple Logo on printed materials

  • Oracle OLE DB and command Parameters in VB6

    Hi, here's my problem : When i a VB6 command object ( ado ) this works fine with Oracle client 8i/9i, but with 10g it seems to truncate all my string parameters Here is my vb code : Public Function PRC_APPLICATIONSCENARIO _ ByRef p_vConnection As Var

  • PL statement(Ecc6.0)

    Hi Friends, We are on bpc75nw sp04. I want to build profit & loss statement in Evdre report, is it possible if all GL balances(from ECC6.0) are avilable in BPC cube. I know in BW via BEx Queries with some customization(virtual cube, function module),