How to get 9AMATNR characteristic in SandBox SCM version??

Dear Expert,
I want to upload data from file to SAP BW in SCM SandBox version and i want to use 9AMATNR characteristic  as product dimension. But i can not see this characteristic as in IDES version.
please help me.
thanks a lot

Hi,
Even in sand box, you must have the standard 9AMATNR characteristic. If not, try to create the same in the transaction RSA1 and check if the system issues any error.
Regards,
Manimaran M.

Similar Messages

  • How to get item field values for old versions?

    I need to be able to query old field values from previous versions of items in a SharePoint list. I can't execute code on the server (it needs to work with SharePoint Online/O365 for a start).
    So far the ONLY API I've that lets me do this is the lists.asmx GetVersionCollection SOAP call.
    This lets me specify a single field name and returns an XML structure with the values for the various versions, along with the modification time and who made the change - but NO reliable way of actually identifying *which* version (i.e. an ID or label). That
    is, if I know I need to fetch the Title value from version 512 ("1.0") of item 1 in list "Documents", I don't see how to reliably parse the results to determine which entry is version 512. While they may be returned in order, in many cases
    the entries are actually missing when there was no field value present (or perhaps when the field hadn't been created yet). I've tried comparing the Modified date to the Created date of the corresponding FileVersion item (which I can get via CSOM or REST),
    and while it works some of the time, it's not reliable. I've also looked at the output from the lists.asmx GetVersion API but I don't see how that's useful either, as the Created property for all versions always seems to be just the date the file was originally
    created.
    It does seem odd to me that there's not a neat way of doing this - if I need to return information for several fields but just for a single version, I have to make a whole lot of requests that return far more info than I need, and then I need to figure out
    how to parse the returned text in the case of, say, multiple-value taxonomy fields etc.
    Anyone tried doing anything similar here?
    Thanks
    Dylan

    try these links:
    https://support.office.microsoft.com/en-us/article/Track-and-view-version-information-for-SharePoint-list-items-2d69d936-fb0b-4c84-830e-11708e6ec317?CorrelationId=f87cf6ea-8cbf-446a-a4a0-e2c3a86b3425&ui=en-US&rs=en-US&ad=US
    https://social.technet.microsoft.com/Forums/en-US/e48ff216-7ed1-4b20-9f21-d496b1583eea/how-to-get-item-field-values-for-old-versions?forum=sharepointdevelopment
    http://sharepoint.stackexchange.com/questions/20019/get-meta-data-from-a-previous-version-of-a-document-through-webservice-in-moss-2
    http://sharepoint.stackexchange.com/questions/121594/getting-information-from-previous-versions-of-a-sp-list-using-csom
    Please mark answer as correct if it is correct else vote for it if you find it useful Happy SharePointing

  • When we run query how it gets the characteristic values and attributes.

    Hi,
    When we load transaction data it chacks characteristic values then SIDs then DIM IDs then insert  DIM IDs into fact table but when we run the query how it checks and gets the characteristic values and attributes.
    Bye
    GK

    when we run the query how it checks and gets the characteristic values and attributes.
    Just the opposite way you have described. It gets from the corresponding masterdata tables, with the connected SID.

  • I am getting ready to wipe a PC clean but wanted to know how to get the activation code for the Version of Adobe reader that is currently installed on the PC?

    I do not have the activation code for this PC and need to know how to get the software loaded back on it after a clean install of the OS and other programs.

    If you use any additional subscription services to Adobe Reader, they are activated with your Adobe ID & password.

  • How to get Document type , number , part and version from mm01

    Hi ,
    Can you help me out so that i can able to get the document type , number , part ,version from mm01. Iam using exit EXIT_SAPLMGMU_001 but i was not able to get those details inside the parameters . I not able to get any values inside wmara parameter. ?
    Regards,
    Sivaganesh

    Hello Siva,
    Try with the below 2 BADI's
    BADI_MM_MATNR
    BADI_MATERIAL_CHECK
    Regards,
    TP

  • How to get logic to save a crashed version???

    Hi. Logic keeps crashing when i do things like move loads of audio a few bars later but never seems to save a crashed version. How do i make sure that a crashed version is saved everytime this happens?
    Thanks, Ben

    which version of Logic do you have?

  • How to get record which is having more version

    Hi,
    I have table A like below
    id nchar
    revision intgeger
    version varchar2
    id revision version
    1 1 1.0
    1 2 2.0.1
    1 3 1.1
    1 4 2.0.1
    1 5 1.1
    2 6 1.0.1
    I need to write a query to get the result like
    id revision version
    1 4 2.0.1
    2 6 1.0
    i.e for each id, get the maximum version's, max revision from table,
    id, revision are primary key
    By
    Siva

    Peter vd Zwan wrote:
    You can use the row_number function like this:Not unless revision is comprised of single digit parts. Just change revision for id=1, version=1 from 1.0 to 10.0:
    SQL> with t as (
      2             select 1 id,1 revision,'10.0' version from dual union all
      3             select 1,2,'2.0.1' from dual union all
      4             select 1,3,'1.1' from dual union all
      5             select 1,4,'2.0.1' from dual union all
      6             select 1,5,'1.1' from dual union all
      7             select 2,6,'1.0.1' from dual
      8            )
      9  ,t2 as
    10    (
    11    select
    12      id
    13      ,revision
    14      ,version
    15      ,row_number() over (partition by id order by version desc, revision desc ) rn
    16    from
    17      t
    18    )
    19  select
    20    *
    21  from
    22    t2
    23  where
    24    rn = 1
    25  ;
            ID   REVISION VERSI         RN
             1          4 2.0.1          1
             2          6 1.0.1          1
    SQL> with t as (
      2             select 1 id,1 revision,'10.0' version from dual union all
      3             select 1,2,'2.0.1' from dual union all
      4             select 1,3,'1.1' from dual union all
      5             select 1,4,'2.0.1' from dual union all
      6             select 1,5,'1.1' from dual union all
      7             select 2,6,'1.0.1' from dual
      8            )
      9  select  id,
    10          revision,
    11          version
    12    from  (
    13           select  t.*,
    14                   dense_rank() over(
    15                                     partition by id
    16                                     order by regexp_replace(
    17                                                             '00000' || replace(
    18                                                                                version,
    19                                                                                '.',
    20                                                                                '.00000'
    21                                                                               ),
    22                                                             '\d*(\d{6})',
    23                                                             '\1'
    24                                                            ) desc,
    25                                              revision desc
    26                                    ) rnk
    27             from  t
    28          )
    29    where rnk = 1
    30  /
            ID   REVISION VERSI
             1          1 10.0
             2          6 1.0.1
    SQL> SY.

  • How to get the forecast data from SCM into BW

    Hello,
    Is there a table or Function module in SCM F&R  that can be used  to transfer the forecast data from SCM F&R into BW? I dont see any Business content datasources that has the forecast data.
    I would like to get the future forecast data. For ex, if there is a forecast for a material and Site for the next 52 weeks, I would like to retrieve
    the same from SCM. I dont see any business content. The closest would be 0FRE_ANA_WEEKLY_1. But it has only the past data, not the future data.
    Thanks,
    SBS.

    Hi,
    You would follow the same process as you would for getting data from a R3 system to BW, i.e generate datsources on the APO side and then set the extraction to flow from APO to BW. On the BW side, you'll need a source system for the APO, replicate datsources, set up update and transfer rules in the infosource and then load data to the data targets.
    Cheers,
    Kedar

  • How to get informed about new features and version...

    Hello,
    I used to get informed on skype when a new version is launched, but now I dont. I noticed it when I delete skype and re-install again from the site for a reason. Also I want to learn about the new features via e-mail. What should I do?
    Regards

    To manually check for new updates, you can click the Check Update option in the Help menu in the Skype software window.  Then if there are new versions released and you want to know what new features are added in that release, you can check the Skype Blog's Garage section - 
    http://blogs.skype.com/category/garage-updates/
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • How to get files with no checked in version from library that has exceeded the threshold limit

    I have exceeded the threshold limit for library, when I click on "Manage files which have no checked in version"
    I get error that threshold limit has been exceeded for library, so I am not able to use this option.
    Please let me know if there is any workaround or script that can be used to get this done.
    or if we can modify the view with some query

    Hi niles, Here is a page that details how to retrieve all the files and take ownership of them via powershell to check them in:
    http://www.demantprasad.com/2013/05/manage-files-which-have-no-checked-in.html
    Mathieu Desmarais http://www.matdesmarais.com/

  • How to get iMessage on an older iOS version?

    my friend is running iOS 4.3 and she wants to use iMessage, not any other third party app like iMessage, and without having to update because she doesn't have enough free space for the latest update. I have read in places that you can use iMessage on iOS 4 and later. She has FaceTime and says she any find the iMessage icon, so how does she get it, if it's possible? Thanks

    To run iMessage on an iOS device, you need to update to iOS 5 or later. I suppose it's possible to run it on an older OS with a jailbreak, but you'll have to look beyond these forums for that info.
    Has your friend looked at what is taking up all of her space? She might be able to delete an app or two that she's not using. It's not just music and videos that take up space; sometimes apps eat up a lot of data.
    See Settings --> General --> Usage. This will show you how much data is being used by each app.

  • How to get the customized page's xml version ?

    Hi All,
    I have created some fields (of style 'MessageChoice', 'MessageLovInput') through personalization in a page and after that i navigated to the middle-tier where our MDS repository holding all the page's source file (in form of XXXXPG.xml) to get the updated version of the same page in xml version.
    But i couldn't get the latest version of page's XML file instead i found the old standard file only.
    Please help me in getting the file and guide me the path if it got stored somewhere in the architecture.
    Thank You,
    Thiyagarajan

    Dear Anoop,
    Thanks for your immediate response.
    Could you please pour your ideas how to store the custom personalizations in Unix box through Functional Administrator responsibility ?
    And one more question is as you said it will be stored in the form of xml but i have searched the page in the middle tier where it(standard one) got stored, but unable to find any one. How to find the xml file after doing the personalizations and in which path ?
    Waiting for your reply.
    Thank You,
    Thiyagarajan

  • How to get info about updates' repo and versions, including AUR pkgs

    I'm writing a little tool in python that checks for updates and displays notification in gnome about available updates. I'm doing this by syncing database to custom directory with:
    pacman -Syb /custom/dir
    and then getting list of updates with
    pacman -Qub /custom/dir
    I do it this way because I don't want to sync my real pacman database until I'm actually installing or updating packages. I then get current version and repo of the listed packages with:
    yaourt -Q | grep "list\|of\|packages"
    It's quite long and seemingly wasteful procedure, but an even bigger issue is that I don't know how to do the same thing with packages from AUR. Looking at the yaourt's man pages I see no option to sync database into a custom directory.
    Any suggestions?

    Camus wrote:
    The author of that blog post used cower instead of yaourt, but I don't think cower allows me to sync AUR database into custom dir either. Or am I missing something? I don't how yaourt and cower sync AUR database anyway.
    I actually already wrote such notifier for gnome in bash. But I want to display more info and I want to include AUR packages.
    The perfect tool in my situation would be something that allows me to sync official and AUR databases into custom dir and then displays list of updates with:
    -name of package
    -current version
    -updated version
    -repo
    I can currently do all of the above, but just with official repos and not as elegantly as I want.
    Not sure what you mean by 'sync AUR database' (no such thing exists as it does for the binary repos), but cower will let you download to wherever you want.

  • How to get the default values in new version ECC  6.0

    Hi Gurus,
    we upgrade 4.6c to 6.0 but in t.code spro we are missing some default values ( like condtion type, condition vaues) . Please tell me how can i get those standard default value in my new version.
    Thanks in Advance!!!!
    Regards,
    Kranthi.

    Hi
    Answer is pure assumption.
    Pls check OSS note - Note 217012 - Missing pricing Customzing after upgrade
    Pls take opinion from Basis team, if you want to implement the note
    Regards
    MD

  • How to get drop shadow text in windows version of LabVIEW 2009

    In the lower left corner of the attached JPG you can see that "Instrument Cluster" has a drop shadow.  I created it by accident and would like to use drop-shadow for control names, but I cannot figure out how I did it. The only "Style" options in my Text Properties drop-down menu are Plain, Bold, Italic, Underline, Outline and Strikeout.
    The Help file implies that it can be done in MAC OS. I just did it in Windows.
    Does anyone know how? 
    Solved!
    Go to Solution.
    Attachments:
    Instrument cluster.JPG ‏21 KB

    Drats!  An artifact. 
    I guess it is floating because I typed it on a boundary?
    Thanks for the tip.  As Nick Danger would say, "You saved me a lot of investigative work, flatfoot." 

Maybe you are looking for

  • How do I decrease the size of my desktop view?

    I accidentally hit a few keys and my desktop view zoomed in. Don't know how to get it back to the correct size. HELP!

  • I have duplicated my entire itunes Library!! help!

    Problem: I recently transfered my library to an external hard-drive, however, in the process I screwed up and duplicated each song. My library doubled in size. Question: Is there a command in itunes that deletes duplicate songs? I know that itunes ca

  • How to switch between views in iPhone SDK

    I have been tasked to learn the iPhone SDK. I know Actionscript, Javascript and some Java, but I cannot understand the iPhone SDK at all. I cannot understand the syntax or how the multitude of files work together. Also, there are no tutorials for com

  • JBO-27122 java.sql.SQLException: Invalid column type

    Dear All I extended an standard LOV view object and added 2 where clauses. Where clauses are working very good but problem is when I submit any criteria fist time and press GO button its working if I put 2nd time criteria or just press GO Button it s

  • Photo and video

    My ipad2 can not play .mov movie file when I transfer them via memory card reader from my camera? Very disappointing that was the only reason I bought my iPad 2 to have my photo and video on my iPad. Photo is no problem but too small when you want to