Search for Property in own coding

Hello,
for my custom search component i would like to search for an property. I will the user give the possibility to search for the Contenttype. For example PDF, html or Text.
I try this (but donts works)
private IQueryEntryList createQuery() throws WcmException {
SearchQueryListBuilder sqb2 = new SearchQueryListBuilder();
sqb2.setSelectedCustomProps("sapportals.com/xmlns/cm:contenttype(value"+ContentType.TEXT_PLAIN+")");
return sqb2.buildSearchQueryList();
The other question regarding this problem i have is: How can i connect the property query as AND with the searchwords.
Any help is welcome,
best regards,
Patrick
Message was edited by: Patrick Höfer

Hi Patrick,
the namespace in question is "http://sapportals.com/xmlns/cm" (including "http://"), the alias is "default". The namespace you gave here cannot work in any case.
Behind "value", a "=" is missing.
If your "ContentType.TEXT_PLAIN" matches the real values of this property, one cannot see from the code.
To compose different queries through "AND", add an AND IQueryEntry to the IQueryEntryList and then your own IQueryEntry(List). See https://media.sdn.sap.com/javadocs/NW04/SPS15/km/com/sapportals/wcm/service/indexmanagement/retrieval/search/IQueryEntry.html for further details.
Hope it helps
Detlev

Similar Messages

  • Search for Opportunity with own partnerfunction

    Hello,
    i have in the opportunity one customer own partner function Z1.
    Now i want to search all opportunities for partner XY in function Z1.
    This means i have to add a search attribute to BT111S_OPPT/Search which is the BP_ID of partnerfunction Z1.
    Could anybody please provide a kind of docu or the steps to get this done?
    Thank you
    Best regards
    Manfred

    Hello,
    As far as I remember you already have 2 standard criterias (partner_fct and partner_id) that answer this requirement.
    Did you try to use them?
    Kind regards,
    Nicolas Busson.

  • The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

    The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

    The original 5 meters distance router in WiFi signal is full, but the beginning of the past few days more than 3 meters on the search to the WiFi signal, my own iPhone 5, iPhone 4S received signal is full, only iPad2 searching for less than the signal.

  • Search for own settypes / attributes of iObject

    Hello,
    i created some Z-Settypes with own Z-Attributes for individual objects in CRM.
    I also created the assignmentblocks for this Z-Settypes. Now i´m able to maintain the Z-Attributes in Webclient UI.
    My next step would be to search for individual objects (view PRDIOQR/SEARCH) using my Z-Attributes.
    Does anybody know what i need to do?
    The view is already enhanced.
    I found in GENIL_BOL_BROWSER own notes with my settypes.
    No i need to know how to bring this on the search view to search with my Z-Attributes for i objects?
    Thank you
    Best regards
    Manfred

    Hi Anne,
    Have a look of the <a href="http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000647973&_SCENARIO">CIC cookbook</a>. This might help.
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Check existens of Property in KM or search for KM property

    Hi all,
    Does anybody know how I can search for existing KM properties?
    Or check if a KM Property does already exist in KM?
    Thanks
    Ismail

    Hi,
    Use IQueryExpression for searching based on property values
    ICollection start = (ICollection)factory.getResource(u2033/documentsu2033, context);
    IGenericQueryFactory queryFactory = GenericQueryFactory.getInstance();
    IQueryBuilder queryBldr = queryFactory.getQueryBuilder();
    IQueryExpression queryExpr =
    queryBldr.like(PropertyName.createContentType(), u2033%.jpgu2033).or(
    queryBldr.like(PropertyName.createContentType(), u2033%.gifu2033).and(
    queryBld.eq(PropertyName.createCreatedBy(), u2033adminu2033)
    IGenericQuery query = queryFactory.toGenericQuery(queryExpr);
    IResourceList result = query.execute(
    start, // the resource to start at
    Integer.MAX_VALUE, // maximum depth
    Integer.MAX_VALUE, // maximum result size
    false // donu2019t include versions
    ICollection start = (ICollection)factory.getResource(u2033/documentsu2033, context);
    IRepositoryManager repositoryMgr = start.getRepositoryManager();
    IPropertySearchManager searchMgr = repositoryMgr.getPropertySearchManager(start);
    IQueryBuilder queryBldr = searchMgr.getQueryBuilder();
    IQueryExpression queryExpr =
    queryBldr.like(PropertyName.createContentType(), u2033%.jpgu2033).or(
    queryBldr.like(PropertyName.createContentType(), u2033%.gifu2033).and(
    queryBld.eq(PropertyName.createCreatedBy(), u2033adminu2033)
    IResourceList result = searchMgr.execute(
    queryExpr, // the WHERE clause
    start, // the resource to start at
    Integer.MAX_VALUE, // maximum depth
    Integer.MAX_VALUE, // maximum result size
    false // donu2019t include versions
    Regards
    BP

  • Programmatically search for a page via a property value

    Hi,
    I really need help with this, using java I need to search for a page via property value.
    Thanks.

    I don't know if this performs well, but this snippet traverses a branch with root "node", finds jcr:content nodes, and gets a specific child node. You could use the node.getproperty() method in your case and traverse the /content branch (or wherever your pages are stored). See the javax.jcr.node (http://www.day.com/maven/jsr170/javadocs/jcr-1.0/javax/jcr/Node.html). Also see org.apache.sling.jcr.api.SlingRepository (http://dev.day.com/docs/en/cq/current/javadoc/index.html)
    NodeIterator iter = node.getNodes();
    while (iter.hasNext()) {
            Node n = iter.nextNode();
           //Look for "jcr:content" nodes
           if (n.getName().equals("jcr:content")) {
                   //get the path of the model node and save it
                   if(n.hasNode(MODEL_NODE)){
                         modelIds.add(n.getNode(MODEL_NODE).getPath());
           } else{
           //Scan child nodes
           getModelIds(n);
    scott

  • Search for coding possible thru Toad, but not thru Forms Builder

    Hi all,
    I am searching for a particular word 'instalment' which is used in forms. when I search using 'Find and Replace PL/SQL' there are no matches. But in Toad, when i search in 'Find in Files', its displaying the code containing the above word in a particular .fmb file. why this is happening?? I am in urgent need of that code.
    Pls help me.. its urgent!!
    Edited by: user13106173 on Dec 6, 2010 3:05 AM

    When I open that file in Quick view from ToadWhich file are you referring too when you say "that file"? I assume you mean the Forms Module (.fmb), but I hate to assume things so could you please confirm this for me? ;-)
    How can we see attached library details?There is no way to view the PL/SQL code of an attached library except by opening the library in the Forms Builder. If your form has an attached library, the Object List Report will indicate there are attached libraries in the "Attached PL/SQL Libraries" section of the report.
    * Attached PL/SQL Libraries                        
       * Name                                            MY_LIB_NAME
       - Comments                                       
       * PL/SQL Library Location                         MY_LIB_NAME
       * Name                                            RP2RRO
       - Comments                                       
       * PL/SQL Library Location                         rp2rro
    But through forms builder, I cant see the below details. Don't quote me on this, but believe TOAD's quick view displays all of the code in the .fmb, even the code of an attached library, whereas Forms Builder will allow you to see the signature of the program units in the attached library, but not the code.
    Also the ct_message display item used here is not created in this particular form. It is in some other form. How this happens?Is the CT_MESSAGE display item a Subclassed item? Meaning, it was included in your form file through an Object Library or by copying the item to the form and choosing to subclass (create a reference to) the item rather than copy of the item in your form. Oracle Forms implements inheritence through the use of subclasses. By subclassing an item (be it a Visual widget [like a button] or a Program Unit) Forms stores a refernce to the object rather than the actual object. This allows you to share and reuse code and objects.
    Check the Object List Report of your form and see if there are any attached libraries. If there are attached libraries, open these libraries in Forms Builder to find your code. It is also also possible to subclass objects in your form file through the use of Object Libraries. Check your Object List Report to see if there is an Object Groups sections:
    * Object Groups                                    
       * Name                                            CALENDAR
       - Subclass Information                           
       - Comments                                       
       * Object Group Children                          
         * Name                                          WHEN-NEW-FORM-INSTANCE
         - Subclass Information                         
         * Real Object Pointed to by the Object Group Child
         * Name                                          WHEN-WINDOW-ACTIVATED
         - Subclass Information                         
         * Real Object Pointed to by the Object Group Child
    .....If the CT_MESSAGE item was added to your form thorugh an object library, it will be listed in this section of the object list report.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Searching for: A proper programming editor

    Good evening,
    in search for a good editor for doing some basic programming I have come across multiple applications, but I have not yet found the perfect one for me. With VIM I liked the auto-identation and even more the great color schemes. Coding looked great when using it - and it even worked with CLI only, but I have never plunged deeper into its own universe. What I do not like about VIM is the uncommon way of controlling it. I am used to do it the fast way - saving with CTRL+S - which takes me quite some more time with VIM, but that's something I could overcome. I had some problems with the control- and editing mode of this program. The paradigma behind VIM seems to be fascinating, but it might not be perfect for me.
    Next one was Kate. Nice-looking KDE app, extensible and with a lot of options. Auto-Identation as well, but I miss the color schemes. Code looks awful, awful predefined colorschemes. I do not really want to work with it.
    Scite - nice for editing but I could never get myself to like it.
    What would be great would be an application like TextMate for Mac OS X. It supports some kind of IntelliSense (I have no other word for it - Visual Studio coined it back then) and keywords to create predefined codeblocks (for instance: typing pydef and hitting the tab key will create a fully matured def-structure for Python with spaceholders for each element from which to which you can jump by pressing tab). Nice colorschemes would make programming a lot more pleasuring. Maybe it's simply too much I want it to have, but maybe there's an app which gives me all I want and need.
    Thanks in advance and greeting
    cg

    chaosgeisterchen wrote:What I do not like about VIM is the uncommon way of controlling it. I am used to do it the fast way - saving with CTRL+S - which takes me quite some more time with VIM, but that's something I could overcome.
    If ctrl-s for save is something you want, you can easily implement it in vim.
    inoremap <C-s> <esc>:w<cr>a
    nnoremap <C-s> :w<cr>
    If you decide to stick with :w (or even if you don't), I can recommend the following map:
    nnoremap ; :
    vnoremap ; :
    This allows you to enter extended mode by just hitting ; instead of :. It seems like just a small change, but it really makes a big difference, at least for me.
    mosor wrote:Actually, Vim doesn't have IntelliSense equivalent, because it doesn't "understand" the code, class hierarchies/members/methods, itd... That's something I miss the most while hacking Python code with Vim - WingIDE has such great code completion.
    Make sure you have :set omnifunc=pythoncomplete#Complete, which it should be whenever you edit a python file, and use ctrl-x ctrl-o to complete. The completion isn't always perfect, but it works fairly well.

  • Powershell search for a word and use the next word

    Here is the skinny.  I am trying to easily part through a event log of print jobs.  I export it to a CSV, grab only the events that pertain to what I need but I am stuck there.  Here is a sample of what I need help with.
    Microsoft Word - Test Print owned by user1 on computer1 was printed on printer1 through port
    Obviously document name, user1, computer1 and printer1 will be different in almost every case.  How do I parse through this and grab the username, computer and printer.  I was thinking search for "owned by", but how do I grab the name?
    Thanks for the help.

    ok now I am running into another issue.  Apparently the nuances of splitting by word seems to be los on me.
    when I do
    foreach ($job in $printjob) {        $test = $job.split("owned by")        echo $test}
    It will then split the line by each and ever "o", "w", "n", "e", "d", etc.....  I even tried $test = $job.split("'owned by'").  Any ideas?
    I feel like I should explain why this is happening.
    When you call $job.Split(), you're calling the .NET Split() method of the object System.String.
    If you look at the overloads of split (i.e., all the different ways you can call String.Split) - link here https://msdn.microsoft.com/en-us/library/system.string.split%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396 -,
    you'll notice that the only way of calling String.Split() with a single parameter is if you pass a char[], an array of characters.
    Now, if you were coding in C# or VB.NET and you did... String.Split("owned by"), you'd get an error saying that it's expecting a char[] but you gave it a string.
    Powershell however is a bit 'smarter' and it tries to accommodate... It knows that the method expects a char[] and it knows you gave it a string, but it also knows how to convert it to a char[], so it does that, and that's what the method String.Split()
    receives.
    And what happens when the method String.Split() receives a char[]? It splits on every single character in that char[], as you've seen :)
    How to fix it? Well, there are two overloads that accept a string[], so you can use those. Now here's an interesting fact...
    In the same way that PowerShell converted a string to a char[] to accommodate the needs of the method you were calling, it can also convert a string into a string[], so you could do this:
    $job.Split("owned by", [System.StringSplitOptions]::None)
    You're passing it a string... and a [StringSplitOptions] object, so you expect it to call the third overload from the page I provided earlier.
    But if you run it... you still get the same stuff as before! What gives?
    Well, seeing as in this particular case there is an overload that receives char[] and another that receives string[] and you passed a string, which means PowerShell will always have to convert it into something anyway... You have no control
    over what PowerShell will decide to convert the string to. It could convert to char[] or to string[]. In this case, because the definition of the char[] method appears before the string[], that gets picked.
    So, finally... how to force PowerShell to pick the string[] overload? Well, don't give it a choice!
    $job.Split([string[]] "owned by", [System.StringSplitOptions]::None)
    So here I'm casting the string into a string[] before it gets passed to the method, so PowerShell does not need to perform any conversion itself and everything is right with the world.
    Hope this helps :)

  • I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac.  Any suggestions?

    I have 3 older ext. hard drives that I've utilized many times. Today while searching for old files, one of the three is no longer recognized by my PowerMac. The drive is not listed in Disk Utility.  Any suggestions?

    Is the computer in you equipment line:
    Dual Core Intel Xenon
    (which is not a PowerMac but a Mac Pro) the one you are asking about, or do you have an older PowerMac?
    If a Mac Pro, their forums are here:
    Mac Pro
    and, as Mac Pros have a totally different architecture from the pre-2005 Macs this forum covers, you may not have the same issues that can affect the older models. If someone didn't notice your equipment line, you could get advice that doesn't apply.
    If you really have a pre-2005 PowerMac, read on.
    If the stubborn external is USB and does not have its own power brick (i.e., it gets power only from the computer's UBS ports--"bus powered"), it may not be getting enough power. As electric motors age, they can demand more power than when new, and the power available on any USB port is limited.
    The typical workabouts to making a computer recognize an aging, bus-powered USB drive are:
    Get a powered USB hub (has its own power brick
    Get a "Y" USB cable: 1 Meter USB 2.0 A to 5 Pin Mini B Cable - Auxiliary USB "Y" Power Design for external hard drives.
    The second gets power from two USB ports on the computer and often that's enough.
    Remember that the USB ports on your keyboard seldom provide enough power even for a thumb drive, so be sure to use the USB ports on the back of the computer.

  • How to use a standard library binary search if I'm not searching for a key?

    Hi all,
    I'm looking for the tidiest way to code something with maximum use of the standard libraries. I have a sorted set of ints that represent quality levels (let's call the set qualSet ). I want to find the maximum quality level (choosing only from those within qualSet ) for a limited budget. I have a method isAffordable(int) that returns boolean. So one way to find the highest affordable quality is to start at the lowest quality level, iterate through qualSet (it is sorted), and wait until the first time that isAffordable returns false. eg.
    int i=-1;
    for (int qual : qualSet) {
         if !(isAffordable(qual))
              return i;
         i++;
    }However isAffordable is a slightly complicated fn, so I'd like to use a binary search to make the process more efficient. I don't want to write the code for a binary search as that is something that should be reused, ideally from the standard libraries. So my question is what's the best way of reusing standard library code in this situation so as to not write my own binary search?
    I have a solution, but I don't find it very elegant. Here are the important classes and objects.
    //simple wrapper for an int representing quality level
    class QualityElement implements Comparable<QualityElement>
    //element to use to search for highest quality
    class HiQualFinderEl extends QualityElement {
         HiQualFinderEl(ComponentList cl) {...}
    //class that contains fair amount of data and isAffordable method
    class ComponentList {
         boolean isAffordable(int qual) {...}
    //sorted set of QualityElements
    TreeSet<QualityElement> qualSet When you create an instance of HiQualFinderEl, you pass it a reference to a ComponentList (because it has the isAffordable() method). The HiQualFinderEl.compareTo() function returns 1 or -1 depending on whether the QualityElement being compared to is affordable or not. This approach means that the binary search returns an appropriate insertion point within the list (it will never act as if it found the key).
    I don't like this because semantically the HiQualFinderEl is not really an element of the list, it's certainly not a QualityElement (but it inherits from it), and it just feels ugly! Any clever suggestions? Btw, I'm new to Java, old to C++.
    If this is unclear pls ask,
    Andy

    Thanks Peter for the reply
    Peter__Lawrey wrote:
    you are not looking for a standard binary searchI'm not using a binary search in the very common I'm searching for a particular key sense, which is the Collections.binarySearch sense. But binary searches are used in other situations as well. In this case I'm finding a local maximum of a function, I could also be solving f(x)=0... is there a nice generic way to handle other uses of binary search that anyone knows of?
    I would just copy the code from Collections.binarySearch and modify itI have this thing about reusing; just can't bring myself to do that :)
    It would be quicker and more efficient than trying to shoe horn a solution which expects a trinary result.Not sure I understand the last bit. Are you referring to my bastardised compareTo method with only two results? If so, I know, it is ugly! I don't see how it could be less efficient though???
    Thanks,
    Andy

  • Searching for a single keyword in lightroom 5

    Hi there,
    I am a newbie to lightroom 5 and I am slowly learning the power of keywords.
    My question is,
    I have 1000's of images of my daughter in my catalog I have key worded all of them. There are some images with her on her own or with me, the mum, nan, granddad etc etc. I have also key worded the photos with, for example me. So on an image the key word is annie, nick. When I go to the 'text' search in the library list I type in annie and every single image of her comes up be it with me the nan, the mum etc. My daughter has hundreds of image with different family members. How do I just get the search to pick "annie" as the keyword and not the rest of the keywords in the catalog.
    For example,
    I know I can do a search like this, annie, !nick, !mum, !granddad etc etc, but this is so time consuming. Is there a character that can tell lightroom that you only want the image of annie with no one else or nothing else.
    I am aware you can select all of the singular images of my daughter and create a collection with just her but this is also time consuming.
    Another way this would be annoying is if you had images of trees for example, some trees might be taken by a water fall, mountain, road, picnic table or just one on its own. you might have hundreds of tree image on there own and hundreds of images of trees with a feature. If you try and search for just a tree or trees with nothing else in the image your search result is going to bring up every single image with a tree in it. Not just the images of a tree.
    Hope this makes some sort of sense. I have searched all over the internet and there doesn't seem to be an option for this. Or maybe I am missing something. If I'm not missing something and this just isn't possible maybe lightroom designers could look at implementing this search criteria in future updates.
    Regards,
    Nick.

    I have tried that and i think i am more confused. Its going to take me a while to learn this stuff. I have done the ! option and have narrowed it down to the images I want and have created a collection with just the images I wanted. I think I am going to have to think ahead with the keywording in the future. I will get there, its all trial and error at the moment.
    Its only a problem at the moment as I have an external hard drive so I have just added 'ADD" all images (over 4000) to lightroom from there as I want to save all future photos I do on the external hard drive. I am reluctant to fill my new IMAC with loads of images and take up loads of space. With photos I do in the future I will be saving on the imac probably and backing up on my external hard drive. The 4000 images are from the last year or so before I got this MAC.
    When I do future photo shoots etc it will be easier to move the images to the correct folders as I will be working on a lot less images. So I believe in the future it will be more managable. Trying to key word 1000's of images at the same time has confused me a bit.
    Cheers for you inputs peeps, appreciate it.

  • How to Search for a specific element in a MultiGraph?

    Hi there
    Im trying to implement a Multigraph ADT in Java. Multigraph is a graph that has multible edges connecting a node. I assume you all know what a Graph ADT looks like.
    So i think ive got all the basic methods functions of a normal graph/mulitgraph and now i want to search for a element in it
    The question is how will i so that?
    Do i use a breadth first search?
    But i thought a BFS traverses all the elements in a graph? And how can i use a BFS to search for a specific element in a graph?
    Thanks

    Hey there
    thanks for your reply but i still some query.
    I thought of doing that but i want to remember the nodes i revisted to get to the target (not all - but the quickest route to that node)
    My design so far is:
    have 3 Interface namely Graph, Node & Edge.
    Classes will inherit those interface to provide the actual implementation as i want the details/coding to be abstract meaning i can give many different way of implementations.
    The graph class will add nodes & edges where when adding edges, edge will store 2 nodes in it respectively source & destination nodes.
    Both Node & Edges will be stored in graph using some data structures atm (arrayList i presume)
    My Design is that i want to (my aim of the task of searching) search for a node in the multigraph by inputting (maybe 2 nodes) into method - start node target node! The method should return a list of nodes to get to the target node.+
    So so far i have this wee algorithm in mind:
    +1. Input start + target node as parameters+
    +2. Use BFS to search the graph+
    +3. When reached target node - halt+
    +4. return the list of nodes that visited to get there (but not all - only the precise & fastest)+
    So will that work?
    If so how do i go about doing implementation?
    Thanks

  • Searching for Network / SIM card blocked - help please!!

    I have just purchased an 8700c from a reputable eBay seller from whom I have previously purchased other items.
    The 8700c was advertised as Unlocked without a SIM card.
    I have never owned a Blackberry before and am just getting familiar with it.
    When I click icon to 'Turn Wireless On' and press the Phone key then at top of screen displays "Searching for Network".
    After a minute or so displays "No Service".
    I bought the 8700c because one day my previous mobile phone did exactly the same thing.
    After an hour on my landline phone with the phone company they assured me the GSM network was functional in my area and suggested my old phone was faulty.
    Not knowing if the phone itself had just died or if fault was with the SIM card I took it to the local branch of the telco.
    One of the guys there swapped his SIM card into my phone and had same problem - hence phone faulty.
    Thinking about it later I realised that it didn't prove there wasn't also a problem with my SIM card but I thought it unlikely so decided to buy a new phone.
    Anyway, received the 8700c yesterday and have inserted my old SIM card, been reading manual, etc.
    Whilst learning how to use it I've been asked several times to enter a password.
    Assuming this was the PIN/password I had on my old phone to prevent use in case I lost the phone, I entered it and it was accepted without any error/warning.
    So I thought I was right in believing the PIN/password was stored on the SIM and not another code, maybe in some EPROM memory in the old phone - I'm not so sure now.
    Doing a Google search I've found mention of various PIN/PIN2/PUK/PUK2 codes used in mobile phones which, if not used correctly, can cause the phone to be locked permanently.
    Here's current information I've found on the 8700c:
    click icon Settings / Options / Status shows
          PIN:      {8 alphanumeric code}
          IMEI:     { 6 digits .00. 6 digits .5}      i.e 15 digits and 3 periods
    click icon Settings / Options / Advanced Options / SIM Card shows
          SIM Card: Blocked
          ID:     {20 digit number}
    click icon Phone shows
          My Number: Unknown
    click again to see list of items, scroll down to Options
    click again to see list of items headed Phone Options
    click on General Options
    the 'Show "My Number":' line has value Yes
    click icon Settings / Options / Network shows
          Network: * None *
          Network Selection Mode: Automatic
    click again to see list of items, scroll to My Preferred Network List
    click again to see one item which is GSM network associated with my old phone
    So it seems this has been found from the SIM card.
    The top left hand side of screen shows 'cingular' but I think I read somewhere that this was just the network for which the 8700c was originally issued and doesn't detemine whether the 8700c is currently locked/unlocked.
    Is 'My Number' Unknown because the SIM card is Blocked?
    Is the SIM card Blocked because I entered my old PIN password instead of the Settings / Options / Status alphanumeric code PIN or some other PIN?
    How can I determine if the 8700c is really unlocked?
    Are there some other settings/options or anything else I should do so I can get connected to the network?
    Any thoughts would be very welcome.

    I am having exactly the same problem mate. Never used a Blackberry - received mine today from eBay (Didn't include a manual) and i have been trying to configure it with no luck. I can't connect to a Network/My SIM Card is blocked/My number is unknown - Even though my SIM works perfectly in my Sony Ericsson. Have no idea what to do. Any help would be appreciated.

  • I added a movie to my iPod, but it won't show up in the videos library! I have to search for it in the search bar!

    So I downloaded a video in mp4 format and added it to iTunes. It shows up in the Home Videos tab and i can play it just fine, but, when i plug my iPod Touch into my pc and let it sync, it doesn't show! When i say this i mean it is ON my ipod, but to get to it i have to search for it in Videos. All that shows up in the library is a Family Guy episode i purchased from itunes a while back and at the top it says "Family Guy" as if it is it's own catagory. There is no back button or any buttons for that matter. Just the search bar and the episode. This is what i get when i launch Videos:
    And to get the video i have to tap the search bar and search it and play it from there

    Do you have any videos/movies in the video app?
    In iTunes if you right click on the video and select Get Info and go to the Option tap what Media Type is shown?

Maybe you are looking for