Restriction in Rows Selection not working

Hello,
I  have a requrement where i need to restrict the material based on the date
output is
Sno Material                                       date           quantity
1      Material > 90 days                  5/7/2012        20
        material within 90 days          12/31/2011      5
                                                        1/2/2012        10
like this
Material > 90 days is material exist 90 days from current system date Ex. for Feb 7,2012 ./ the range is may 7 ,2012
material within 90 days is material  +  or - 90 days.. ex, for Feb 7,2012 .. the range is Dec 7,2011 to May 7,2012
I created a new selection in Rows for material and restricted based on 0DAT variable with offset.
its not working.
Request you to help on this
Thanks
Bala

Hi, Malkit.
   I am not quite clear with this "Earlier it was working fine but some how it stopped although custom OVS is working fine when i remove the restricted filed, all the values come properly".
Can you please explain what happened more clearly?
Have you tried executing your QueryByElements with projectID in PDI?
Regards,
Fred

Similar Messages

  • Row selection not working in SQL view?

    Hope this something silly --
    I have an ADF view defined something like this -- breaks selected orders into pricing buckets.
    select floor((billingAmount / mileAge) / .05) as bucket,
    floor((billingAmount / mileAge) / .05)* .05 as bucketMin,
    ceiling((billingAmount / mileAge) / .05)* .05 as bucketMax,
    count(*) as orders
    from ordersMaster
    where originZoneNumber = ? and destinationZoneNumber = ? and DSRDate >= ?
    group by floor((billingAmount / mileAge) / .05),
    floor((billingAmount / mileAge) / .05)* .05,
    ceiling((billingAmount / mileAge) / .05)* .05
    After setting the bind variables, this gives me a fine read-only table with selection columns.
    The first couple rows of the table looks something like
    Select Bucket bucketMin bucketMax orders
    60 3.00 3.05 1
    61 3.05 3.10 4
    62 3.10 3.15 7
    On the Select button, I have this code snippet:
    DCIteratorBinding ib = ADFUtils.findIterator("RevenueRangeViewIterator");
    Row row = ib.getCurrentRow();
    System.out.println("Selected range starts at " + row.getAttribute("bucketMin"));
    System.out.println("Selected range has " + row.getAttribute("orders"));
    Regardless of what row I have selected, I get data for the first row.
    When I do the same code against a table created from entities, it works fine.
    What am I missing?
    Thanks in advance
    Ed Schechter

    Hope this something silly --
    I have an ADF view defined something like this -- breaks selected orders into pricing buckets.
    select floor((billingAmount / mileAge) / .05) as bucket,
    floor((billingAmount / mileAge) / .05)* .05 as bucketMin,
    ceiling((billingAmount / mileAge) / .05)* .05 as bucketMax,
    count(*) as orders
    from ordersMaster
    where originZoneNumber = ? and destinationZoneNumber = ? and DSRDate >= ?
    group by floor((billingAmount / mileAge) / .05),
    floor((billingAmount / mileAge) / .05)* .05,
    ceiling((billingAmount / mileAge) / .05)* .05
    After setting the bind variables, this gives me a fine read-only table with selection columns.
    The first couple rows of the table looks something like
    Select Bucket bucketMin bucketMax orders
    60 3.00 3.05 1
    61 3.05 3.10 4
    62 3.10 3.15 7
    On the Select button, I have this code snippet:
    DCIteratorBinding ib = ADFUtils.findIterator("RevenueRangeViewIterator");
    Row row = ib.getCurrentRow();
    System.out.println("Selected range starts at " + row.getAttribute("bucketMin"));
    System.out.println("Selected range has " + row.getAttribute("orders"));
    Regardless of what row I have selected, I get data for the first row.
    When I do the same code against a table created from entities, it works fine.
    What am I missing?
    Thanks in advance
    Ed Schechter

  • Table row selection not working

    Hi,
    I have a context node for a table of value nodes - APTDATES2 (  superclass CL_BSP_WD_CONTEXT_NODE_TV ),  bound to a custom controller context node,
    which I am displaying via the following on the .htm  page :
      <chtmlb:configTable
                           xml                   = "<%= lv_xml %>"
                           id="appt2"
                           headerText = "Available Appointments"
                           navigationMode="BYPAGE"
                           table="//APTDATES2/Table"
                           visibleRowCount = "12"
                           allRowsEditable = "TRUE"
                           downloadToExcel = "FALSE"
                           personalizable = "FALSE"
                           onRowSelection        = "select"
                           selectionMode   = "<%= APTDATES2->selection_mode %>"
                           selectedRowIndex      = "<%= APTDATES2->selected_index %>"
                           selectedRowIndexTable = "<%= APTDATES2->selection_tab %>"
                           showNoMatchText = "TRUE"
                           width="100%"
                           visibleFirstRow       = "<%= APTDATES2->visible_first_row_index %>"
                           HEIGHT = "10"/>
    My problem is that I cannot click in the left-hand column to select a row on the table - it is not  triggering any events (not even triggering a round-trip  - confirmed this by putting a break-point in the view implementation DO_HANDLE_DATA ).   Have similarly checked that APTDATES2->SELECTION_MODE
    contains SINGLESELECT.
    What am I missing ?

    I am able to fix it using a managed variable for the selectionState. Here is the code:
    <af:table emptyText="No items were found"
    value="#{backing_UpdateResult.resultList}"
    var="row"
    rows="10"
    binding="#{backing_UpdateResult.resultsTable}"
    selectionState="="#{backing_UpdateResult.tableSelectionState}"
    id="resultsTable"
    >
    In the backing bean I have a property variable like:
    private RowKeySet tableSelectionState;
    public RowKeySet getTableSelectionState() {
    if (tableSelectionState == null) {
    tableSelectionState = new RowKeySet();
    tableSelectionState.getKeySet().add("0");
    return tableSelectionState;
    }

  • JTable - row selection not working + change the text format

    Hi All,
    I have written a code to display Jtable with 2 columns, 1 column to display image+text and other is multiline.
    I have used 2 different cell renderer for achiveing the same.
    Please advice on the following:
    @ When I click on row, only one column gets selected. How to fix this?
    @ Data to be displayed in rows is fetched from database. And on some STATUS value row should be in bold text or plain text. I have achieved this but withou logic to iterate over it.
    @ When user right clicks on the row allow them to set text in the row as bold or plain.(Just like we do with mails in outlook box)
    Below is the code:
    Hi All,
    I have written a code to display Jtable with 2 columns, 1 column to display image+text and other is multiline.
    I have used 2 different cell renderer for achiveing the same.
    Please advice on the following:
    @ When I click on row, only one column gets selected. How to fix this?
    @ Data to be displayed in rows is fetched from database. And on some STATUS value row should be in bold text or plain text. I have achieved this but withou logic to iterate over it.
    @ When user right clicks on the row allow them to set text in the row as bold or plain.(Just like we do with mails in outlook box)
    Below is the code:package jtab;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.util.Vector;
    import javax.swing.ImageIcon;
    import javax.swing.JEditorPane;
    import javax.swing.JFrame;
    import javax.swing.JMenuItem;
    import javax.swing.JOptionPane;
    import javax.swing.JPopupMenu;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellRenderer;
    import jtab.TestIcon.iconRenderer;
    public class SampleJtable {
         JFrame frame;
         JTable table;
         JScrollPane panel;
         JPopupMenu popupMenu ;
         public static void main(String[] args) {
              SampleJtable sample = new SampleJtable();
              sample.loadGUI();
         public void loadGUI(){
              frame = new JFrame("Sample Program for Font and ImageIcons");
              frame.setContentPane(panel);
              frame.setSize(550,250);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setVisible(true);
         public SampleJtable(){
              BufferedImage images[] = new BufferedImage[1];
              try{
                   images[0] = javax.imageio.ImageIO.read(new File("C:/go.gif"));
              }catch(Exception e){
                   e.printStackTrace();
              final Object data [][] = {{"Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe \n P",new ImageStore(images[0],"Bourquin Rene")},
                        {"Auftrag \n test \n \n 1957,Grenchen Kaufe \n N",new ImageStore(images[0],"Bourquin Rene")}};
              String colIds [] ={"Beschrebung","Von"};
              DefaultTableModel model = new DefaultTableModel(data, colIds) {  
    public Class getColumnClass(int column) {  
    return data[0][column].getClass();
              /*Vector<Object> rowData1 = new Vector(2);
              rowData1.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
              rowData1.add(new ImageStore(images[0],"Bourquin Rene"));
              Vector<Object> rowData2 = new Vector(2);
              rowData2.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
              rowData2.add(new ImageStore(images[0],"Bourquin Rene"));
              Vector<Vector> rowData = new Vector<Vector>();
         rowData.addElement(rowData1);
         rowData.addElement(rowData2);
              Vector<String> columnNames = new Vector<String>();
         columnNames.addElement("Beschrebung");
         columnNames.addElement("Von");     
              DefaultTableModel model = new DefaultTableModel(rowData, columnNames) {  
              table = new JTable(model);
              table.setDefaultRenderer(ImageStore.class, new ImageRenderer());          
              table.getTableHeader().getColumnModel().getColumn(0).setCellRenderer(new LineCellRenderer());
              table.setRowHeight(84);
              panel = new JScrollPane(table);
              panel.setOpaque(true);
         class ImageRenderer extends DefaultTableCellRenderer {  
         public Component getTableCellRendererComponent(JTable table,
         Object value,
         boolean isSelected,
         boolean hasFocus,
         int row, int column) {  
         super.getTableCellRendererComponent(table, value, isSelected,
         hasFocus, row, column);
         ImageStore store = (ImageStore)value;
         setIcon(store.getIcon());
         setText(store.text);
         return this;
         class ImageStore {  
         ImageIcon icons;
         String text;
         int showingIndex;
         public ImageStore(BufferedImage image1,String s) {
         icons = new ImageIcon(image1);
         showingIndex = 0;
         text = s;
         public ImageIcon getIcon() {  
         return icons;
         public void toggleIndex() {  
         showingIndex = (showingIndex == 0) ? 1 : 0;
         class LineCellRenderer extends JEditorPane implements TableCellRenderer {
              public LineCellRenderer() {           
              setOpaque(true);
              setContentType("text/html");          
              public Component getTableCellRendererComponent(JTable table, Object value,
              boolean isSelected, boolean hasFocus, int row, int column) {
              //System.out.println("Whats in value = "+ value.toString());
              String [] strArray = value.toString().split("\n");
              String rtStr = null ;
              System.out.println("TYPE+ "+ strArray[strArray.length-1].toString());
              String val = strArray[strArray.length-1].toString().trim();
              if (val.equalsIgnoreCase("N")){
                   System.out.println("TYPE+ IS NEW");
                   rtStr = "<html><head></head><body><b><div style=\"color:#FF0000;font-weight:bold;\">" + strArray[0] + "</div>" +
                             " <div style=\"color:#0000FF;font-weight:bold;\">" + strArray[1] + "</div>" +
                             "<div style=\"color:#0000FF;font-weight:bold;\">" + strArray[2] + "</div>" +
                             "<div style=\"color:#0000FF;font-weight:bold;\">" + strArray[3] + "</div>" +
                             "</b></body></html>";
              else {
                   System.out.println("TYPE+ IS PENDING");
                   rtStr = "<html><head></head><body><div style=\"color:#FF0000;\">" + strArray[0] + "</div>" +
                   " <div style=\"color:#0000FF;\">" + strArray[1] + "</div>" +
                   "<div style=\"color:#0000FF;\">" + strArray[2] + "</div>" +
                   "<div style=\"color:#0000FF;\">" + strArray[3] + "</div>" +
                   "</body></html>";
              setText(rtStr);
              return this;

    Posting code again........
    package jtab;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.util.Vector;
    import javax.swing.ImageIcon;
    import javax.swing.JEditorPane;
    import javax.swing.JFrame;
    import javax.swing.JMenuItem;
    import javax.swing.JOptionPane;
    import javax.swing.JPopupMenu;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellRenderer;
    import jtab.TestIcon.iconRenderer;
    public class SampleJtable {
    JFrame frame;
    JTable table;
    JScrollPane panel;
    JPopupMenu popupMenu ;
    public static void main(String[] args) {
    SampleJtable sample = new SampleJtable();
    sample.loadGUI();
    public void loadGUI(){
    frame = new JFrame("Sample Program for Font and ImageIcons");
    frame.setContentPane(panel);
    frame.setSize(550,250);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    public SampleJtable(){
    BufferedImage images[] = new BufferedImage[1];
    try{
    images[0] = javax.imageio.ImageIO.read(new File("C:/go.gif"));
    }catch(Exception e){
    e.printStackTrace();
    final Object data [][] = {{"Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe \n P",new ImageStore(images[0],"Bourquin Rene")},
    {"Auftrag \n test \n \n 1957,Grenchen Kaufe \n N",new ImageStore(images[0],"Bourquin Rene")}};
    String colIds [] ={"Beschrebung","Von"};
    DefaultTableModel model = new DefaultTableModel(data, colIds) {
    public Class getColumnClass(int column) {
    return data[0][column].getClass();
    /Vector<Object> rowData1 = new Vector(2);
    rowData1.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
    rowData1.add(new ImageStore(images[0],"Bourquin Rene"));
    Vector<Object> rowData2 = new Vector(2);
    rowData2.add("Auftrag \n test \n 777,Abdherhalden Josef, \n 1957,Grenchen Kaufe");
    rowData2.add(new ImageStore(images[0],"Bourquin Rene"));
    Vector<Vector> rowData = new Vector<Vector>();
    rowData.addElement(rowData1);
    rowData.addElement(rowData2);
    Vector<String> columnNames = new Vector<String>();
    columnNames.addElement("Beschrebung");
    columnNames.addElement("Von");
    DefaultTableModel model = new DefaultTableModel(rowData, columnNames) {
    table = new JTable(model);
    table.setDefaultRenderer(ImageStore.class, new ImageRenderer());
    table.getTableHeader().getColumnModel().getColumn(0).setCellRenderer(new LineCellRenderer());
    table.setRowHeight(84);
    panel = new JScrollPane(table);
    panel.setOpaque(true);
    class ImageRenderer extends DefaultTableCellRenderer {
    public Component getTableCellRendererComponent(JTable table,
    Object value,
    boolean isSelected,
    boolean hasFocus,
    int row, int column) {
    super.getTableCellRendererComponent(table, value, isSelected,
    hasFocus, row, column);
    ImageStore store = (ImageStore)value;
    setIcon(store.getIcon());
    setText(store.text);
    return this;
    class ImageStore {
    ImageIcon icons;
    String text;
    int showingIndex;
    public ImageStore(BufferedImage image1,String s) {
    icons = new ImageIcon(image1);
    showingIndex = 0;
    text = s;
    public ImageIcon getIcon() {
    return icons;
    public void toggleIndex() {
    showingIndex = (showingIndex == 0) ? 1 : 0;
    class LineCellRenderer extends JEditorPane implements TableCellRenderer {
    public LineCellRenderer() {
    setOpaque(true);
    setContentType("text/html");
    public Component getTableCellRendererComponent(JTable table, Object value,
    boolean isSelected, boolean hasFocus, int row, int column) {
    //System.out.println("Whats in value = " value.toString());
    String [] strArray = value.toString().split("\n");
    String rtStr = null ;
    System.out.println("TYPE " strArray[strArray.length-1].toString());
    String val = strArray[strArray.length-1].toString().trim();
    if (val.equalsIgnoreCase("N")){
    System.out.println("TYPE IS NEW");
    rtStr = "<html><head></head><body><b><div style=\"color:#FF0000;font-weight:bold;\">" strArray[0] "</div>"
    " <div style=\"color:#0000FF;font-weight:bold;\">" strArray[1] "</div>"
    "<div style=\"color:#0000FF;font-weight:bold;\">" strArray[2] "</div>"
    "<div style=\"color:#0000FF;font-weight:bold;\">" strArray[3] "</div>"
    "</b></body></html>";
    else {
    System.out.println("TYPE+ IS PENDING");
    rtStr = "<html><head></head><body><div style=\"color:#FF0000;\">" strArray[0] "</div>"
    " <div style=\"color:#0000FF;\">" strArray[1] "</div>"
    "<div style=\"color:#0000FF;\">" strArray[2] "</div>"
    "<div style=\"color:#0000FF;\">" strArray[3] "</div>"
    "</body></html>";
    setText(rtStr);
    return this;
    }

  • HT5594 After updating to iOS7 on my iPhone4 I cannot enable location services. How do I enable location services? I have tried turning off restrictions but that did not work.

    After updating to iOS7 on my iPhone 4 I cannot enable location services. How do I enable location services? I have tried turning off restrictions but that did not work.

    I finally just resolved this after not being able to enable location services since upagrading to iOS 7. Posting the solution here 'cause I couldn't find it anywhere else.
    I enabled Restrictions under Settings > General > Restrictions and created a passcode (I'm not sure if this was part of the solution, but it wasn't enabled for me by default.)
    In Restrictions, under Privacy, Location Services was set to "Allow Changes" (This still didn't solve the issue of the greyed-out Location Services switch though - I still couldn't turn it on.)
    Also in Restrictions, I also switched "Find My Friends" to "Allow Changes"
    Once I did step 3, the switch under Settings > Privacy > Location Services was no longer greyed out and could be switched on.
    Hope this helps!

  • Photoshop CC. Colour selection not working when using alt and brush.

    Hi, Photoshop CC. Windows 8.1 64 bit. Colour selection not working when using alt and brush. I have tried rebooting and other things like closing swatch panel etc.
    The alt key is otherwise OK.  It's not the recent upgrade from Win 8 to 8.1 (5 days ago) because the colour selection facility was working yesterday. Any ideas.

    I'd say things sound desperate enough to try resetting Preferences
    Reset Preferences
    Windows — Hold down Shift Ctrl Alt immediately after starting Photoshop
    Mac — Hold down Shift Cmd Opt immediately after starting Photoshop
    If that fails, we need to know your operating system?
    Do you have a full CC subscription, or by apps do you mean Photoshop, Bridge and Lightroom?
    Another other information that might pertain ?

  • The front row is not working. Remote control not triger,

    Front row is not working, Remote control no response, command-esc not triger as well.
    check keyboard shortcut from system preference, there is no front row.
    anyone know why?

    Ok first try it in another Account.
    1. Open the account system pref window (System Preferences > Accounts)
    2. Click the plus button at the bottom
    3. Specify an account name (ex: test)
    4. Add account
    5. Logout of your current account, and login to the newly created one
    If it works, then something was wrong with your account, move your files to the new account, and delete the old one.
    If it did not work:
    1. Try the reinstall again (DO NOT DO "ARCHIVE AND REINSTALL", as this may keep some file that is hindering FR from operating correctly
    2. Make sure the FR file is in the Core Services Folder (Macintosh HD/System/Library/CoreServices/Front Row.app)
    3. Make sure that you do not have the IR sensor turned off on your computer (System Prefs > Security > Uncheck "Disable Remote Control IR Sensor")
    4. Make sure that your remote is paired (http://docs.info.apple.com/article.html?artnum=302545)
    5. Make sure that the Command + Esc key is setup to respond by opening front row:
    (1) Open system prefs
    (2) Open keyboard & mouse prefs
    (3) Click keyboard shortcuts
    (4) Scroll down until you see front row
    (5) Assign the Command + Esc key if it is not mapped
    6. Finally, if all else fails, call AppleCare while your computer is still under warranty
    Hope this helps,
    Cory

  • Cell(Row) Selection not display in OOPS ALV

    Hi all,
    I am not able to get the cell(row) selection in the oops ALV when i called it second time.
    I am displaying some information using oops alv  in 100 screen. After user action on 100 screen i am calling 200 screen with different information which is also display in oops alv. When i displaying information in second time the cell(row) selection is not getting displayed.
    For both ALV the fieldcatelog is different.
    Initially i tried using same container but i face same problem, so i am trying to call second alv in new screen.
    But problem remain same.
    Can anyone help me to solve this problem ?
    Regards
    Nilesh

    hi,
    can u send ur report  so dat i can look furhter to it.and help u out

  • Auto Select not working in Photoshop CS6--Why?

    I'm experiencing the auto-select in Photoshop CS6 not working when it is checked and I click on different layers. It worked fine in 5.5, but I am now using PS CS6 cloud and it works only sporadically. Any reason why?
    Thanks in advance!
    -Jane

    Moving this discussion to photoshop Forum discussion.

  • Add Row Button Not Working

    I've read the threads and done numerous searches.  Not sure why the add row button isn't working, other buttons work.
    Here's what I've found and done.
    Print button subform - positioned (have tried flowed, too) allow page breaks
    Table: body rows vary   -    Insert wrap in subform  - subform flowed - allow page breaks
         row 1 binding - repeat row for each data item - min 1, max 25 (why won't it  keep an initial count when I try putting in 1 or 0?)
    Form properties - preview in dynamic PDF, interactive   -   PDF render format dynamic xml, run in 9.0 or later (to remove errors)
    Insert Row Button in Subform Row 1 Cell 1 (not counting header row) on  click, JavaScript run at client tried table.row1.instancemanager.addinstance(1);   also tried full path
    saved as dynamic pdf
    My hierarchy looks like:
    form1   [autofit]
         master pages
              page 1
                   untitled content area
         printbuttonSubForm  [flowed, top to bottom, allow page breaks]
              untitled subform [flowed, top to bottom, allow page breaks]
                   printbutton1
              tablesf    [flowed, top to bottom, allow page breaks]
                   table1    [allow page breaks]
                        headerRow
                             cell1
                             cell2 etc
                        Row1   [allow page breaks, repeat row for each data item, min 1, max 25 (why won't it  keep an initial count when I try putting in 1 or 0?)]
                             subform   [allow page breaks, repeat row for each data item, min 1, max 25
                                            (why won't it  keep an initial count when I try putting in 1 or 0?)]
                                  button1    table1.row1.subform1.instanceManager.addinstance(1);
                             cell2, etc
         Referenced objects
    Questions:
    I click the Add Row button, but nothing happens, why?  The print button works.
    Found a reference to def instances of same row, what does that mean?
    Is my hierarchy correct?
    How to set Form1 to flow? Object says mixed objects with no options
    Many thanks for your assistance! Leslie

    Hi Leslie,
    There could be a few things.
    First check that the form is saved as Dynamic XML in the save as dialog. If it is saved as Static the add instance will not work.
    Make sure that the object you are targetting is set to repeat in the Object > Binding tab
    Check your syntax in the script editor (button above the editor). Some of your post is not camel case. For example addInstance and instanceManager. Note the capital letter for the second word.
    If you could share your form it would be easier to track down what the problem is. You can use Acrobat.com or YouSendIt.com or some other file sharing site. Just remember to post the published URL.
    Good luck,
    Niall

  • Option-drag selection not working in CS6 layer panel

    Thought I'd force myself to use CS6 on a new project. I want to select multiple objects using "Option-drag", in the Layer Panel, but it doesn't work as it does in CS5.
    Is there a different shortcut for selecting multiple contiguous objects using the Layer Panel, in CS6? Of course, I mean "Select" not "highlight".
    Thanks.

    Ok so it has been omitted in CS 6 and I think the reason is is because of the change to the Layers panel function.
    That is because you can now rename and object directky with the Layers Panel rather than use the Layer Options.
    Whether this wa intentional or by accident I do not know but that is why I think it has been changed.
    I would make a feature request to either return it to Option Drag or Or Option Click to select a contigous selection of objects.
    I notice that many people use names for their paths on even modest ai files so I would think being able to name the objects and layers are a really important feature but so is the feature you referring to though I think Click-Option Click would be even better on rellly large complex Illustrations.

  • Field selection not working in Calculate tab

    Hi, I'm trying to use a simple "Sum" calculation and it is suddenly not working.  I can't select individual fields.  "Select All" will put a check mark in every field.  Trying to pick the four fields I need does not.  I used this feature successfully in the past but cannot understand why it won't work now.  Please help!  Thanks in advance.

    Use the space-bar or click a bit off to the center of the check-box to toggle it. It's a known bug of Acrobat (I answered this same question like 3 times in the last two days alone...).

  • Code at Infoset SQ02 - Start of Selection - not working

    I have a code at SQ02 infoset START-OF-SELECTION:
    select bukrs
      into table i_bukrs
      from t001
      where bukrs in ('SP$00007').
    if sy-subrc = 0.
    endif.
    where SP$00007 is a select-option at the query selection screen.
    This coding is not working. It is always returning sy-subrc 4. How do I acces a select option form the query start of selection?
    Where I am doing wrong? I have got the 'SP$00007' from the generated code of query.
    If I try like this it gives me a syntax error:
    where bukrs in SP$00007.
    Any idea what I am doing wrong?

    The Solution:
    DATA cond_syntax TYPE string.
    CONCATENATE 'BUKRS' 'IN SP$00007'
                INTO cond_syntax SEPARATED BY space.
    SELECT bukrs
      INTO TABLE i_bukrs
      FROM t001
      WHERE (cond_syntax).
    IF sy-subrc = 0.
      LOOP AT i_bukrs INTO wa_bukrs.
        AUTHORITY-CHECK OBJECT 'J_B_BUKRS'
                 ID 'BUKRS' FIELD wa_bukrs-bukrs.
        IF sy-subrc <> 0.
          MESSAGE s000(z_zzz_ca_messages)
          WITH
          'You do not have authorization to view Company Code '
           wa_bukrs-bukrs
           ' data.'.
          LEAVE LIST-PROCESSING.
        ENDIF.
      ENDLOOP.
    ENDIF.
    If there is a better way please let me know?

  • At line selection not working

    HI,
    at line selection is not working in my program after i used set pf-status. please help.
    regards,
    ravi.

    Hi Ravi,                                                       
    double click on ur set pf status 'xxx'.
    this will give u a user interface screen.
    open the function keys button.
    u '' find standard tool bar ,,
    Recommended function key settings     
    freely assigned function keys.
    in recommended function key settings just type this for f2
    Recommended function key settings    
    F2              PICK         Choose                                                                               
    see that u have the values like this for F2.       
    save , activate ,
    do this ..
    regards,
    Vijay.
    Message was edited by: Vijay

  • Auto select not working ?

    I've been struggling to understand copy and paste in version 5 and I am either not understanding it correctly, or it's not working as it is supposed to. If I auto select track 2 only, then copy and paste a clip from track 1, it will still paste to track 1. Am I doing something wrong?

    Turning autoselect off and then on a second time worked. It's nice to finally be able to do this, but is this supposed to be a sensible or intuitive way to copy and paste? I much preferred FCP3's way. Thanks for the help.

Maybe you are looking for

  • Connectivity issues because of many users on at the same time.

    I notice this has been getting worse and worse, and last night my wife almost didn't get on in time to finish a college assignment.My wife noticed that there were about 7 or 8 people online at the same time. It seems anytime there are 5 or more we ca

  • Creating GUI + EventQueue.invokeAndWait problem

    Hi, Currently I am creating GUI to my application ,thanks to NetBeans Graphic Editor ,I created simple grame with one buton.Now i am trying to add action to this button listener.Generally i want to make that if this button is pressed,new frame with g

  • UWL iView disappears!

    Hi all, I have a delta copy of the SAP UWL iView which I have included in my own page, which is itself in my own workset, which is itself in my own role. Now when users are opening this page just after logging in the portal it works fine, but if they

  • How to maintain an errors in Outbound Interface

    Hi, I m Doing One Interface (Outbound From SAP) to Application Server? whenever the File(TXT) in Created in Legacy Application Server with Succeesfull Record i have to Send an Email Notification to my Payroll  Adminisatrtor Of the legacy System. Can

  • Check E-mail using PL/SQL

    Hi! Can I check e-mail address to use PL/SQL?