2lis_11_VAHDR - Vbeln needs to be matched? 0SD_C03

Hi All,
I am extracting sles oder header data through the data source 2LIS_11_VAHDR. The data source has VBELN and where as I know it is mapped to 0doc_number in BW.
But the infocube does not have a field 0doc_number.
Please guide whom should I map VBELN with in 0SD_CO3.
Thanks & Regards,
A

Hello,
Infocube 0SD_C03 doesn't have 0DOC_NUMBER in it, content version is suppossed to display aggregated data.
Nevertheless you can add new dimension to 0SD_C03.
Use high cardinality if you want to add 0DOC_ITEM as well and line item dimension if you just want do add just 0DOC_NUMBER.
Then activate the cube and maintain update rules.
You'll need to reload data to get document numbers history. 
BR
Ondrej

Similar Messages

  • I need to disable Match Services - but my iTunes crashes when I try to load it. How do I get Apple Support to disable it on my behalf?

    I need to disable Match Services - but my iTunes crashes when I try to load it. How do I get Apple Support to disable it on my behalf?

    Hi axostech!
    Here is an article that will help you troubleshoot this issue with your iTunes crashes so that you can adjust your iTunes Match settings as you desire:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Thanks for being a part of the Apple Support Communities!
    Cheers,
    Braden

  • Help needed with pattern matching (analytics SQL ?)

    Hello Forum Users,
    I've got a curious problem on my hands that I am unable to think of an efficient way to code in Oracle SQL ....
    (1) Background
    Two tables :
    MEASUREMENTS
    ID NUMBER
    M1 NUMBER
    M2 NUMBER
    M3 NUMBER
    M4 NUMBER
    INTERESTING_VALUES
    ID NUMBER
    M1 NUMBER
    M2 NUMBER
    M3 NUMBER
    M4 NUMBER
    (2) OUTPUT NEEDED
    For each row in "MEASUREMENTS", count the number of matches in "INTERESTING_VALUES" (all rows). Please note that the matches might not be in the same column.... e.g. for a given row MEASUREMENTS M1 might match INTERESTING_VALUES M3.
    I need to count 2,3 and 4 matches and provide the count values seperatley.
    I am not interested in fuzzy matching (e.g. "greater than" or "less than"), the numbers only need to match exactly.
    (You can use features up to 11g).
    Thank you for your help.

    yup here you go...
    SQL> select * from measurement;
            ID         M1         M2         M3         M4
             1         30         40        110        120
             2         12         24        175        192
             3         22         35        147        181
    SQL> select * from interesting;
            ID         M1         M2         M3         M4
             1         16        171         30        110
             2         40        171         30        110
             5        181        147         35         22
             4        175         12        192         24
             3        175         86        192         24
    SQL>  SELECT id,
      2    SUM(
      3    CASE
      4      WHEN LEN=1
      5      THEN 1
      6      ELSE 0
      7    END) repeat2,
      8    SUM(
      9    CASE
    10      WHEN LEN=2
    11      THEN 1
    12      ELSE 0
    13    END) repeat3,
    14    SUM(
    15    CASE
    16      WHEN LEN=3
    17      THEN 1
    18      ELSE 0
    19    END) repeat4
    20     FROM
    21    (SELECT id,
    22      spath   ,
    23      (LENGTH(spath)-LENGTH(REPLACE(LOWER(spath),',') ))/ LENGTH(',') LEN
    24       FROM
    25      (SELECT t.* ,
    26        ltrim(sys_connect_by_path(cvalue,','),',') spath
    27         FROM
    28        (SELECT p.*,
    29          row_number() over (partition BY id, id1 order by cvalue) rnum
    30           FROM
    31          (SELECT m.id,
    32            m.m1      ,
    33            m.m2      ,
    34            m.m3      ,
    35            m.m4      ,
    36            (SELECT COUNT(*)
    37               FROM interesting q
    38              WHERE q.id=I.id
    39            AND (q.m1   = column_value
    40            OR q.m2     =column_value
    41            OR q.m3     =column_value
    42            OR m4       =column_value)
    43            ) cnt              ,
    44            column_value cvalue,
    45            i.id id1           ,
    46            i.m1 m11           ,
    47            i.m2 m21           ,
    48            i.m3 m31           ,
    49            i.m4 m41
    50             FROM measurement m                   ,
    51            TABLE(sys.odcinumberlist(m1,m2,m3,m4)),
    52            interesting I
    53         ORDER BY id,
    54            id1     ,
    55            cvalue
    56          ) p
    57          WHERE cnt=1
    58        ) t
    59        WHERE level        >1
    60        CONNECT BY prior id=id
    61      AND prior id1        =id1
    62      AND prior rnum      <=rnum-1
    63        --start with rnum=1
    64     ORDER BY id,
    65        id1     ,
    66        cvalue
    67      )
    68   ORDER BY 1,2
    69    )
    70  GROUP BY id
    71  ORDER BY 1;
            ID    REPEAT2    REPEAT3    REPEAT4
             1          4          1          0
             2          9          5          1
             3          6          4          1I am posting the code without number formatting so that it gets easier for you to copy the code...
    select id,sum(case when len=1 then 1 else 0 end) repeat2,sum(case when len=2 then 1 else 0 end) repeat3,sum(case when len=3 then 1 else 0 end) repeat4 from
    (select id,spath,(LENGTH(spath)-LENGTH(REPLACE(LOWER(spath),',') ))/ LENGTH(',') len from
    (select t.*
    ,ltrim(sys_connect_by_path(cvalue,','),',') spath
    from (select p.*,row_number() over (partition by id, id1 order by cvalue) rnum from (SELECT m.id,
        m.m1      ,
        m.m2      ,
        m.m3      ,
        m.m4      ,
        (SELECT COUNT(*)
           FROM interesting q
          WHERE q.id=I.id
        AND (q.m1    = column_value
        OR q.m2     =column_value
        OR q.m3     =column_value
        OR m4       =column_value)
        ) cnt              ,
        column_value cvalue,
        i.id id1           ,
        i.m1 m11           ,
        i.m2 m21           ,
        i.m3 m31           ,
        i.m4 m41          
        FROM measurement m                     ,
        TABLE(sys.odcinumberlist(m1,m2,m3,m4)),
        interesting I
      order by id,id1,cvalue
      ) p where cnt=1
    ) t where level>1
    connect by prior id=id and prior id1=id1 and prior rnum<=rnum-1
    order by id,id1,cvalue) order by 1,2) group by id order by 1Ravi Kumar
    Edited by: ravikumar.sv on Sep 15, 2009 3:54 PM

  • Need to move my iTunes account from UK to the US and getting a message that I need to cancel Match.

    I have moved to the US and want to switch my iTunes account from the UK store to the US to get geo restricted content and start paying in dollars.  But I'm getting a message that I need to cancel iTunes Match first.  I just signed up a month ago so don't want to throw money away just to switch to iTunes Match in the US.  Would appreciate any thoughts on how to "transfer" my Match service.

    same thing here but i wrote to apple and told them i didnt care cancelling my itunes match account so that i could change country, and they told me it wasnt possible, that i had to wait a hole year for the subscription to end..

  • In af:query component , need to make Match option invisble

    Hi,
    i am using af:query component and do not want to show the Match with radio button options (All, Any).
    Can anyone suggest how to achieve this.

    You use view criteria, as this is what af:query is for. You use 'All queryable Attributes' which is an implicit view criteria.
    There is no easy way (I don't know one) to remove the 'Match all/any' radio button other than the way Luc described. In your case you have to build a view criteria like the 'All queryable Attributes' to get to the switch in the UI hint tab of the view criteria.
    To do this you create a new criteria and add all attributes you want to one group without specifying and literal or bind variable and use an operator like StartWith for strings and equal for numbers. Then uncheck the 'Show Match all Any' checkbox and use this view criteria for your af:query.
    Timo

  • Do I Need to Delete Matched Songs 256kbps?

    I've read all over this forum and still cant get a "clear" understanding. ITunes has matched thousands of songs in my library. Itsays 'matched" and the bit rate says 256kbps. Do I then have to delete and redownload these very songs (that are already matched at 256) ? If so I will be lost...I've done it to some albums and it still say matched at 256....Thanks!

    It's completely up to you. If you imported them at 256kbps AAC then I don't really see a point in deleting them and downloading Apples version as the quality should be identical.

  • Need help on matching two 23" ACDs

    I currently have two 23" ACDs connected to one ATI Radeon 4870 in my Mac Pro. My problem is the brightness and color on the displays vary greatly to the point that it is easily noticable by the naked eye. Is there anyway to calibrate the two monitors to match each other using only one video card. I have a HueyPro, but it wants me to adjust contrast on the monitors so I'm assuming it was built for a PC monitor. Any help is greatly appreciated.

    No way. It's genuine cryptography and there is no way to derive the original serial number from an install's activation key. You can only deactivate all installs and then reactivate them based on a list. Otherwise you can simply try to find a free activation from one of your serial numbers...
    Mylenium

  • Help needed using ITunes Match for Music and freeing up space on IPad?

    I have moved my music from IPad to ITunes Match Cloud.  I find that it is just copied there and is still on my IPAD.  I am trying to free up space on my IPad so do I delete the music on my IPad, or do I delete the music on my IMac and sync to remov

    King Penguin's advice is always sound, spot on and he has really give you the best all around solution for what you want to do....but you can also delete your music directly from the iPad and download it again when you want it again. These days, not all people use iTunes with their iPads and many iPad owners dont even own computers. I assume that you do have a computer running iTunes since you asked about iTunes Match, but since you didn't know how ITM works, maybe you don't own a computer, so I'm just offering another alternative.
    You can go to Settings>General>Usage>Manage Storage>Music and remove music in there via the Edit button as well as swiping across songs or albums in the music app in order to get the red delete button. If you want to download the music again, just go to the purchased tab of the iTunes app, tap on Music, Not on this iPad and all of your purchased music will appear. You can also go to Settings>iTunes & App Store>Show All Music>on. That will make all of your music in the cloud appear in the music app and you can tap on the cloud icon in order to download the songs again.
    The only caveat to this solution is that of the music is no longer available in the iTunes Store, you cannot download it again. On occasion, things do get removed from the iStores, so it is possible that could happen.
    Download past purchases

  • Need help with matching the color. Please help

    I did the face-swap but it didn't turn out well. The hair color looks weird. It's light brown anddark brown. Also, the face color are dfferent. I want somebody to help me fix it. I want it to look real. I will send the photo the message. It's for my friend's birthday. Please help. Thanks.

    Please post the image/s on this Forum, otherwise providing pertinent advice would be difficult.

  • HT1209 do i need the match that is 24.95 dollars to transfer music from a ipad to the computer

    do i need to buy match that is 24.95 dollars to transfer music from i ipad to a computer

    No. It won't help. iTunes Match catalogues an existing iTunes library on a computer not an iOS device.
    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Need help in creation of query

    Hi Experts,
    Can you please let me know, how to create a query for the following requirement .. I have a XXX -DSO, on which i have to take no of records for the particular date of loading for company code & account document type ...
    Please let me know ASAP ..
    Thanks & Regards
    PT

    Hi,
    I am trying to understand your requirement.  Are you trying to get the count for the day with respect to company code and document type?
    Do you need count which matches both the company code and document type?
    Regards.
    Shanker

  • HT204053 I have an iPhone 4S and the new Apple TV, both setup with my email as the Apple ID.  I gave my wife an iPad 3 and set it up using her email address as the Apple ID.  Is a second iTumes Match subscription required for her to use our music from iCl

    I have an iPhone 4S and the latest Apple TV, both setup with my email address as the Apple ID.  I subscribed to iTunes Match so our music could be played from iCloud.  I gave my wife an iPad 3 and set it up using her email address as the Apple ID.  When I try to turn on iMatch so she can play our music from iCloud on her new iPad it tells me that she needs a subscription to iTunes Match.  Is it Apple's intent that we would need two iTunes Match subscriptions?  If not, how do I accomplish what I want to get done?

    The problem is that all services are bundled with your Apple ID ([email protected]):
    Your iCloud account (Mail, Contacts, Calendars, Reminders, Notes, Backups, etc.),
    also iTunes & App Store purchases (Music, Movies, TV Shows, etc.),
    and the iTunes Match services.
    (I guess that all your devices - yours and your wife's are connected to one iTunes library, right?)
    If you want that your wife gets her own iCloud account for Mail, Contacts, Calendars, etc. but gets also access to your media then you have two set up two things on her device:
    iCloud (Settings > iCloud) with her account (e.g. [email protected])
    and
    iTunes & App Stores (Settings > iTunes & App Stores) with your account (e.g. [email protected]).
    In this case she gets access to your library and could use the same iTunes Match account.
    (See also: Using one Apple ID for iCloud and a different Apple ID for Store Purchases http://support.apple.com/kb/HT4895)

  • ITunes Match keeps repeating and Sonos Play 5!

    So this note has two pieces to it, one related to iTunes Match and the other is Sonos Play 5.   First an observation about the iTunes Match repeating problem.  I wanted to start using iTunes Match for a couple of reasons so I started to run it. It went through Step 1 and Step 2, started Step 3, stopped and restarted on Step 1. 
    So I was reading trying to find a solution in the Apple Support Community.  Some suggested that there was a corrupted song in the library so I went back to watch to see if I could catch when it left Step 3 to go back to Step 1. I was not really able to see exactly were it was reverting back to Step 1. 
    I then discovered ajlewis1851 note about reset Match, Store and the computer (https://discussions.apple.com/message/20530276#20530276)
    I also discovered a song that was not in my library so I deleted that from the library as well.  Neither of these seemed to work and it was back repeating itself.
    I left Match running while I was doing more searching and I discovered the thread about gating the upload speed as the upload speed might be the problem.  Well I spent a long time trying to figure out how to slow my Airport Extreme Base Station down and then I noticed that Match was uploading between 2-15 files before it would kick back to the beginning and the total number of files to be uploaded was slowly decreasing. 
    Low and behold after quite some time, Match finally finished and said it was done!  This has to be some serious bug in Match, but eventually it got done.  Not sure whether the two steps before helped or not.
    Now to the beginning of the story.  I started down this path because I was setting up a new iPod Touch to serve as controller for my new Sonos Play 5 system.  Everything seemed to work fine with Pandora and I was very excited. Synced a few playlist from my iTunes library and for many of the songs there was the dreaded ‘unplayable icon”-circle with a line through it!  Did some additional searching and discovered that the iPod Touch to Sonos Play 5 was only possible with DRM songs.
    This is an aside.  It is necessary to place this discovery against my experience of playing my iPod thru a Sonos iPod Dock without having to worry about the DRM status of the music.  My disappointment was nearly overwhelming.
    But Sonos recommended a strategy of iTunes Match to remove the DRM from the songs in my library.  Hence, my need for iTunes Match from the beginning of this story.  But this is not a very clean solution.  Even after one has done the iTunes Match, it is necessary to find all of the ‘Protected AAC audio files’ in your library, delete them and then download the ‘Purchased AAC audio files’ from the cloud.  (https://sonos.custhelp.com/app/answers/detail/a_id/626) and Apples directions (http://support.apple.com/kb/ht1711)
    There are of tricks in doing this ‘Protected’ to ‘Purchased’ transition.  When you select Music in your library, and then right click on the top bar above the music you can select additional columns to be shown. Select ‘Kind’ and you can see which music is protected vs purchased.  You can sort this column, thus bring all of the ‘Protected’ files together, select them all and with one right click delete them!  (I very very strongly recommended you have a couple of backups of your library, just in case and there is a small box in the dialogue about deleting them from the Cloud as well---MAKE SURE THIS BOX IS NOT SELECTED). Much to my delight, in the ‘Cloud’ column, you are presented with the choice to download the ‘Cloud’ version (now DRM free).  As best as I can tell, one has to download each song from the Cloud individually. My fingers were very tired after millions of clicks.  I did a few at a time so it took me the better part of a day to accomplish. 
    I was very excited because I now had DRM free music in my library (I figured this would solve the problem).  I connected the iPod Touch to the library, choose not to sync my playlist so all the playlists from the iPod Touch were removed and then reselected the playlists of interest and had them placed back on the iPod.  I ejected the iPod and tested the playlist on the Sonos.  Much to my surprise, the unplayable songs were still unplayable!!! 
    I deleted the Sonos App and reinstalled it (Did not work). 
    I deleted the playlist from the iPod Touch, and resync it to my library (You really don’t want to do this as it also deleted the playlist from my library!)  Fortunately, I had one of those backups.
    I then sync another playlist to the iPod Touch.  This second playlist was the complete album from which two songs were placed in the original problem playlist.  Much to my surprise, all of the songs from the album were fine, EXCEPT, the two songs that were unplayable in the original playlist.
    I finally came to the conclusion that something had been stored on the iPod during the initial sync with the DRM containing music that prevented the non-DRM music from working properly.  With a deep breath, and only after I disable the iPod Touch connection to iCloud (in a couple different places), I then went to Settings > General > Reset > Erase All Content and Settings and ran it to restore original factory settings. It was plugged into a power source.
    After setting the iPod Touch up again, I reconnected it to my iTunes library and moved the problem playlist over that contained several unplayable songs.  IT WORKED!  All the songs were playable.
    LESSONS: 
    1. If iTunes Match keeps repeating steps 1 and 2 watch carefully to see if the number of songs to be processed is changing for the better.  If yes, at least in my situation, it completed the process, but it took much longer than I believe it should have.
    2. My suspicion is that if you have installed DRM protected songs on an iPod Touch, the Sonos recommended solution will not work as stated.  Interestingly, it did seem work on my iPad and 4G iPhone. 
    Addendum: I have discovered a few songs where the Sonos recommended solution did not work on the iPad and iPhone as well.  Several are from the Madonna.

    Well.....It is now working....... Including converting locked tracks located on the IPad library into unlocked 256kbps tracks playable by Sonos...
    Used these steps:
    Signed up for ITunes Match using ITunes on a Windows PC
    Let Match do it's thing with 700 or so tracks
    Followed the procedure in the link above to create a smart playlist of tracks with bit rates less than 256kbps
    Using the smart playlist as a guide, I deleted or download tracks not appearing in Sonos on the PC. Then, refreshed the Sonos music library and confirmed these tracks now available and playable by Sonos
    On the IPad, for tracks that were grayed out in Sonos, I deleted and re-downloaded the tracks using the Music app (swipe right to left on a track to delete it)... then got into Sonos on the IPad to confirm the tracks no longer grayed out.
    So... I'm now happy.... I like the Sono system of WIFI streaming which is very flexible and produces decent sound quality, but did not realize until after buying the Sonos bridge and two Sonos speakers that older ITunes songs would not play in Sonos due to DRM locking.  So, will now work through the library of locked tracks converting and re-downloading.
    Thanks again for the pointers on this question.

  • Itunes match with two different libraries on two different computers with the same apple ID? How?

    I have a work PC that I synch with my itunes library and it works totally fine. I also have a macbook at home with a different library on it. Both compuers share the same apple id. will itunes match synch all the devices with the same library? If so do I only need one itunes match purchase or do I need one for each computer? The apple help desk (phone support) and apple store I recently visited were unable to provide me with answers to my questions.

    Just create a new account. On one iPod go to Settings>iTunes and App stores and sing out and sign in with other account. Same for Settings>iCloud and Settings Messages. Also go to Settings>Face time and add the new iD email addrss as the Caling email address and delete the other one.
    - Apps are locked to the account that purchased them.
    - To update apps you have to sign into the account that purchased the apps. If you have apps that need updating purchased from more than one account you have to update them one at a time until the remaining apps were purchased from one account.

  • Do I need to set AI colour profiles for use in ID?

    My previous set up:
    Mac
    CS2 (Illustrator, Photoshop, Bridge)
    Quark XPress 7
    My new set up:
    PC (Win 7)
    CS5 (Illustrator, Photoshop, Bridge, InDesign)
    My problem:
    I work for a company that prints newspapers, but my dept also does work for glossy sheetfed printers (magazines leaflets etc)
    All my work is exclusively CMYK.
    With my previous set up - I didn’t want to have to switch my colour profiles via Bridge as I was constantly juggling two types of jobs:
    Our tabloid press - Profile - ISOnewspaper26v4 (CMYK)
    Sheetfed Printers - Profile - ISO Coated V2 (Fogra 39) (CMYK)
    So I set my CS2 Suite colour settings to  ISO Coated V2 (Fogra 39) and set an action in Photoshop to convert jpegs / eps photos to ISOnewspaper26v4.
    So my CS2 working space was set for Sheetfed glossy publications and if I wanted to set a picture to the correct profile for newsprint I just had to open the picture and hit the action that applied the ISOnewspaper26v4 profile.
    Regarding Quark – I set up separate templates for each type of job:
    One for Profile - ISO Coated V2 (Fogra 39) and one for - Profile - ISOnewspaper26v4.
    Regarding Illustrator - I found that Quark 7 didn’t differentiate between Illustrator colour profiles, or if it did, it didn’t show up in ‘Usage’.
    If I went to Quark Usage and went to ‘Profiles’ it only listed the Quark profile and any Photoshop profiles, not any Illustrator profiles.
    So in Illustrator I just set colour profiles to ‘do not colour manage this document’. So that I only had to worry about changing profiles for Photoshop jpegs / eps’s.
    So I had a good little system going that served me well and now my company decided to move us to PC’s and CS5; and I still have the same problem – juggling newsprint jobs and glossy magazine jobs and not wanting to have to synchronise my CS suite colour settings every time I switch between jobs...
    So I was hoping to stick with my little system on PC / CS5.
    So basically my question is, do I need to worry about Illustrator colour profiles if I am bringing Illustrator files into InDesign? (To clarify, my Illustrator files are always pure vector, so there is no chance of some rogue RGB jpeg sneaking through on a Illustrator file)
    Im open to suggestions regarding my set up, but really would prefer not to have to keep switching my colour profiles.
    Any help would be greatly appreciated.

    First, I wasn't suggesting that your PDFs be exported to RGB, but it is a common workflow these days to keep photos in RGB until you convert them to the correct profile during the export process. This maximizes the potential for re-purposing your documents and allows you to use the same RGB photos for different output purposes without having to do separate CMYK conversions for each destination, so long as you don't need to do any tweaking after the conversion.
    And to answer your question, if the .ai files have no embedded color profile they will ALWAYS be considered to use whatever the CMYK working space is in your ID file, so the numbers will be preserved. This means that there will be slight differences in color on output on different devices (the whole point of color management, after all, is to preserve the appearance of colors by altering the numbers for the output device).
    Does the vector work you get from Thinstock come with an embedded profile? Is there any color that is critical for matching, such as a corporate color (which should be spot, but that's a different discussion), or do you use the same art in both the newspaper and magazine, and does the client expect a match (which we know isn't going to happen anyway)?
    If there's no embedded profile when you start, there's no way to know what the color was supposed to look like, so color management is not possible, really. You can assign a profile, but you'd be guessing. Since the correct appearance at that point is unknown continuing with out color management shouldn't present a problem. The only case where you would need to manage the vector art would be if the color APPEARANCE is critical or you need it to match across different outputs, and in that case you would need to assign a profile and allow ID to preserve the profile on import and remap the numbers, which means you would likely get rich blacks someplace. Since it's unlikely that you can get a good match going from glossy to newsprint, I probably wouldn't even try -- you wouldn't want, for example, to tag the art as newsprint, and have it print subdued on the gloss if it would look better or more correct with the other profile. Color management would be much more useful if you were going from sheetfed to web on the same stock.

Maybe you are looking for

  • That Apple ID is already in use.

    I just got my IPhone today, and I'm feeling a little ignorant here, but I cannot log into the app Find Friends.  It keeps telling me I have the wrong password, but I am using the correct password.  So I go to Iforget to attempt to figure out what is

  • "Error while printing" when sharing printer under 10.6

    This just started yesterday. When attempting to print from either of two other computers (both 10.4.11) to a printer (HP LJ 1160) connected via USB to a MacBook Pro (10.6.2), the print fails with the cryptic error message: "Error while printing." I h

  • X-Fi ExtremeMusic

    This board has alot of info available but I haven't been able to get a cohesi've picture of what I need to do to get my SB0460 to fully function (0-band EQ, etc.) under the Windows 7(x64) environment. Is there a diffiative list of what drivers/apps I

  • In fact it's about mac:excel, how convert in a cell a number written in text format into a value?

    in fact it's about mac:excel8 or 11 in OSX10.7.4, how convert in a cell a number written in text format into its value? cheers francois

  • Flash Player 10, mouse disappears

    Hello, My wife's new laptop (an Acer) is running Windows Vista Home Premium. She is using Internet Explorer 7. When she plays an online game that uses Flash (example, Neopets) her mouse will frequently disappear or vanish whenever she positions it ov