DataTipFunction  anyone get this to work??

I am trying to pass in some info using dataTipFunction when I
create a chart but the object being passed to Javascript is empty.
Anyone get this to work??
Eric Haskins

please define your problem exactly. du you get a compile error? a runtime error?
please use the code tags, and rename your static member Array to thomething else as a classname.
kind regards

Similar Messages

  • HT1203 It jus doesn't work...! Did anyone get this to work?

    I'm struggeling getting this to work: I want to share our music on 4 accounts on 1 iMac (Lion).
    Moved iTuned Media to /Users/Shared, changed the Preferences to reflect this, but the songs don't appear in iTunes.
    Anyone? Please?

    I had the same problem.  Even though it reads like a 2nd alternative, it is actually a continuation of the first step.
    To listen to another account's music files
    Open iTunes.
    From the iTunes menu, choose Preferences.
    Click Advanced.
    Deselect the option to "Copy files to iTunes Media folder when adding to library file."
    Click OK.
    From the File menu, choose Add to Library.Note: Windows users can also choose Add Folder to Library to add a folder of songs.
    In the window that opens, navigate to the location where the other user's music is saved (the iTunes Media folder in this example).
    Click Open.
    Repeat these steps for each account that is listening to shared music.
    When another user on the computer imports new music from CD, repeat steps 6 through 8 to add the music to your library."
    After you do this to each account, everything should work fine.

  • Outlook 2007 - Can anyone get this to work?

    Just wondering if anyone had success with this, it's really frustrating that the Oracle connector doesn't work with Outlook 2007.

    I've tried to get this to work on several machine configurations (Office 2007 with and with out Office 2003) using the latest Connector for Outlook on Windows XP and Windows Vista and was still unable to get it to work. I'm 100% convinced that Oracle needs to work on this ASAP and I'm even more astonished and perplexed that Oracle have not provided a solution for their customers. This has pushed me to the point where MSExchange, even Novell are being consider as a permanent alternative. Let's face it, Exchange does seem that they finally got their act together and offers a lot of flexibility for Mobility.
    I've spent about 80+ hours on this and have permanently given up until I hear back from the Oracle developers, who doesn't seem to have a solution readily available to give provide. I'm interested in anyone's comments about their conversations with Oracle.

  • [solved] graphlab / graphlabapi, anyone get this to work?

    edit3: I'm marking this as solved, as it basically seems to work for me for now. I decided not to upload the packages to the AUR because graphlab is broken with the current version of openmpi and depends on a libjson library that I'm not at all familiar with and nobody else here seems to use. If these aren't good reasons not to submit the packages I'll happily submit and maintain them. I'll maintain the PKGBUILDs on github for now https://github.com/sveitser/pkgbuilds .
    I'm trying to use graphlabapi ( www.graphlab.org ) on arch linux. I'm planning on using this quite a bit in the future so my goal is to create an AUR package eventually. I managed to build it successfully but the compiled application does not seem to work properly. I posted an issue on their google code page ( http://code.google.com/p/graphlabapi/is … tail?id=41 ), but was wondering if anyone here managed to get it to work.
    If anyone wants to give it a shot, AFAIK the following will install the necessary pacman dependencies:
    pacman -S --needed apache-ant jdk7-openjdk mercurial cmake openmpi
    edit: I also put a symlink named "python" to "python2" in my PATH before "/usr/bin" because otherwise the build system would detect python3 and the build failed at some point. Probably not a proper workaround but I think it seems to do the job for now.
    edit2: Found a way to tell cmake to choose python2. See below.
    Build instructions are basically:
    hg clone https://code.google.com/p/graphlabapi/
    cd graphlabapi
    ./configure -D PYTHON_EXECUTABLE=/usr/bin/python2
    cd release # or "cd debug" for quicker build using less RAM
    make -j 4
    The release build needs a lot of memory so they suggest not to use more concurrent make threads than the system memory in GB. I also run into the same issue if I build the debug build. The build takes a long time due to all the dependencies that will be installed locally. At the moment they don't seem to check for an existing boost installation on the "default" branch so boost will be installed locally even if it is available system wide.
    The tcmalloc dependency fails to build with glibc 2.16 so I patch the file
    deps/tcmalloc/src/libtcmalloc/src/base/linuxthreads.cc
    with respect to the graphlabapi base directory with
    196c196
    < static void SignalHandler(int signum, siginfo_t *si, void *data) {
    > static void SignalHandler(int signum, siginfo *si, void *data) {
    as suggested here http://code.google.com/p/gperftools/iss … akechanges and then run make again
    make -j 4
    Upon which the build succeeds. However when I try to run the examples or tests I mostly get no output and the programs just hang.
    I've been struggling quite a bit and any help or pointers would be greatly appreciated. Thanks!
    Last edited by sveitser (2012-07-24 06:39:18)

    edit: Unsetting CXXFLAGS before executing "make" seems to let the build complete. Not sure if that's a good idea but I 'think' cmake sets it appropriately anyway.
    After successfully compiling the package I created a PKGBUILD that I thought should work but it aborts on error during the "make" step. When I run "make" from a terminal in the corresponding directory the compilation succeeds.
    The PKGBUILD (also here https://github.com/sveitser/pkgbuilds/t … raphlab-hg ) is
    # Maintainer: Mathis Antony <[email protected]>
    pkgname=graphlab-hg
    pkgver=4197
    pkgrel=1
    pkgdesc="GraphLab is a new parallel framework for machine learning."
    arch=('i686' 'x86_64')
    url="http://www.graphlab.org"
    license=('apache')
    depends=('openmpi' 'python2' 'jdk7-openjdk' 'boost')
    makedepends=('cmake' 'mercurial' 'apache-ant')
    options=()
    source=(tcmalloc.patch)
    md5sums=('11bc88f68b4dcf214255a3b7de1f8ede')
    _hgroot=https://code.google.com/p
    _hgrepo=graphlabapi
    build() {
    cd "$srcdir"
    msg "Connecting to Mercurial server...."
    if [[ -d "$_hgrepo" ]]; then
    cd "$_hgrepo"
    hg pull -u
    msg "The local files are updated."
    else
    hg clone "$_hgroot" "$_hgrepo"
    fi
    msg "Mercurial checkout done or server timeout"
    msg "Starting build..."
    rm -rf "$srcdir/$_hgrepo-build"
    cp -r "$srcdir/$_hgrepo" "$srcdir/$_hgrepo-build"
    cd "$srcdir/$_hgrepo-build"
    ./configure -D PYTHON_EXECUTABLE=/usr/bin/python2 \
    --prefix=/usr
    cp "$startdir/tcmalloc.patch" patches/
    sed '/ExternalProject_Add(libtcmalloc/a \
    PATCH_COMMAND patch -N -p0 -i ${GraphLab_SOURCE_DIR}/patches/tcmalloc.patch || true' \
    CMakeLists.txt > CMakeLists2.txt
    mv CMakeLists2.txt CMakeLists.txt
    cd release
    unset CXXFLAGS
    make
    package() {
    cd "$srcdir/$_hgrepo-build"
    make DESTDIR="$pkgdir/" install
    and the tcmalloc.patch file
    --- src/base/linuxthreads.cc 2012-07-23 02:21:30.946086243 +0800
    +++ src/base/linuxthreads.cc 2012-02-03 05:36:23.000000000 +0800
    @@ -193,7 +193,7 @@
    /* Signal handler to help us recover from dying while we are attached to
    * other threads.
    -static void SignalHandler(int signum, siginfo_t *si, void *data) {
    +static void SignalHandler(int signum, siginfo *si, void *data) {
    if (sig_pids != NULL) {
    if (signum == SIGABRT) {
    while (sig_num_threads-- > 0) {
    The error I get when running makepkg is
    [ 27%] Performing patch step for 'libjson'
    patching file JSONOptions.h
    patching file makefile
    patching file Source/JSONDefs.h
    [ 27%] No update step for 'libjson'
    [ 28%] No configure step for 'libjson'
    [ 28%] Performing build step for 'libjson'
    makefile:173: *** recipe commences before first target. Stop.
    make[2]: *** [../deps/json/src/libjson-stamp/libjson-build] Error 2
    make[1]: *** [CMakeFiles/libjson.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    I think the problematic makefile is src/graphlabapi-build/deps/json/src/libjson/makefile. Line 173 is:
    170 # Usage check
    171 ifdef CXXFLAGS
    172 ifdef BUILD_TYPE
    173 $(error CXXFLAGS and BUILD_TYPE are mutually exclusive)
    174 endif
    175 endif
    but I'm thinking that if this were indeed to cause the error I should see the corresponding error message.
    Last edited by sveitser (2012-07-23 09:38:15)

  • Does anyone get this to work on WinXP?

    I found a bunch of threads on this topic, but none of the recommended fixes have worked for me.
    Here's my setup:
    The Mac is a Dual 867 G4 (MDD), running OS 10.4.5. Uses Airport to connect wirelessly to a Linksys 4-port WAP.
    The printer is an HP Laserjet 1300 connected to the Mac via USB. Printer sharing is enabled on the Mac, and the model is selected.
    The PC is running Windows XP Pro SP 2. All recommended updates applied. Connects via a Linksys USB Wireless to the same WAP. Had previously configured network printing from the XP machine to the Mac, but it was always an arduous task.
    I downloaded and installed Bonjour before removing the old queue. Ran the Bonjour Printer Wizard, which saw the printer. I selected the drivers already present, set it to the default printer, and got the "Error: You do not have sufficient access to your computer to connect to the selected printer" message.
    Found the KB article that told me to dump the old printer queue, and I deleted both the older icons for this HP printer. Still got the message. Remembering the wisdom of Dogbert, I shut-up and re-booted. Still get the message.
    Made sure I was running as administrator, and I am. Found a thread where someone suggested checking Administrative Tools > Local Security Policy > Local Policies > User Rights Assignment to see that "Load and unload device drivers" was present and available to Administrators. It is. Still get the error.
    Found another KB article that mentioned SP2 is a problem because it turns on Windows Firewall by default. So I went into that control panel, and added Bonjour as an Exception app, then created a new port TCP 5353 to open that up in the firewall.
    I still get the error.
    What else can I look at? What am I missing?
    And is "Bonjour" a re-christened "Rendezvous?"
    Thanks for any help...

    Hi Buzz_kill:
    I have Bonjour configured on my Windows XP SP2 machine and I'm able to connect and print to a shared printer on my Mac.
    In one of the KB articles, it suggests the following: For Service Pack 2 systems
    If you've installed Service Pack 2 on your system, you can use Bonjour for Windows to reconfigure the firewall automatically afterwards—you should not manually reconfigure this setting. To do this:
    1. Go to the Control Panel and click Add or Remove Programs.
    2. Select Bonjour from the list, then click Change/Remove.
    3. Choose Repair, then follow the onscreen instructions.
    If repairing doesn't resolve the issue, try uninstalling and reinstalling Bonjour.
    1. Go to the Control Panel and click on Add or Remove Programs.
    2. Select Bonjour from the list, then click Change/Remove.
    3. Choose Remove, then follow the onscreen instructions.
    4. Reinstall Bonjour for Windows by downloading the program from the Apple website, or install it from the media on which it came.
    The other suggestion that I have is:
    If you are using a router, you really don't need a firewall on any machine. To see if it's the firewall on your XP macnine that is causing the issue, turn off the Windows XP firewall. Sounds simple doesn't it, but to actually turn off the windows firewall, select it from your control panel, select Advanced, and uncheck all of the connects and click ok.
    Give that a shot and let us know how/if it works.
    Oh, Bonjour is the same client as before, it was just renamed due to naming issues.

  • Effect Pathfinder (Anyone get this to work??)

    I am trying to create BAGEL THIN in the style of DELI THIN in one editable appearance stack.
    Cyan is a dummy color to help troubleshoot this. Cyan is the shape I am trying to subtract out of the black dropshadow. None of the pathfinder commands work. The 2nd example is the result of using Minus Back.  Exclude, subtract don't work either and I tried moving these within the stack.

    How about two objects, both with live text?
    Object 1: White type with second fill below Characters. Second fill is black and has Effect > Distort & Transform > Transform with a horizontal offset of 4 pt. and vertical offset of 4 pt. Entire object has a warp effect.
    Object 2: Copy of object 1. Changed offset of shadow to 2 pt. for both horizontal and vertical. Added white fill at bottom with Effect > Convert to Shape > Rectangle, relative size with extra width and height of 6 points.
    Object 2 used as opacity mask on object 1.
    http://dl.dropbox.com/u/5005292/Deli_Thins.ai

  • Can anyone get this to work?

    I can get the following code to compile, but it won't execute. Will somebody tell me why?
    import java.io.*;
    class Array
    public static String[][] Array = {     {"Paris", "418", "Rome", "55"},
                             {"Liverpool", "121", "Copenhagen", "35"},
                             {"Liverpool", "418", "Paris", "50"},
                             {"Liverpool", "553", "Frankfurt", "55"},
                             {"Frankfurt", "553", "Budapest", "50"},
                             {"Amsterdam", "121", "Madrid", "65"},
                             {"Amsterdam", "418", "Paris", "35"},
                             {"Madrid", "121", "Stockholm", "90"},
                             {"Budapest", "553", "Warsaw", "30"},
                             {"Copenhagen", "121", "Amsterdam", "35"},
                             {"Rome", "418", "Amsterdam", "60"},
    // Start Method
    System.out.println("Welcome to NoWings Airline.");
    public void item1() {System.out.println("Start");}
    public void item2() {System.out.println("Fly");}
    public void item3() {System.out.println("Info");}
    public void item4() {System.out.println("Exit");}
    public void doMenu() throws IOException {
    BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
    boolean done = false;
    char answer;
    do {
    System.out.println();
    System.out.println("What do you want to do?");
    System.out.println(" 1 \t Start");
    System.out.println(" 2 \t Fly");
    System.out.println(" 3 \t Info");
    System.out.println(" 4 \t Exit");
    answer = (input.readLine()).charAt(0);
    switch (answer) {
    case '1' : item1(); done = true; break;
    case '2' : item2(); done = true; break;
    case '3' : item3(); done = true; break;
    case '4' : item4(); done = true; break;
    case 'x' : done = true; break;
    default : System.out.println(
    "Invalid option -- please try again");
    while (!done);
    }

    please define your problem exactly. du you get a compile error? a runtime error?
    please use the code tags, and rename your static member Array to thomething else as a classname.
    kind regards

  • Facebook like button is not working, I have used the muse widget and created code from facebook. Does anyone know how to get this to work?

    Facebook like button is not working, I have used the muse widget and created code from facebook. Does anyone know how to get this to work?

    Hi connally25,
    Below is a link to a video tutorial on how to add a Facebook Log button, please check if you have followed the same steps to add the video.
    http://tv.adobe.com/watch/learn-adobe-muse-cc/adding-a-facebook-like-button/
    If you have followed the steps correctly and the button still does not work; here is a link to a forum thread which might help solving the issue:
    Facebook Follow Widget not working
    Regards
    Sonam

  • I have a 4s iPhone which I loaded the new Os on last night. Now I can not connect to iTunes. A message comes up saying i need 10.6.3 or later but I am running 10.6.1 as I have an older Mac. Anyone have ideas how to get this to work?

    I have a 4s iPhone which I loaded the new Os on last night. Now I can not connect to iTunes. A message comes up saying i need 10.6.3 or later but I am running 10.6.1 as I have an older Mac. Anyone have ideas how to get this to work?

    Its not telling you to update your iPad, its telling you you need to download a recent version itunes on your computer.
    Go here to download the newest version of iTunes.
    http://www.apple.com/itunes/?cid=OAS-US-DOMAINS-itunes.com

  • HT201257 anyone actually get this to work with a machine with Lion pre installed? (mid iMac 2011)

    I tried getting this to work, but the machine just boots to the regular install.
    The system came with a BT keyboard, I hope Apple didn't overlook this problem.

    I just found out that the article lies about the keys to hold down.
    It's actually OPTION + D, not just D as the article states.
    *Come on* Apple.

  • ICal Server email invitations - how to test and get this feature working

    iCal Server email invitations - how to test and get this feature working
    Thanks Apple for introducing this nice little feature into iCal but then completely neglecting to write any sort of useful manual that can explain what to do when it doesn't work after you set it up for the first time.
    At long, long last we have finally got there after about 6 months of fiddling on and off, so I thought I had better post up the process since many have similar issues and it is hard to ascertain what is going on.
    Using an external email server was just a waste of time and it still wouldn't handle the replies properly even though it was supposed to handle '+addressing'. In the end I set up a special gmail account for the iCal server and finally got it working. I list here the process of configuring and testing the system to check that each little stage is working.
    Set up a Gmail account in Apple Mail to access and test in the usual way for any email account (e.g. [email protected].);
    Set the iCal server email to access the same email using the following settings:
    IMAP
    SMTP
    [email protected]
    smtp.gmail.com
    Port: 993 [x] Use SSL
    Port: 587 [x] Use SSL
    User & Pwd
    Login
    User & Pwd
    To test the settings:
    send out a test email from Apple Mail to a non-server email address that you can access to check it has been received;
    send out a test email from your non-server email account to [email protected] and check that it is received;
    this tells you that the GMail account is setup correctly and working
    Testing iCal:
    I noted that iCal was deleting any emails that arrive in the inBox in Apple Mail as soon as they arrived (this is to be expected);
    test that the invites are being sent from iCal by setting an event in iCal and inviting your non-server address (you may not see any sign of this in Apple Mail but you should catch it in the iCal server log and possibly in the Gmail sent mail box);
    check that the invite is received at your non-server account and Accept it in iCal on another machine - the reply is automatically sent back;
    the replies appear in Apple Mail but are quickly deleted by iCal. But their record for you to see is left in Gmail under 'All Mail';
    Accepted invites appear as a notification button on the top left hand bar on iCal where you click to acknowledge them and then the attendee is shown as a green circled tick instead of a grey circled ?.
    this shows that iCal invitations are working correctly. Whenever an event is updated, all invitees should be updated by email automatically.
    I hope this helps anyone - I could certainly have done with something similar when I started with looking at this.
    Anatole
    The Error and Access logfile in the Server app under iCal server are very useful in determining any errors. I got lots of imip errors when I didn't quite have the settings right. The port is critical and it won't tell you this is the problem if it fails.

    iCal Server email invitations - how to test and get this feature working
    Thanks Apple for introducing this nice little feature into iCal but then completely neglecting to write any sort of useful manual that can explain what to do when it doesn't work after you set it up for the first time.
    At long, long last we have finally got there after about 6 months of fiddling on and off, so I thought I had better post up the process since many have similar issues and it is hard to ascertain what is going on.
    Using an external email server was just a waste of time and it still wouldn't handle the replies properly even though it was supposed to handle '+addressing'. In the end I set up a special gmail account for the iCal server and finally got it working. I list here the process of configuring and testing the system to check that each little stage is working.
    Set up a Gmail account in Apple Mail to access and test in the usual way for any email account (e.g. [email protected].);
    Set the iCal server email to access the same email using the following settings:
    IMAP
    SMTP
    [email protected]
    smtp.gmail.com
    Port: 993 [x] Use SSL
    Port: 587 [x] Use SSL
    User & Pwd
    Login
    User & Pwd
    To test the settings:
    send out a test email from Apple Mail to a non-server email address that you can access to check it has been received;
    send out a test email from your non-server email account to [email protected] and check that it is received;
    this tells you that the GMail account is setup correctly and working
    Testing iCal:
    I noted that iCal was deleting any emails that arrive in the inBox in Apple Mail as soon as they arrived (this is to be expected);
    test that the invites are being sent from iCal by setting an event in iCal and inviting your non-server address (you may not see any sign of this in Apple Mail but you should catch it in the iCal server log and possibly in the Gmail sent mail box);
    check that the invite is received at your non-server account and Accept it in iCal on another machine - the reply is automatically sent back;
    the replies appear in Apple Mail but are quickly deleted by iCal. But their record for you to see is left in Gmail under 'All Mail';
    Accepted invites appear as a notification button on the top left hand bar on iCal where you click to acknowledge them and then the attendee is shown as a green circled tick instead of a grey circled ?.
    this shows that iCal invitations are working correctly. Whenever an event is updated, all invitees should be updated by email automatically.
    I hope this helps anyone - I could certainly have done with something similar when I started with looking at this.
    Anatole
    The Error and Access logfile in the Server app under iCal server are very useful in determining any errors. I got lots of imip errors when I didn't quite have the settings right. The port is critical and it won't tell you this is the problem if it fails.

  • I recently updraded the oporating system on my 4S phone and now I can't get my email.  I've rebooted several times to no avail. What should I do to get this thing working again?

    I recently upgraded my phone software to iOS 6 and now my email will not download.  I have tried to reboot the phone to no avail.  Anyone have any suggestions as to how I can get this phone working again?

    You can't merge the backups, you'll have to delete the backup of your old phone.  If it says it's currently in use when you try, that will normally clear up on its own but may take 3-5 days to do so.  Give it a few days and try deleting the old backup again.
    In the meantime, you can create a manual backup of your new phone on your computer by connecting it to your computer, opening iTunes, clicking on the name of your phone in iTuens, going to the Summary tab of your iTunes sync settings and clicking Back Up Now.  Also go to File>Devices>Transfer Purchases.  Then you'll be safe until you can start backup up to iCloud again.

  • Is anyone getting this message when trying to access Yahoo Email?  "Cannot Get Mail, The connection to the server failed?"

    Is anyone getting this message when trying to access Yahoo Email?  "Cannot Get Mail, The connection to the server failed?"

    I have Yahoo mail (POP) account.  Mine is working fine at present.  I do occasionally get asked for password while sending mail.  I have had your issue in the past and it usually clears up in a few hours.  Sometimes I sign out and then back in and it starts working again.

  • Anyone get imapidle to work?

    http://www.tuaw.com/2007/11/07/imapidle-simulates-push-email-on-the-iphone/#comm ents
    anyone get this app to work?
    i can't it to work at all. i'm using .5 against gmail set the port to 993 enabled ssl rebooted and still nothing. i see the preference pages but it doesn't seem to do anything other than show that. when i click save it doesn't respond in any way.
    i downloaded it via installer.app and the version i got was .5.
    thanks,
    s

    Did you have any luck getting vss to work?
    I have the same issue.
    I sort of had it working for a minute, but am not sure exactly what I need for the project path etc to not get all the errors.

  • Anyone get GNOME Shell working in Virtualbox yet?

    The latest version of Virtualbox came out today and it's supposed to have 3D support for GNOME 3 now and I've heard of some people on other distros getting GNOME Shell working, but I'm not having any such luck. I did a fresh install of Arch tonight, just in case, but I still get fallback mode (after upgrading Virtualbox and enabling 3D support, guest additions, etc). This is the error I'm getting:
    [root@sandbox ~]# gnome-shell --replace
    failed to create drawable
    (gnome-shell:1242): Clutter-CRITICAL **: Unable to initialize Clutter: Unable to select the newly created GLX context
    Window manager error: Unable to initialize Clutter.
    It's the same error that someone was getting here a few weeks ago: https://bbs.archlinux.org/viewtopic.php?pid=928760
    However, with the Virtualbox upgrade, it's *supposed* to be running now, so I have no idea... So has anyone got this to work yet?

    djgera wrote:
    In guest:
    ln -s /usr/lib/xorg/modules/dri /usr/lib/dri
    or if the directory /usr/lib/dri is present, then
    ln -s /usr/lib/xorg/modules/dri/vboxvideo_dri.so /usr/lib/dri
    Or use latest virtualbox-guest-additons package.
    Enjoy!
    Somehow, it fails to work for me, don't know why! I just did a fresh install of Arch on a VM inside VirtualBox. Then installed Gnome by pacman -Sf gnome (yeah, conflicts. Had to force!) But, it dropped to fallback mode! Now, how do I get the 3d support?

Maybe you are looking for

  • Finding the shortest path router for the router tracking purpose

    Hi all, A Question asking you regarding to routers' tracking information. We keeps all the router infomation of our subnet in a file name "routers.txt" in this format: 1 2 1 2 4 1 4 3 1 1 3 5 This states there are four routers, the distance between r

  • XSLT Mapping : XML to Fixed Length File

    Hi, I have to code a XSLT mapping which converts the XML into a Fixed Length File Format. I am getting the output but it has some garbage values (Some extra spaces in front of first record and also extra blank lines before the first record) I am past

  • Mac Mini TV

    Dear Apple, I purchased a Mac Mini a few months ago to act as my new entertainment hub. I have never owned a Macintosh computer before, however I did buy an iPhone last year and loved it. I was syncing my phone at work on my p.c. and it was a drag tr

  • ITunes match very spotty

    iTunes match works off and on, more not than so. All software up to date

  • Function module to update net price in purchase information record ???

    hi all, Is there any function module to update net price (PREIS) for each material in the purchase info record? points will be rewarded for helpful answers