Modeling Like, And, Or Restrictions

Is it possible to restrict in BEx Query Designer something like the following:
mms_unit_cd Not Like "PIB*" AND
equipment_nbr Not Like "A;*" AND
issued_dt <= 12/31/2008 AND
WO_ENVIR_SAFETY_CD = u201CSu201D OR u201CBu201D AND
WO_STATUS_CD <>"CL" And <>"CO" And <>"MC" AND
LOCATION_CD = u201CAu201D
OR
mms_unit_cd Not Like "PIB*" AND
equipment_nbr Not Like "A;*" AND
(completed_dt >=1/1/2008 And <= 12/31/2008) AND
WO_ENVIR_SAFETY_CD = u201CSu201D OR u201CBu201D AND
WO_STATUS_CD "CL" Or "CO" Or "MC" AND
LOCATION_CD = u201CAu201D
OR
mms_unit_cd Not Like "PIB*" AND
equipment_nbr Not Like "A;*" AND
(issued_dt >=1/1/2008 And <= 12/31/2008) AND
WO_ENVIR_SAFETY_CD = u201CSu201D OR u201CBu201D AND
WO_STATUS_CD = u201C*u201D AND
LOCATION_CD = u201CAu201D
Or would it be necessary to set up flags on the back end for the Like and Or Conditions, and then restrict based on that in designer?

Hi,
Take a look at the help site.
http://help.sap.com/saphelp_nw04/helpdata/en/23/17f13a2f160f28e10000000a114084/content.htm
Regards.

Similar Messages

  • Hi ... I would like to ask you about the difference between Iphone 5 model A1428 and A1429, as one of my friend told me some of resellers they have A1428 and others have A1429. Now is that true or not, if your answer Yes what it is the difference?

    Hi ... Please I would like to ask you about the difference between Iphone 5 model A1428 and A1429, as one of my friend told me some of resellers they have A1428 and others have A1429. Now is that true or not, if your answer Yes what it is the difference?

    The difference is clearly stated on the technical specifications page for the iPhone, something you are just as capable of looking at as anyone else here.

  • Hello, Im new to this website. Im having issues with my Macbook. I have the old 2009 model Macbook and it is our schools macbook. The school just upgraded these MacBooks to OSX Mavericks and when i try to open Minecraft it won't let me. It says no jd

    Hello, Im new to this website. Im having issues with my Macbook. I have the old 2009 model Macbook and it is our schools macbook. The school just upgraded these MacBooks to OSX Mavericks and when i try to open Minecraft it won't let me. It says no jdk installed. I also try to install Java SE runtime but half way through the Software Update it says cant download software because of network problem but I'm connected to the internet and i can browse stuff just fine. Can any one help with my problems. P.S. I don't know the administrator password or stuff like that. And yes we are allowed to play games and stuff on these laptops but only at home not at school so don't tell me i need to focus on school and not games. 

    Since you updated the operating system, it is probably Minecraft is missing certain files that ware remove or are not longer comparable with the new version of the OSX. what I recommend, is to check is there is an update for Minecraft and install that. If there is not update available, probably the best thing will be reinstalling Minecraft. Hope this will help you.   

  • Why itunes recognize my iphone 4s model like a iphone 4?

    Why itunes recognize my iphone 4s model like a iphone 4?

    I'm having this same problem. Did you ever find a solution Robyn?
    I tried all the recommendations with AMDS and uninstalling itunes and then reinstalling it. Is there a way to install an older version of itunes that works?
    What was I thinking in upgrading an Apple product? There is always some issue.

  • "Document Security" and "Document Restrictions Summary" different

    Why is there a mismatch of permissions between 'Document Security' and Document Restrictions Summary'?
    I have a pdf file generated with the following security options enabled -- Printing, Commenting (Annotations), fill-in, Content Modification, Assembly. Even though these options show up as enabled in 'Document Security' section of Security tab in Properties (File->Properties->Security->Document Security), they are different to the ones in 'Document Restriction Summary'.
    This results in the inability to use highlighting/commenting tools of Adobe Acrobat Reader (ver. 7 and 8).
    The pdf file is generated using Open Office 3.0 Writer from a file in a .doc (word) format. I have also tried using tools like 'pdftk' with same results.
    According to my interpretation, the 'Document Restrictions Summary' should be in tandem with the 'Document Security'. Am I missing something obvious here? Could anyone kindly clarify how to enable the commenting feature and use it within Acrobat Reader (the free tool)?
    Needless to say this will be environment friendly option, which Adobe has been a strong advocate of.
    Rahul Iyer

    Yes, thats right. I used Open Office 3 to generate the pdf. I have also tried using pdftk and Adobe Distiller 5 with the same result.
    Your statement implies, the 'Adobe Reader' features cannot be fully utilized without a valid Adobe Acrobat Pro.
    This is a document to which I have the source. I have been able to create the pdf with the required set of permissions based on standards. But I am being hassled because I didn't generate it with Adobe Pro! Well, I suppose this must have been a business decision, but its one thats standards contrary and morally low!
    Adobe just lost an avid Reader user. I shall circulate my findings within my work and social circles. Thanks to competition and open source, I am sure to find a standards compliant reader without much delay.
    Thanks for your help - graffiti
    Rahul Iyer

  • Flah Player Screen Position and Size Restrictions

    Hi All,
    I'm creating an interactive program which is to be used on
    Windows desktops through flash player rather than as a projector or
    html page. My problem is screen positioning and
    resize-restrictions.
    I want to be able to restrict the user from resizing the
    flash player; the stage size is currently set to 800x600 and I want
    to keep it that way on the desktop as I'm using photographs which
    when the player is resized is leaving blank bars down the sides
    (due to the photographs being 800x600).
    I'd also like to be able to position the flash player in the
    top-left hand corner of the screen.
    I'm not great at flash and have tried numerous things but
    can't get these to work, can anybody help?
    Regards,

    Hi
    This is possible, if you make your Flash file into a
    Projector file and
    bring it into Jugglor
    http://www.jugglor.com
    Download a FREE evaluation copy and look at
    Jugglor -> Setting Settings -> Windows Settings
    Here you have the restrictions as you require.
    Hope this helps.
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • How describe model data and  get select in DB throw topLink.

    Hello,
    I have table from code
    create table t_tree
    id int primary key,
    parent_id int,
    value varchar2(255)
    Alter table t_tree
    add constraint constr_id_parent foreign key (parent_id) references t_tree (id)
    I must get query
    select level as lv,lpad('-@-', (level-1)*2)||value as MMM, t.* from t_tree t
    connect by prior id=parent_id
    start with T.PARENT_ID is null
    How describe model data and get select in DB throw topLink.
    Dema.

    So you'll probably have to write a function which uses dynamic SQL to retrieve the desired message text, like this untested one:
    CREATE OR REPLACE FUNCTION get_msg(p_db IN VARCHAR2,
                                       p_id IN NUMBER)
       RETURN VARCHAR2
    IS
       msg_txt  VARCHAR2(4000);
    BEGIN
       -- make sure p_db is a valid database link ...
       EXECUTE IMMEDIATE 'SELECT d_msg FROM msg@' || p_db || ' WHERE t_id = :id' INTO msg_txt USING p_id;
       RETURN msg_txt;
    EXCEPTION
       WHEN NO_DATA_FOUND THEN
          RETURN NULL;
    END get_msg;
    /The you can update likeUPDATE mex
       SET t_msg = get_msg(db_id, t_id);Hth, Urs

  • BPM in SAP NetWeaver: do you really like and use it?

    Dear friends,
    BPM (Business Process Management) is the metodology for reorganization and
    optimization of business processes.
    And BPMS (Business Process Management System) is software for BPM.
    BPMS must support full life cycle of business process: design, modelling,
    execution and monitoring.
    As I understand ccBPM is intended only for automated processes.
    Do you really use integration processes ccBPM?
    How often do you apply ccBPM for business processes?
    Please describe real examples of ccBPM applying.
    Do you apply the standard content - integration processes in IR and patterns or do you implement your own integration processes?
    How do you implement the business processes required human task and automated
    system task, that is combination of workflow and ccBPM?
    Thanks for your response in advance,
    Natalia.

    > Do you really use integration processes ccBPM?
    Depends on the requirment..but most of the time we have to avoind to use BPM in interface as much as possible because of performence issue.
    > How often do you apply ccBPM for business processes?
      Completely based on the requirement..like Multimapping, throwing alerts based on receiver response etc.
    > Please describe real examples of ccBPM applying.
    Systems A send the messge to Systems B and A get the response. Now if the response is ok then I will send the same message to System  C else I will tell admin Error occured. This is just the only one case..ther can be many.
    > Do you apply the standard content - integration
    > processes in IR and patterns or do you implement your
    > own integration processes?
    You can look on the patters in the IR SAP BASIS software component
    > How do you implement the business processes required
    > human task and automated
    > system task, that is combination of workflow and
    > ccBPM?
    Refer these link for more clarification and examples
    http://help.sap.com/saphelp_nw04/helpdata/en/3c/831620a4f1044dba38b370f77835cc/frameset.htm
    http://www.sap.com/platform/netweaver/pdf/BWP_NetWeaver_BPM.pdf
    Thanks
    Farooq.
    <b>
    *Rewards Points if you find it useful*</b>

  • TS1702 I HAVE IPOD TOUCH MODEL A1421 AND IT WILL NOT RESTORE AND IS STUCK IN RESTORE MODE. DOES NOT RESTORE WHEN ATTEMPTING THROUGH ITUNES. PLEASE HELP!

    I HAVE IPOD TOUCH MODEL A1421 AND IT WILL NOT RESTORE AND IS STUCK IN RESTORE MODE. DOES NOT RESTORE WHEN ATTEMPTING THROUGH ITUNES. PLEASE HELP!

    If iTunes sees the iPod, try a manual install, as pointed out on link below.
    Troubleshooting 101
    Some topics covered
    -Basic troubleshooting steps
    -Hard reset instructions
    -Manual restore instructions
    -Hardware troubleshooting
    -Preventive Maintenance
    -Anti-theft & recovery tips
    -Battery-saving tips
    -Repair options
    -Contacting Apple
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • "filter" in Planning and 'characteristic restriction" in the query??

    Hi all,
    Can someone clear my confusion regarding 'filter' in the planning modeler and 'char restriction' in the planning query?
    1) do they do the same thing for planning query/ data?
    2) If not, can someone give me a business example?
    Thanks,
    R.

    Hi Mayank,
    I am not sure that I understand your explanation. Correct me if I am wrong.
    1)If I restrict 0plant-5000 in the planning query, I either setup 'filter' in the planning modeler or in the 'CHAR restriction'. If so, which way is better? Why?
    2) what is re-usable filter?
    3) in the BEx filter, there are two options- CHAR restriction and default. I checked online info and it said that you can change 'filter value' in the run time if u restrict 0plant 5000 in the planning query. However, I found that it seems it is not true, I can change filter value in the runtime if I restrict 0plant-5000 in the 'CHAR restriction'. Did I miss something?
    Thanks,
    R.

  • Replaced power supply in 21.5" model a1311 and no activity on boot.

    Replaced The power supply in an iMac model a1311 and after re-assembly, there is no visual response on boot. The fans and hard drives spin up and the hard drive sounds like it's booting, but no display, no wifi connection, no nothing...
    What should I look for? There have been reset buttons on previous models that I have owned, but i can't find one on this one. What should I troubleshoot first?
    -Superd@ve

    Hello
    try reset P-ram and SMC
    if is possible try plug an external display for video checking
    HTH
    Pierre

  • Model rendering and...

    Ok first i have 2 questions, i originally started a 3d game engine, the model rendering current is done using alot of algorithms and using the java.awt.Graphics class to draw polygons (triangles).
    I know how a model works obviously, vertices and faces, but i need to know if Java3D offers any easy solutions to drawing a 3d model which will work with rotations and texturing.
    My current Model rendering system does the following;
    Loads the model's and created a class instance called "Face" which contains; 3 vertice points, colour, texture etc.
    Then loops through them using javas Comparator class to order them according to z axis (so it draws the back faces before the front ones).
    And that is basically it, but is there a simple solution to doing this, including basic lighting in the java's media api?
    Now, my second question:
    How do i download and install the javax.media.opengl package, ive been googling and checking the sun main site for downloads for that api but i can't seem to find them.
    Thanks for any help to any of the questions above.

    If you want to use complex models , I think the best way is to use 3d object loaders .
    You must design your model in some high level 3d tool like maya or 3d studio max , and then export object . then you can have your model in your game!
    Java3d for OpenGl :
    http://java3d.j3d.org/download.html

  • I am trying to use java  file as Model layer and jsf as presentation layer

    I am trying to use java file as Model layer and jsf as presentation layer and need some help
    I successfully get the value of h:outputText from java file by doing simple binding operation but I am facing problems when I am trying to fill h:dataTable
    I create java file
    package oracle.model;
    import java.sql.;*
    import java.util.;*
    *public class TableBean {*
    Connection con ;
    Statement ps;
    ResultSet rs;
    private List perInfoAll = new ArrayList();
    *public List getperInfoAll() {*
    perInfoAll.add(0,new perInfo("name","username","blablabla"));
    return perInfoAll;
    *public class perInfo {*
    String uname;
    String firstName;
    String lastName;
    *public perInfo(String firstName,String lastName,String uname) {*
    this.uname = uname;
    this.firstName = firstName;
    this.lastName = lastName;
    *public String getUname() {*
    return uname;
    *public String getFirstName() {*
    return firstName;
    *public String getLastName() {*
    return lastName;
    right click on the file and choose 'create data control'
    then i wrote the jsf file:
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<f:view>*
    *<h:dataTable id="dt1" value="#{bindings.perInfoAll}"*
    var="item" bgcolor="#F1F1F1" border="10"
    cellpadding="5" cellspacing="3" rows="4" width="50%"
    dir="LTR" frame="hsides" rules="all"
    *>*
    *<f:facet name="header">*
    *<h:outputText value="This is 'dataTable' demo" id="ot6"/>*
    *</f:facet>*
    *<h:column id="c2">*
    *<f:facet name="header">*
    *<h:outputText value="First Name" id="ot1"/>*
    *</f:facet>*
    *<h:outputText style="" value="#{item.firstName}"*
    id="ot2"/>
    *</h:column>*
    *<h:column id="c4">*
    *<f:facet name="header">*
    *<h:outputText value="Last Name" id="ot9"/>*
    *</f:facet>*
    *<h:outputText value="#{item.lastName}" id="ot8"/>*
    *</h:column>*
    *<h:column id="c3">*
    *<f:facet name="header">*
    *<h:outputText value="Username" id="ot7"/>*
    *</f:facet>*
    *<h:outputText value="#{item.uname}" id="ot4"/>*
    *</h:column>*
    *<f:facet name="footer">*
    *<h:outputText value="The End" id="ot3"/>*
    *</f:facet>*
    *</h:dataTable>*
    *</center>*
    *</af:document>*
    *</f:view>*
    but nothing is appear in my table
    I know that there is something wrong in calling the binding object
    I need help pls and where can i find some help to deal with another tag types
    thanks

    i dragged the "perInfoAll" from my "Data Controls" and choosed adf table (even I know that new table with adf tags well be generated and i want table with jsf tags)
    and this code is generated
    *<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"*
    *"http://www.w3.org/TR/html4/loose.dtd">*
    *<%@ page contentType="text/html;charset=UTF-8"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://xmlns.oracle.com/adf/faces/rich" prefix="af"%>*
    *<f:view>*
    *<af:document id="d1">*
    *<af:messages id="m1"/>*
    *<af:form id="f1">*
    *<af:table value="#{bindings.perInfoAll1.collectionModel}" var="row"*
    *rows="#{bindings.perInfoAll1.rangeSize}"*
    *emptyText="#{bindings.perInfoAll1.viewable ? 'No data to display.' : 'Access Denied.'}"*
    *fetchSize="#{bindings.perInfoAll1.rangeSize}"*
    *rowBandingInterval="0"*
    *selectionListener="#{bindings.perInfoAll1.collectionModel.makeCurrent}"*
    *rowSelection="multiple" id="t1">*
    *<af:column sortProperty="uname" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.uname.label}"*
    *id="c1">*
    *<af:inputText value="#{row.bindings.uname.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.uname.label}"*
    *required="#{bindings.perInfoAll1.hints.uname.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.uname.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.uname.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.uname.tooltip}"*
    *id="it3">*
    *<f:validator binding="#{row.bindings.uname.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="firstName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.firstName.label}"*
    *id="c2">*
    *<af:inputText value="#{row.bindings.firstName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.firstName.label}"*
    *required="#{bindings.perInfoAll1.hints.firstName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.firstName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.firstName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.firstName.tooltip}"*
    *id="it2">*
    *<f:validator binding="#{row.bindings.firstName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="lastName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.lastName.label}"*
    *id="c3">*
    *<af:inputText value="#{row.bindings.lastName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.lastName.label}"*
    *required="#{bindings.perInfoAll1.hints.lastName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.lastName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.lastName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.lastName.tooltip}"*
    *id="it1">*
    *<f:validator binding="#{row.bindings.lastName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *</af:table>*
    *</af:form>*
    *</af:document>*
    *</f:view>*
    but when run it i see the following errors
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    :(

  • E71 Linux Information, likes, and dislikes

    The E71 is a fairly cool phone, but it took me a little while to get things working well with Linux after upgrading from my Motorola v3xx. To avoid other people having to figure things out, here's my info, and later in this a list of likes and dislikes.
    Bluetooth
    The E71 works fine with bluetooth. I bonded the device to my computer with the instructions at http://arstechnica.com/journals/linux.ars/2007/12/10/using-a-bluetooth-phone-with-linux
    After installing the software, I made my phone non-hidden, did:
    hcitool scan
    Scanning ...
    xx:xx:xx:xx:xx:xx Corey's Phone
    then got the address (the xx:xx... part). Then I did:
    obexftp -b xx:xx:xx:xx:xx:xx -l
    and it asked on the phone for a passcode, then on the computer. Enter the same 4-digit number in both places. Now you are bonded. You can use obexftp to poke around in the phone.
    All fine and dandy, but I also use my phone as a tether to get to the Internet. That's when I ran into my first problem. You use:
    sdptool browse xx:xx:xx:xx:xx:xx
    to find the RFCOMM channel to use for dial up, but there's a bunch and I chose the wrong one. After hunting some more, I found out that channel 2 was aptly named "Dial-Up Networking". Set the right channel in /etc/bluetooth/rfcomm.conf:
    rfcomm0 {
    # Automatically bind the device at startup
    bind yes;
    # Bluetooth address of the device
    device xx:xx:xx:xx:xx:xx;
    # RFCOMM channel for the connection
    channel 2;
    # Description of the connection
    comment "Nokia E71";
    restart bluetooth with /etc/init.d/bluetooth restart, and voila, /dev/rfcomm0 appears and it's a PPP dialup. So my PPP scripts to dial into AT&T worked perfectly. You can hunt on the internet for various scripts for this, or I can post one if someone needs it, though it would only work for AT&T.
    USB
    Now for USB. It's kind of ironic, but the high-speed data from AT&T is actually faster than the bluetooth data rate. Kind of sucks. So I tether the phone with USB whenever I want to transfer a lot of data (like MP3 files) or when I want a faster network connection. Getting USB working hung me up for a while, though.
    Plug in the USB cable (which thankfully came with the phone) and you get a menu of things to do, as USB can really only do one thing at a time. The "Mass Storage" is what is used for file transfer to the microSD card. I guess that's an OK name, though it could have been a little more intuitive.
    I don't know what "Media Transfer" does.
    You would think that "Connect PC to web" would connect your PC to the web. But you would be wrong. To get a /dev/ttyACM0, a simulated serial port to connect to the web using PPP, you choose "PC Suite". The "Connect PC to web" option creates a simulated CDROM drive that has the PC software to connection your PC to the web through the phone. With the proper selection, I could dial in at will. Now I'm happier, though this cost my some unnecessary time.
    VPN
    Now I've got a cool phone that does all kinds of stuff with email. So I think: "I'll set up a VPN so I can get to my home and work email." This was not easy. The best instructions I found were at http://wiki.paepstin.info/nokia:vpn. But they are not quite accurate.
    First of all, if you are going to use RSA, the information the keys was wrong. You can completely ignore the information about the "fqdngw" key and certification. You only need to create on key and one certificate for both the phone and the VPN gateway. Put them into /etc/ipsec.d/private and /etc/ipsec.d/certs, respectively. You do need to put the server certificate in as it says. And the "RSA" entry in ipsec.secrets is wrong, it should be the key that you put into the private directory, not the name on the web page.
    I was able to get RSA to work with this, but it was annoying as the phone asks you occasionally for the key store password. So I'm using PSK (with a good password).
    Creating the keys is easier than it described in the web page due to some better software begin available from Nokia. Unfortunately, it only runs on windows. You can get it at http://businesssoftware.nokia.com/mobile_vpn_downloads.php, it's named "Nokia Mobile VPN Client Policy Tool for Microsoft Windows". The settings in the tool can be directly accessed with the "Advanced view" options, you need to set the values up as described in the tool, but you need to set the mode to "X509 DN" if you use RSA.
    You can also do this all on Linux, perhaps, you can search around with Google and find that information.
    Things that I like
    The phone is very fast. Viewing web pages on my old Motorola v3xx seemed to be limited by the rendering speed of the web browser, not the bandwidth. Not so with this phone.
    The email works quite well, in general.
    Wireless LAN access works well.
    SIP worked perfectly the first time with Gizmo (I already had a Gizmo account, highly recommended). This will be really useful when I travel internationally.
    I use Scheduleworld to sync my schedule and contacts with Google calendar. The syncing was very fast and worked perfectly. It also syncs Notes, which was one of the most annoying things missing on my Motorola v3xx. (It didn't have notes at all, in fact.)
    The main screen is quite functional for me. I could set everything up like I wanted, and it has useful information.
    You can run multiple things at the same time! I really hated that about the Motorola v3xx.
    The battery meter seems to work correctly. The one on my Motorola v3xx was worthless.
    Thinks I don't like
    The IMAP mail works well for most everything, but you cannot move messages between folders. Since I use spamassasin, I have a special folder that spamassasin detects spam in, and another non-spam folder. But I can't read them move the mails to the various folders. I really don't like this.
    Voice dialing is completely useless for a number of reasons:
    1) It seems rather unstable, and often causes my phone to reset. Oddly enough, this has been getting better over time, perhaps due to the voice learning.
    2) Even if it didn't cause my phone to reset, it doesn't seem to work well. I know it learns, but my Motorola v3xx didn't have any learning and worked quite well.
    3) Even if the word recognition worked well, it's still not usable without being able to look at the phone and press buttons. The phone has no way to say "No, I don't want that one" through a voice command. You have to be looking at the phone in case it makes a mistake (which could be embarrassing), but that completely defeats the purpose of voice command. When my Motorola v3xx did voice command, it would ask you if it was correct and allow you to go through the selections it found, completely with voice commands.
    I'm really going to miss voice dialing. Probably the greatest loss switching from the v3xx.
    The phone should use standard microUSB connecter and should charge the phone through it. My Motorola v3xx did this, and I have a bunch of these cables lying around (from various cameras and such) and a bunch of chargers. I don't understand why any phone manufacturer would want to do anything else, except to make their customers lives more difficult and tie them to the manufacturers various chargers. This really sucks.
    I've had problems with Bluetooth disconnecting the headset. It's rather annoying, and I'm not the only one who's had the problem, as can be seen by searching through these forums. I just got a Jawbone, and it doesn't seem to be nearly as bad as the H700 I have previously, though.
    You have to use XAUTH for VPN logins, at least with openswan. This is somewhat annoying. It would be very nice if Nokia could fix this (apparently the E60 didn't have this problem so it's a new problem, as evidenced in the VPN web page I posted above). If you don't use XAUTH, it seems to connect (at least from openswan's point of view) but the phone never transitions on to do the thing it was going to do.
    WLAN really sucks power. It advertises 6.9 days, but I don't even get 12 hours. I don't get the values for GSM or WCDMA, either, but 12 hours is just not enough.
    The 2.5mm audio jack really sucks. Why can't it be a standard 3.5mm jack? I had to look for a while, and I think I found a 2.5mm to 3.5mm converter that will work at http://www.atmasphere.net/wp/archives/2008/08/13/e71-recommended-accessory-javoedge-stereo-adapter
    I've noticed various glitchy problems. For instance, once I had to mailboxes connected on the same VPN at the same time, and then I disconnected one, then the other. The first one never disconnected and would not disconnect. I had to reset the phone to fix the problem. I've seen other little glitches like that, though none as bad as the resetting problem with the voice command and I've never been able to reproduce any of the other ones.
    The mapping program is not intuitive. I still haven't figured out how to use it very well. After I use it for a while I might figure it out. The ability to download maps to the phone would be nice for situations where you are not connected to the internet. I haven't done much with this. I really like the UI for Google maps, this is a big step down from there.
    VPN connections do not show up in the "Active data connections" section of the connectivity manager.
    The documentation is lacking a lot. Almost all the help on the phone is like the "Proxy port number" setting under "Access point settings". The help is "Enter the proxy port number". That kind of documentation is useless. I'd like to know what the thing does. And the browser has keyboard shortcuts, but I have no idea what they are. A scroll forward and back would be mighty handy keyboard shortcuts, and they might exist, if only someone wrote it down...
    Whew, that's a bunch, I guess, but mostly minor (and mostly correctable with a software update, hint hint). If the above things were fixed, it would make this a faultless phone, at least for me. But in addition to those, the following things would make the phone uber-cool:
    A big screen and a slider. The screen the only thing I like about the iphone (I really hate that it doesn't have a keyboard, plus you can't tether it and voice command really sucks on the iphone, too.)
    It could run Linux . Sorry, I couldn't resist.

    EXCELLENT! Could you please please post your dialling files for AT&T?? Even better if you could upload a zip of your entire /etc/ppp/peers folder that would be nicer even. I am in desperate need to get the $15 MediaNet tethering on my Fedora 10 laptop working over bluetooth, I used to do it before with T-mobile T-zones with my E61, but since then I switched to my E71 and moved my number to AT&T and my attempts to adapt my scripts to AT&T have not been successful yet however tethering under Windows XP with the Nokia PC suite works though...

  • Display Like and Share functionality in SharePoint 2013 search result

    Hello Experts,
    I dont Know whether i am asking a good question or bad one . but i am not very much expert in search.
    I have to display No of Likes , Share functionality in SharePoint Search Results. 
    i know little basic about how display templates works. i want to implement these like and share functionality as actions  in Item_common_hoverpanel_Actions template. show that i can see in preview.
    please if any body can help me . i will be highly thankful to you.
    Mukesh

    This will be difficult. The number of likes has a managed property called LikesCount but it is not populated by the search crawler. So your JavaScript will have to read the "LikesCount" field of the corresponding list item. That would be a
    lot of code to execute in the item display template just to display the number of likes. You could have a button that displayed a callout that would get the information and display it. The Sharing could be done via JavaScript in your item display template
    using a REST call. You can see an example of code to do that here:
    http://sharepointfieldnotes.blogspot.com/2014/09/sharing-documents-with-sharepoint-rest.html?showComment=1428595550241#c3227376854590814312
    Just remember the user must have permission to share these documents, so your code will have to handle this.
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

Maybe you are looking for