Question about selection text.

when program is created and need to be transported to production does selection texts always go with it?

Hi Kishore...
The selection texts will not automatically go with the program...Suppose u have a TR for a program ..
Now wen u create selection texts using goto-> textelements-> selection texts then activate  you will be asked for A new TR. Then u can transport the same..
Reward points if the abv is useful....

Similar Messages

  • Question about selecting vector paths in Photoshop

    Hi, I have a question about selecting path points in photoshop.
    This is the setup. I have a vector shape layer (the redi circle). but that's placed inside a group with a vector mask (the black pentagon). What I want to do is select parts of the red circle using click and drag) so I can modify portions of the circle).
    This is Photoshop's behavior as I've noticed it. Photoshop likes to select the shapes for you, and will target layers on its own when you use the Path Selection Tool. It tends to want to select the top most shape. If I target the shape layer first, I can use the Direct Selection tool to select individual points. I can add selected points bu shift+clicking.This is all well and good.
    If I try to select multiple points using click+drag though, it gets a bit weird.
    If I try to click+drag to select multiple points from within the vector mask (from the black), it will fail and select the vector mask. If i try to click+drag to select multiple points from outside the vector mask (from the white), then it will allow me to select points from my vector shape like i intended.
    I could also shift click to hide the vector mask, and it will work the way i want.
    Is there an easy way to tell photoshop not to auto target vector shapes? or a better way to select paths inside vector masks?
    Thanx for any input

    canvai wrote:
    Is there an easy way to tell photoshop not to auto target vector shapes? or a better way to select paths inside vector masks?
    Sure.
    Simply click once on the vector mask for the shape layer (red circle) to highlight that vector mask in the Layers Panel. Then when you click-drag the anchors of that path will be selected, not the group's path.
    If you have no mask highlighted, Photoshop assumes it should select the first path it comes in contact with.

  • One question about Selection screen

    Hi experts,
    I am writing a report, on the selection screen, I need to input the file path and then do the file upload.
    My question is about how to check the file path I put is correct or not? If it is incorrect, I want to get a message and the cursor still in the field and don't jump to the next page.
    How can I do like that?
    Any one has any suggestion, please help me.
    Thanks in advance.
    Regards,
    Chris Gu

    Hi Chris,
        do it this way: check my code after calling gui_upload what condition i am using.
    parameters:
      p_file type rlgrap-filename.          " File name
    *           AT SELECTION-SCREEN ON VALUE-REQUEST EVENT               
    at selection-screen on value-request for p_file.
      perform get_file_name.
    *                       AT SELECTION-SCREEN EVENT                    
    at selection-screen on p_file.
      perform validate_upload_file.
    *  Form  GET_FILE_NAME                                               
    form get_file_name.
      call function 'F4_FILENAME'
       exporting
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
         field_name          = ' '
       importing
         file_name           = p_file.
    endform.                               " GET_FILE_NAME
    *  Form  VALIDATE_UPLOAD_FILE                                        
    form validate_upload_file.
      data:
        lw_file  type string.              " File Path
      lw_file = p_file.
      call function 'GUI_UPLOAD'
        exporting
          filename                    = lw_file
          filetype                    = 'ASC'
          has_field_separator         = 'X'
          dat_mode                    = 'X'
        tables
          data_tab                    = t_final_data.
      IF sy-subrc ne 0 and t_final_data is initial. " here message if file path is wrong
        Message 'File not found' type 'E'.
      ELSEIF sy-subrc eq 0 and t_final_data is initial.
        Message 'File empty' type 'E'.
      ENDIF.                              
    endform.                               " VALIDATE_UPLOAD_FILE
    With luck,
    Pritam.
    Edited by: Pritam Ghosh on May 8, 2009 8:57 AM

  • Question about selection table analysis

    Dear All,
    My last post was closed by the moderator so I would like to ask a different question. Please apologize if my question is trivial.
    1. There is a selection table seltab with one fields of type I, with the following contents:
    I     GT     3     0
    I     NE     8     0
    The literature eg. ABAP Objects says that the control statement like IF or CASE can be used with logical expression IN.
    Now I am checking if the variable test fulfills the conditions defined by the selection table.
    DO 10 TIMES.
      IF test IN seltab.
        write test.
      ENDIF
      test = test + 1.
    ENDDO.
    As a result I get a full list of values.
    1 2 3 4 5 6 7 8 9 10
    2. Now, if the table contains
    I     GT     3     0
    I get
    4 5 6 7 8 10 as expected
    3. If the table seltab contains
    I     NE     3     0
    the result also seems to be ok
    1 2 4 5 6 7 8 9 10
    The final question is. Is it true that the logical expression IN cannot be used with IF for more complex data comparisions?
    Thanks,
    Grzegorz

    Well,  the contents
    I GT 3 0
    I NE 8 0
    I read as:
    the variable fulfills the condition if is greater than 3 and not equal 8
    test > 3 and
    test <> 8
    which should give the result from the example above a list
    4 5 6 7 9 10
    What is wrong with my analysis?
    Regards,
    Grzegorz

  • Help, question about "select ... for update nowait"

    There is a proc code. In the beginning of the code, I used a SQL "select ... for update nowait" in order to prevent from another proc executing at the same time. When the case happens, "-54, ORA-00054: resource busy and acquire with NOWAIT specified" will be printed in the screen.
    But there is a question: I need to print sth to indicate "another proc is running". I used "if (sqlca.sqlcode == -54)" as precondition, such as:
    if (sqlca.sqlcode == -54) {
    printf("There is another proc running.\n");
    However, this line will not be printed. I doubt that the code quits directly when using "select ... for update nowait" so as not to set value (-54) to sqlca.sqlcode.
    So, could you suggest whether there is another way that I can use to print "There is another proc running" when another proc is running?
    Thx a lot for your kindly reply.

    Yes, that link. Scroll down a bit and you will see:
    The calling application gets a PL/SQL exception, which it can process using the error-reporting functions SQLCODE and SQLERRM in an OTHERS handler. Also, it can use the pragma EXCEPTION_INIT to map specific error numbers returned by raise_application_error to exceptions of its own, as the following Pro*C example shows:
    EXEC SQL EXECUTE
    /* Execute embedded PL/SQL block using host
    variables v_emp_id and v_amount, which were
    assigned values in the host environment. */
    DECLARE
    null_salary EXCEPTION;
    /* Map error number returned by raise_application_error
    to user-defined exception. */
    PRAGMA EXCEPTION_INIT(null_salary, -20101);
    BEGIN
    raise_salary(:v_emp_id, :v_amount);
    EXCEPTION
    WHEN null_salary THEN
    INSERT INTO emp_audit VALUES (:v_emp_id, ...);
    END;
    END-EXEC;
    This technique allows the calling application to handle error conditions in specific exception handlers.

  • Question about selecting only one tree at a time...Please help

    Hi , guys
    does anybody know how to make only one tree selected in an application which shows three trees simultaniously.
    Untill now I can select both trees at a time (the third one is not implemented yet ) This is probably so because the trees are showed in different panels I have no idea....Please give me some hints or ideas.
    I thank you in advance.

    write a TreeSelectionListener which knows all Trees in your application. add the listener to all three Trees. within the valueChanged method, check the events source to evaluate the tree, which fired the event. close all selections of all trees ( method clearSelection() ) except the one, which fired the event.
    regards,
    stefan

  • Question about editing text for Acrobat 9 pro...

    I recently switched to Vista and Acrobat 9 pro and everytime I go to edit my PDF I use the "text touch-up" tool just like I should yet the tool just shifts and distorts the text without actually replacing or deleting any of the text.  Has anyone encountered/know how to fix this problem?  Thank You.

    Such problems are not new with AA9. Editing has always been hit and miss. It may be that if you tried to edit one of the files you used to work on, things would work fine and it is simply the particular file at hand. I will not deny that there may be changes to the methods in AA9 that make things worse, but it never was great.

  • Question about colored text in non-applet/application programs

    I'm a high school student and a beginner in programming in Java. Right now I am working on a game of Checkers program and I was wondering if there was anyway to set colors to certain text strings in System.out.print/println statements.
    Here is a screen shot of what the beginning of the game looks like:
    if that doesnt work here is a hard link:
    http://img289.imageshack.us/my.php?image=checkers9jy.jpg

    I'm a high school student and a beginner in
    programming in Java. [snip]you can play around with ANSI escape sequences or use a Java curses implementation
    http://www.javaworld.com/javaworld/javaqa/2002-12/02-qa-1220-console.html
    Good Luck
    Lee

  • Question about select query.

    Hi,
    i want to insert the result of query to a table,
    all the fields are corresponding except one field.
    is there a way to this or i need to do
    insert ( f1 , f2 ....)
    i did this way
    INTO CORRESPONDING FIELDS OF TABLE It_Return_Date
    but i have another field which i want to insert to table.
    is it possible??
    10X

    lets say you are getting values from a table
    select & into X_TAB1 from TAB1.
    data : x_tab2 type table2.
    x_tab2-newfield = 'new value'. "Populate that new field value
    move corresponding X_TAB1 TO X_TAB2. "all other will copy here
    then use X_TAB2 to insert to your TABLE2.
    INSERT TABLE2 FROM X_TAB2.
    it would be a good practice to use same structure of the table while you use Insert/modify etc.. commands.
    else you can declare TABLES ZTABLE2.
    MOVE CORRESPONDING ZTABLE1 TO ZTABLE2.
    ZTABLE2-NEW_FIELD = <NEW VALUE>.
    then use INSERT.
    INSERT ZTABLE2.
    Regards
    srikanth
    Message was edited by: Srikanth Kidambi

  • Basic Question about Outlining Text

    I have PS CS5
    I am trying to get a crisp outline to my text. I am using the Outer Glow and tweaking the settings but the exterior edge of my outline "layer" is way to soft and more like a faint feather technique.
    How do I get a very hard and crisp outer edge / outline to my text? Can you point me to a simple tutorial on this?
    Thanks

    Four other things that make a difference:
    1. The font (some fonts are not smooth and the stroke will not be smooth or crisp)
    2. Using an inside stroke usually gets a sharper stroke.
    3. In the tool options bar check that aa (ANTI-ALIAS) is set to someting other than none.
    4. View the text at 100% view (actual pixels) view %'s like 31.3 and so on can make
        the text or images appear pixelated.
    MTSTUNER

  • Question about  selection Jtable?

    Hi,
    as might select data from a JTable pressing the enter key or double click, get the selected data and send it to a JTextField?
    thanks!

    and as I send this information to be selected by pressing the enter key or by double-clicking on a JTextField that is in another JFrame!
    thanks!

  • Question about layering text over an image

    Hi -- I am trying to place a layer of text over a ghosted image that I've imported into ID from Photoshop.  By "ghosted" I mean that the image has a layer of white fill over it that has been set at 50% opacity.  ID won't let text be layered on top of the imported image, no matter how many different ways I've tried to accomplish this.  It will allow another image to be layered on top, but not text.  If I place a text frame over the ghosted image and type even one letter, the red text overset warning icon appears.
    I tried applying the text in Photoshop and that works just fine until the file gets imported into ID, at which point the text looks terrible, having become somehow degraded in transit.  I am fairly new to ID and PS, and would appreciate any helpful input. 
    Thanks!
    ~Artemis

    Sounds like text wrap is applied to either the image or the frame above it, or both. Eihter turn it off if you don't need it for other reasons, or for the frame you want to use on top of it open the Text Frame Options and check the Ignore Text Wrap box in the lower left corner.

  • A question about select where date =

    I want to select data from a table which has a date column and has the time format like "2009-11-30 00:00:00.0".
    I try using the sql-script as follow but failed.
    select * from mytable
    where begin_date = to_date ('2009-11-30', 'yyyy.mm.dd ');
    Someone knows the format?

    Hi,
    user10501597 wrote:
    I want to select data from a table which has a date column and has the time format like "2009-11-30 00:00:00.0". All DATE columns have the same format; only strings have a format like that. A lot of people say they have a DATE column when they actually have a VARCHAR2 that is supposed to store a date. Post a CREATE TABLE statement to remove any doubt.
    I try using the sql-script as follow but failed.
    select * from mytable
    where begin_date = to_date ('2009-11-30', 'yyyy.mm.dd ');That looks okay. The extra space after dd shouldn't matter.
    What you wrote is equivalent to:
    select  *
    from    mytable
    where   begin_date = to_date ('2009-11-30 00:00:00', 'yyyy.mm.dd hh24:mi:ss');Are you sure you have rows with that value?
    Whenever you have a problem, post some sample data (CREATE TABLE and INSERT statements) so people can re-create the problem.

  • Question about selecting parts of Automation...lowering volume as whole

    Here is what I'm trying to do. i have a piano part that i automated pretty good. Now, I realize in relation to the mix the automation is a bit too loud. How do i highlight the part of the automation, select it as a whole, and then drag the entire automation down 2-3db? I tried clicking on the marquee tool, and that highlights the part, now I can't figure out how to apply the volume reduction to it all, keeping the relative relationship in tact, simply lowering the volume altogther!! Thanks guys.
    -Mike

    try holding cmd and click on the area you want to adjust the automation setting,it will select it all and you will be able to move it as a whole
    hope this is the right key as i'm not in front of logic and a mac at the mo....

  • Quick question about scrolling text....

    Doing quick credits (scrolling). Trying to figure out how to get the (last line of the) text to stop in the middle of the screen, so I can then do a fade....
    I'm sure it's easy, and will keep plugging away here, but if anyone can quickly fire off a note, I'd be grateful...thanks!
    (tried to create a Freeze Frame on this, but it appears it does not recognize Scrolling Text as a clip it can extract from - eg. the freeze frame is just blank.)
    (also can't seem to do a ramp up/down or a Time Remap, etc.)

    I've found the easiest way to do this is to create the text in Photoshop. Start a new PS document ... say 720 x 3000 and create or paste your text. If the document is too long, you can crop off the unneeded part when you're finished with the text.
    Import the PS file into FCP and use the Centering controls to animate it as needed. Use the smooth or Ease In/Ease Out command on the ending keyframe so the stop isn't too abrupt.
    -DH

Maybe you are looking for