How to enhance PRDIOQR/Search with a new attribute

Hello,
wie use the view PRDIOQR/Search to search for IObjects - which are downloaded ERP equipments.
I have the requirement to add a new search criteria to this searchobject.
All IObjects have partners maintained. The requirement is to select IObjects by to postalcode of the partner in partnerfunction "Ship-To-party".
Could you please give me some tipps how to acchieve this?
Thanks a lot.
Best regards
Manfred

Hello,
i debugged a little bit in EH_ONSEARCH.
The issue i face is that if i filter there the result than i have not all IObjects filtered with my own search criteria.
The result has an entity list which is in standard 100 entities (max_hits).
If somebody uses my own search criteria i have to check all the 50.000 Iobjects in the system not only 100.
From a performant point of view this is maybe critical. I will check this.
If somebody have some tip for me please add them to this threat.
Thank you
Best regards
Manfred

Similar Messages

  • How to enhance SD (0DOC_NUMBER) with Field BNAME (T: VBAK), BSTKD (T: VBKD)

    Hi Gurus,
    I need the following data to 0DOC_NUMBER
    Field: BNAME / ERP Table: VBAK
    Field: BSTKD / ERP Table: VBKD
    - It is a 1:1 relationship
    - both fields are available in the 2lis_11_vaitm
    - fields are "free text" in ERP (used for additional information to customer order)
    How can I bring these data to sd? It's not a keyfigure, it's not master data. I think both are "only attribute" for 0DOC_NUMBER? Is that correct? I'm able to enhance the 0DOC_NUMBER with two "only attribute" attributes. But how can I bring the data into BW?
    Or is this the wrong was? Hope you can help me.
    Thanks and best regards.
    Feli

    I searched the whole day yesterday and I searched the whole morning. But I'm not able to find an answer for my question. I know how to load normal transactional data and I know how to load master data. But I never enhanced master data which were filled by an transactional data source.
    Could you give me a hint, how to do this?
    Thanks.

  • How to use my itunes with a new pc

    how to use my itunes with a new pc?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    If you have an iOS device that syncs with contact & calendar data on your computer you should migrate this information too. If that isn't possible create a dummy entry of each type in your new profile and iTunes should offer to merge the existing data from the device into the computer, otherwise the danger is that it will wipe the information from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data. If you don't have any Apple devices then see HT2519 - Downloading past purchases from the App Store, iBookstore, and iTunes Store.
    tt2

  • The iPod is synced with another iTunes Library, how do I sync it with my new MacBook Pro without erasing contents of iPod?

    The iPod is synced with another iTunes Library, how do I sync it with my new MacBook Pro without erasing contents of iPod?

    Copy everything from your old computer, or your backup copy of your old computer, to your new one.

  • How do you "power search"on the new  itunes?

    How does one power search on the new itunes? Is it still possible?

    In addition, since that search window is part of the iTunes' Main Page, I have to wait for that page to load before I can do my search. Before, I could click on the Power Search link, and it would abandon the load and bring me to the Power Search page. Now, since the Main Page takes so long to load, I have to wait for that to finish before I can search.
    In other words, I have to wait for iTunes to show me what it wants me to buy, before I can tell it what I want to buy.
    Kinda like going into a record store and getting a saleman who tries to sell me the latest hits before he will listen to what it is I came in to buy. The attitude is completely wrong.

  • In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE!

    In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE! Thank god Pages 09 is still there.

    …and the other 98 missing features.
    Just use Pages '09, which should be in your Applications/iWork folder.
    Rate/review Pages 5 in the App Store.
    Peter

  • How do i mail merge with the new Pages and Numbers?

    How do I mail merge with the new Pages and Numbers?
    On Pages 09 I have a document that draws variable data from a spreadsheet created in Numbers.
    With the new Pages and Numbers program update, my links are lost and I am unable to see how to correct this.

    Thanks Peter,
    very disappointing.
    My Pages 09 keeps opening in the new one.
    I dont think they want me to be a loyal customer anymore.
    They changed Final Cut Pro, so now I use Premier Pro
    Aperture 3 has been left behind so now I moved to Lightroom 4.
    And now Pages 5 does not have a vital component, so back to Word.
    Sad day
    Thanks again

  • How to use glob search with the wildcard in command find?

    How to use glob search with the wildcard in command find?
    I want to find any file its names begin with "readme" string using command find. Why the following command cannot work?
    $find /usr/share/doc -name readme*
    However, the following commands can work?
    $find /usr/share/doc -name readme\* or
    $find /usr/share/doc -name readme'*'
    I want to know: After using the “\” or ' ', why the wildcard do not become a character "*"?(still a metacharacter).
    Another question:
    I want to find any file its names begin with "readme*" string using the command find.What command should I use?

    I want to know: After using the “\” or ' ', why the
    wildcard do not become a character "*"?(still a
    metacharacter). The backslash is known as an escape character. It means 'use the character value of the next character, not the special meaning' It is used in a lot of places such as command line, global regular expression patterns, and editors such as vi.
    In a typical shell, the splat (*) expands to all file names before passing the file names to the current command. So a \* sequence tells the shell to pass a *, not a list of file names, to the command.
    Demo - OpenSuSE Linux 10.3
    - I have a bunch of files. Let's list those that end in grid. Create one called *grid, and list again
    pops@fuzzyVM:~/pops> ls 
    a  b  c  startgrid  stopgrid
    pops@fuzzyVM:~> ls *grid
    startgrid  stopgrid
    pops@fuzzyVM:~> ls \*grid
    ls: cannot access *grid: No such file or directory
    pops@fuzzyVM:~> touch '*grid'
    pops@fuzzyVM:~/pops> ls
    a  b  c  *grid  startgrid  stopgrid
    pops@fuzzyVM:~/pops> ls *grid
    *grid  startgrid  stopgrid
    pops@fuzzyVM:~/pops> ls \*grid
    *grid
    pops@fuzzyVM:~/pops>In the above, how would I remove the file *grid, and only that file?
    Another question:
    I want to find any file its names begin with
    "readme*" string using the command find.What command
    should I use?What were the results of the two versions you tried? And why?

  • My HDD crashed and I had to reinstall my boot and programmes on a new HDD.  I managed to recover my library.itl.  How can i import it with the new version of itunes? When i try imprt playlist, it replies that it is not a validly exported file.

    My HDD crashed and I had to reinstall my boot and programmes on a new HDD.  I managed to recover my library.itl.  How can i import it with the new version of itunes? When i try imprt playlist, it replies that it is not a validly exported file.

    It should be like the very first time you synced your phone with I-Tunes. It will notice you haven't synced before and just copy everything from your phone into I-Tunes. It shouldn't delete anything from the phone, at least it never has for me. It just puts a copy of everything into I-Tunes and even if you delete an app for example from your phone and you decide you want it back later, you can just go back into I-Tunes and copy it back over. Hope this helps.

  • My macbook pro got so many scratches and dents, i just want to know that how i can replace it with the new one?

    my macbook pro got so many scratches and dents, i just want to know that how i can replace it with the new one?

    Sell the Old one... Buy a New one...

  • My external drive is full, how do I piggyback it with a new external hard drive?

    My old external hard drive is full. How do I piggyback it with a new external hard drive? I am thinking of getting. 2tb western digital my studio for Mac.

    Your iMac has four USB ports. If the new drive is also USB, just plug it into one of the unused ports.
    Your machine also has a Firewire 800 port. If it is unused, you can connect a new external firewire drive to it.
    Note - if you plan on using the new drive for booting (backup or emergency), such as by partitioning it and cloning your internal drive to one of the partitions on it, strongly suggest you go with a firewire drive.
    In either case, firewire or USB, it's best to get a drive which has its own power supply.

  • HT204266 How do I update apps with the new version of itunes

    How do you update apps with the new version of Itunes ?

    If you're at the iTunes store, click on Library button at the top right. Then on the top-left side click on Apps and at the bottom right click on Check for updates.

  • I lost my pc how to sync my iphone with the new pc

    i lost my pc how to sync my iphone with the new pc

    See if this helps you - https://support.mozilla.com/en-US/kb/Lost+Bookmarks
    See if you can restore one of the ten bookmark backups on the old PC.

  • Im switching email accounts on my itunes account am the computer isnt recognizing purchases made from my other account on the new one (apps). How can I sign in with my new account and get the purchases apps on both accounts?

    Im switching email accounts on my itunes account am the computer isnt recognizing purchases made from my other account on the new one (apps). How can I sign in with my new account and get the purchases apps on both accounts?

    This was EXACTLY what I needed about the purchases I made from my device. However, is there a way to re-download other ones you've made from a computer? Because I realized some of them were not just purchased from my device.
    This is a picture of what it looks like now:
    http://tinypic.com/r/107quxu/7
    As you can see, the stuff circled in red doesn't give me an option to download from Cloud Beta because it already says "downloaded".
    any way to get around that?

  • HT201269 Where are the notes from my iphone backup and how can I sync them with my new macbook and ipad. And my galaxy 3g if someone is feeling especially generous with their time and attention. Many thanks.

    Where are the notes from my iphone backup and how can I sync them with my new macbook and ipad. And my galaxy 3g if someone is feeling especially generous with their time and attention. Many thanks.

    - The iTunes backup that iTunes makes included photos in the camera roll. If yo go to iTunes>Preferences>Devices what is the date of the backup? Is it when the photos were on the iPod? You have to restore from that backup.
    - What may have happened is that you backup the iPod after you restored the iPod but before restoring from backup. iTunes only keeps one backup and overwrites the previous backup with the changes.

Maybe you are looking for

  • How to Call Image Viewer from Form application

    Hi, how to call Image viewer using host command on oracle form 6i. i trying using host command on local/client application .. and it is working ... but when i try on server application (EBS - UNIX) it does not working ... thanks .. regards, safar

  • SAPSQL_ARRAY_INSERT_DUPREC Runtime error

    I am getting following error what could be the error please suggest me. Runtime Errors         SAPSQL_ARRAY_INSERT_DUPREC Exception              CX_SY_OPEN_SQL_DB Date and Time          18.08.2010 20:39:30 Short text The ABAP/4 Open SQL array insert

  • First sync is taking a long time

    I am attempting to sync my iTune to my new apple tv. To see how long it would take I synced one move over and it took over 15 minuets. I was wondering if that is normal or did I do something wrong. I am connected over an apple airport connection.

  • JDK 6

    Hi! I installed JDK 6 "mustang" and trying to get NEBEANS to use this JDK. ..... but when I re-install the IDE (5.0) ... it doesn't see (or list) this new JDK as a usable JDK .... only my existing JDK 5 version. It is installed right next to the old

  • SSD in a Macbook pro

    I want to put a ssd in my macbook pro 15in, do I need an OS X disk to do so, or can I just use my Time Machine Backups?