Export all maps (mappings for all dimensions in EXCEL)

Hi,
it shouldn't be an unknown issue - but unfortunately I can't find the way :-(

Below is updated code with the following changes :
- Adjusted SaveAs logic to prevent Excel prompts in the event the file already exists, etc. (i.e. DisplayAlerts TRUE / FALSE)
- Added Range creation logic for each worksheet page. If I really wanted perfect code, could do this better, but it gets the job done.
Sub ExportAllCurrDimMapsForLocationtoXLS()
'UpStream WebLink DM Custom Script:
'Created By:         cbeyer
'Date Created:       11-23-11
'Purpose:               Export all dimension maps to an Excel workbook      
'Declare Constant
'NOTE : This will control whether the function gets the current map in the system or whether it looks back for a specific Period
'       FDM stores the Map for each period that was loaded... You may want to export a particular POV Period for audit purposes, etc.
'       IF you enable this, be sure to set the POV Period before running.....
Const boolgetPOVPeriodMap = False
'Declare working variables
Dim intPartitionKey
Dim strOutputMessage
Dim strSQL
Dim strCategoryFreq
Dim objPeriodKey
Dim strOutputFileName
Dim strOutputFilePath
'Get the location (PartitionKey
intPartitionKey = RES.PlngLocKey
'Create SQL Query to get Current Map Data
If boolgetPOVPeriodMap = False Then
     strSQL = "SELECT * FROM tDataMap where PartitionKey = " & intPartitionKey & " order by DimName ASC"
Else
     strCategoryFreq = API.POVMgr.fCategoryFreq(API.POVMgr.PPOVCategory)
     Set objPeriodKey = API.POVMgr.fPeriodKey(API.POVMgr.PPOVPeriod, 0, strCategoryFreq)
     strSQL = "SELECT * from vDataMap where PartitionKey = " & intPartitionKey & " and PeriodKey = '" & objPeriodKey.dteDateKey & " 12:00:00 AM' order by DimName Asc"
End If
'Create Recordset for all Exported Entities
Set rsMap = DW.DataAccess.farsKeySet(strSQL)
If rsMap.EOF And rsMap.BOF Then
     'No records
     If boolgetPOVPeriodMap = False Then
          strOutputMessage = "No Mapping data was found For " & API.POVMgr.PPOVLocation & ".  If this location Is using Parent Maps, you can only export mapping data at the parent location."     
     Else
          strOutputMessage = "No Mapping data was found For " & API.POVMgr.PPOVLocation & " for period " & API.POVMgr.PPOVPeriod & ".  If this location Is using Parent Maps, you can only export mapping data at the parent location."          
     End If
Else
     'Records Exist, process
     'Generate file name / path
     If boolgetPOVPeriodMap = False Then
          strOutputFileName = API.POVMgr.PPOVLocation & "_DimensionMaps.xls"
     Else
          strOutputFileName = API.POVMgr.PPOVLocation & "_" & objPeriodKey.strDateKey & "_DimensionMaps.xls"
     End If
     strOutputFilePath = DW.Connection.PstrDirOutbox & "\ExcelFiles\"
     'Create Excel file reference     
     'Declare Excel working variables
     Dim oExcel
     Dim oBook
     Dim oSheet 'No puns here......
     Dim oRange
     Dim intCurrentSheetOrdinal
     Dim intCurrentRowOrdinal
     Dim intCurrentColOrdinal
     'Intialize Excel
     Set oExcel = CreateObject("Excel.Application")
     Set oBook = oExcel.Workbooks.Add
     'Declare working variables
     Dim strCurrDimName
     'Initialize variables
     strCurrDimName = ""
     intCurrentSheetOrdinal = 1
     intCurrentRowOrdinal = 1
     intCurrentColOrdinal = 1
     With rsMap
          Do Until .eof
               'Check to see if current DimName matches existing DimName.  If not, add headers
               If rsMap.fields("DimName") <> strCurrDimName Then
                     'If the dimension name has changed to a different dimension name, show total information before starting headers
                     'If the previous dimension was not "", then we are transitioning from one range to the next.  Lets create a named range on the just
                     'finished worksheet because we can or because you may want to use this for re-uploading
                     'NOTE : The range I'm creating is more for reference as to how to implement this and I don't know if I'm making the range in a fashion that
                     'FDM will pickup for importing. 
                     'NOTE : You probably want intCurrentRowOrdinal - 1 since it is 1 row past the last row of data at this point.  If you want to clean it up,
                     'then you need to make sure RowOrdinal is not going to be less than the starting point and I didn't feel like adding the couple rows of
                     'code to do the work properly as FDM will just ignore the blank row in all likelihood.
                                                                  If strCurrDimName <> "" Then
                            Set oRange = oSheet.Range("A6:K" & intCurrentRowOrdinal)
                            oBook.Names.Add "ups"&strCurrDimName, oRange
                     End If
                     'Create worksheet reference
                       Set oSheet = oBook.Worksheets(intCurrentSheetOrdinal)                    
                      'Create default header at top of each new dimension group
                         If boolgetPOVPeriodMap = False Then
                              oSheet.range("A1") = (API.POVMgr.PPOVLocation & " - Map Conversion")
                         Else
                              oSheet.range("A1") = (API.POVMgr.PPOVLocation & " - Map Conversion for " & rsMap.fields("PeriodKey"))
                         End If
                         oSheet.range("A3") = "Partition: " & API.POVMgr.PPOVLocation
                         oSheet.range("A4") = "User ID: " & DW.Connection.PstrUserID
                         'NOTE: I could make an array of the field names and do a loop here; however, this is easier to read.....
                         '      probably not how I would do it from an efficiency standpoint, but since it's a limited number of fields
                         '      this will work.....
                             oSheet.range("A5") = "PartitionKey"
                             oSheet.range("B5") = "DimName"
                             oSheet.range("C5") = "Source FM Account"
                             oSheet.range("D5") = "Description"
                             oSheet.range("E5") = "Target FM Account"
                             oSheet.range("F5") = "WhereClauseType"
                             oSheet.range("G5") = "WhereClauseValue"
                             oSheet.range("H5") = "-"
                             oSheet.range("I5") = "Sequence"
                             oSheet.range("J5") = "DataKey"
                             oSheet.range("K5") = "VBScript"
                         'Update variables                   
                            strCurrDimName = rsMap.fields("DimName")
                            intCurrentRowOrdinal = 6
                            intCurrentSheetOrdinal = intCurrentSheetOrdinal + 1
                            'Update worksheet name
                            oSheet.name = strCurrDimName
               End If
                 'Write Details
                        oSheet.range("A" & intCurrentRowOrdinal) = intPartitionKey
                 oSheet.range("B" & intCurrentRowOrdinal) = rsMap.fields("DimName").Value
                 oSheet.range("C" & intCurrentRowOrdinal) = rsMap.fields("SrcKey").Value
                 oSheet.range("D" & intCurrentRowOrdinal) = rsMap.fields("SrcDesc").Value
                 oSheet.range("E" & intCurrentRowOrdinal) = rsMap.fields("TargKey").Value
                 oSheet.range("F" & intCurrentRowOrdinal) = rsMap.fields("WhereClauseType").Value
                 oSheet.range("G" & intCurrentRowOrdinal) = rsMap.fields("WhereClauseValue").Value
                 oSheet.range("H" & intCurrentRowOrdinal) = rsMap.fields("ChangeSign").Value
                 oSheet.range("I" & intCurrentRowOrdinal) = rsMap.fields("Sequence").Value
                 oSheet.range("J" & intCurrentRowOrdinal) = rsMap.fields("DataKey").Value
                 oSheet.range("K" & intCurrentRowOrdinal) = rsMap.fields("VBScript").Value
               'Increment Counters
               intCurrentRowOrdinal = intCurrentRowOrdinal + 1
               'Move to the next record
               .movenext
          Loop
     End With
     'Final Sheet Named Range addition
     'Since the loop will end and we will not execute the above logic to create the range for the previous sheet
     'the easiest (laziest) solution is to just handle the last sheet after the loop.
     'We're basically doing the same stuff we did above, just down here.
      If strCurrDimName <> "" Then
          Set oRange = oSheet.Range("A6:K" & intCurrentRowOrdinal)
           oBook.Names.Add "ups"&strCurrDimName, oRange
      End If      
     'Close / release file objects
     'Added some logic here to ensure you don't get caught up on the file replace prompt.
     oExcel.Application.DisplayAlerts = False
     oBook.SaveAs strOutputFilePath & strOutputFileName
     oExcel.Application.DisplayAlerts = True
     oExcel.Quit
     'Create output message          
     strOutputMessage = "Mapping data export for " & API.POVMgr.PPOVLocation  & " complete.  Extract file is : " & strOutputFilePath & strOutputFileName
End If
'Close / release data objects
rsMap.close
'Display output
If LCase(API.DataWindow.Connection.PstrClientType) = "workbench" Then
          MsgBox strOutputMessage       
Else
     'Let the user know we are done
     RES.PlngActionType = 2
     RES.PstrActionValue = strOutputMessage
End If
End SubEdited by: beyerch2 on Dec 14, 2011 9:43 AM

Similar Messages

  • List mapped drives for all users

    Is there a way to list all mapped drives for every user  in the domain? I'd like to export it out to csv.

    Hi Ctrl,
    We can use "net use" or Wmi query "Get-WmiObject Win32_MappedLogicalDisk " in powershell, however,  these methods has some limitations, whether the current user which is used to remote access has Administrative privileges
    to their computer can determine whether that returns anything or not.
    For example, we can use Powershell Remoting to query the mapped drive from remote computers, beacause the mapped drive is to a specified user, so we also need to provide the computername and the relevant credential.
    If you deployed the GPP Drive maps, you can refer to this script:
    Get all GPP Drive maps in a Domain
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • My form has a list of yes or no questions.  I want to use either cheboxes or radio buttons.  I can't make it work.  When I check yes for one question, it marks all yes answers for all other questions.  If I mark some radio buttons to answer, it unmarks la

    My form has a list of yes or no questions.  I want to use either cheboxes or radio buttons.  Unfortunatly I can't make it work.  When I check yes for one question, it marks all yes answers for all other questions.  If I mark some radio buttons to answer, it unmarks later.  Need immediate help!!!

    Is it that you are using a PDF-based form? Did you copy and paste the Yes/No fields all the way down your form? If so, then all of the yes/no boxes are copies of each other and have the same name and properties in the PDF.
    For example, if you had:
         Question 1 and Question 1 Yes/No checkboxes
         Question 2 and Question 1 Yes/No checkboxes
         Question 3 and Question 1 Yes/No checkboxes
         Question 4 and Question 1 Yes/No checkboxes
    Then whatever answer you selected in Question 1 would populate down through the rest of the form.
    Changing the Yes/No field properties in questions two through four would eliminate the problem.
    I hope that helps,
    Brian

  • Adding a domain user to the admin role within the local user management breaks all metro apps for all users!!

    Hi,
    I have posted this in another large thread under the "Windows 8 General" group but have not had any appropriate feedback from MS.
    After hours of testing and working with other users I have managed to isolate a simple situation that breaks all metro ui applications within Windows 8 for all users on the machine. Here are my exact steps and notes.
    Before continuing if you are running Avast then your solution may be to turn of the behaviour shield functionality as this also breaks metro apps. This is NOT the problem we are having!
    I have performed 3 cleans installs after isolating the problem and am able to reproduce the issue every time using the same steps on two different machines. 
    First thing to say is that for us it has nothing to do with simply joining the domain, domain/group policies nor does it appear to have anything to do with the software we installed, the problem here is much more simple but the result is pretty terrible.
    Here are my exact steps of what I did to reproduce our problem:
    Complete format of HDD in preperation for a clean install
    Clean install performed
    Set up the machine initially with a local account
    Test metro apps - all working fine
    Open control panel from the desktop, click on System, change the system to join the domain, click reboot
    Log into the system using my domain account
    Test metro apps - all working fine
    Here's were the problem starts. I need my domain account to have admin rights on the local machine so I can install programs without the IT men having to come over and enter their password every 5 mins.
    I go to control panel via the desktop and click on User Accounts. From with here I then click on "Manage User Accounts". This requires the IT guys to enter their details to give me access to such functionality. This is fine
    In the dialog box that opens I can only see the local user that was initially created during setup. The "Group" for this local account shows as "Administrators" - Image included below (important to note that metro apps are working at this point)
    I click add and then add my domain account - also giving it administrator access
    Sign off or reboot to ensure the new security is applied
    Sign back in to the domain account
    Test metro - ALL BROKEN
    Sign out
    Sign in as local account
    Test Metro - NOW ALL BROKEN FOR THIS USER ALSO
    So as soon as I add my domain account to the local user accounts and set it as admin it breaks all metro apps for all users. This is on a totally clean install with nothing at all installed other than the OS.
    Annoyingly if I go back and change the domain account to a standard user or if I totally remove the domain account from the local account management system the problem does not go away for either user. basically it is now permanently broken. The only fix I
    could fathom was a full re install and not giving the domain user admin access to the local  machine.
    Screen one - this is the local user accounts window AFTER joining the domain and logging in with my domain account (All metro apps working at this point)
    Screen 2: User accounts AFTER joining the domain and AFTER adding domain account to local user management (METRO BROKEN)
    I have isolated my machine from all group policies so nothing like that is affecting me. Users I have spoken to in different companies have policies that automatically add users to the local user management. This means that metro apps break as
    soon as they join the domain which leads them to wrongly think it is group policies causing the error. Once they isolate themselves from this they can reproduce following my steps.
    Thanks

    Hi Juke,
    Thank you for the response and apologies for the delay in getting back to you. My machine was running a long task so I couldn't try your suggested solution.
    I had already tried running the registry merge suggested at the top of the thread to no avail. I had not tried deleting the OLE key totally so I did that and the problem still exists. I will post all the errors I see in event viewer below. For
    your info, since posting my initial comment I have sent out my steps to 7 different people and we can all reproduce the problem. This comes to 10 different machines (3 of them mine then the other guys) in 3 different businesses / domains. We see the same errors
    in event viewer.
    Under "Windows Logs" --> "Application" : I get two separate error events the first reads "Activation of app winstore_cw5n1h2txyewy!Windows.Store failed with error: The app didn't start. See the Microsoft-Windows-TWinUI/Operational log for additional
    information." The second arrives in the log about 15 seconds after the first and reads "App winstore_cw5n1h2txyewy!Windows.Store did not launch within its allotted time."
    Under "Windows Logs" --> "System" : I get one error that reads "The server Windows.Store did not register with DCOM within the required timeout."
    Under "Applications And Services Logs" --> "Microsoft" -->  "Windows" --> "Apps" --> "Microsoft-Windows-TWinUI/Operational" : I get one error that reads "Activation of the app winstore_cw5n1h2txyewy!Windows.Store for the
    Windows.Launch contract failed with error: The app didn't start."
    If you require any further information just let me know and I will provide as much as I can.
    Thanks

  • To all who answered me - i cant find the page where to reply to you all - but thanks for all the help - nothing has worked so far

    to reply to you all - but thanks for all the help - nothing has worked so far

    You're welcome.
    When you're signed in Your Stuff > Discussions towards the top right of the display gives you a similar list of the threads you've participated in. I save my bookmark with the name Active Threads.
    tt2

  • ITunes reset all the plays for all my purchased songs!

    I jsut looked at my iTuens library today and realized that it reset all the data for all the purchased sogns from the iTunes Store since the beginning of time! All my plays, everything - it has all been reset to zero, as well as if I changed the album name or title...it has all been changed back!
    Why in the world has this happened and how do I get it back?! I can hardly stand the though of losing all this data forever!!

    copy your entire iTunes folder to your new computer
    copy your iPhoto library or other pictures folder to your new computer
    copy your contacts to your new computer
    You can use an external drive or thumbdrive for the transfer.

  • I synced about 50 books to my new ipad air 2.  When I click any other books, the sync starts all over again for all books (it shows 51 books syncing).  If I abort the sync, all of a sudden, all books are gone from my ipad.  I don't know why.

    I synced about 50 books to my new ipad air 2.  When I click any other books, the sync starts all over again for all books (it shows 51 books syncing).  If I abort the sync, all of a sudden, all books are gone from my ipad.  I don't know why.  I did not have this problem on my old ipad...or before I upgraded to the latest version of iTunes.  Any help would be greatly appreciated.

    Hi were you able to resolve yours?
    I was very worried losing all my medical stuff on my iPad Air 2, plus i have nothing to use for the next day! So i have to try all the possible things i read on the internet!! And this worked on my part (Thank God, and thank you Google)
    Perform a hard reboot
    Hold down the Home button and Power button on your iPhone or iPad and keep holding them until you see the Apple logo. Once you do, you can let go. When your device boots back up, go ahead and check to see if the apps have started re-downloading. If they still appear to be stuck, continue on.

  • How can I enlarge the "all-day" screen on the iPhone calendar?  I use the all-day screen for all my tasks, and it only shows 2 items at a time!!  Help!!!

    How can I enlarge the "all-day" screen on the iPhone calendar?  I use the all-day screen for all my tasks, and it only shows 2 items at a time!!  Help!!!

    The iPhoto App can select all of the photos in the All Imported folder and delete them.

  • Ecc6, after i've changed all the passwords for all oracle users, then how

    ECC6, after i've changed all the passwords for all oracle users, now sap can't connect to oracle , then,  How can i config the sap to make sure it can boot normal?
    If our database is sqlserver, i've changed the database password for all database users, then, How can i config the sap?
    Thanks!

    My db is oracle ,                           the oracle host name is dbserver.
    The sap ap server only install the SAP. SAP host name is apserver.
    Just now i've altered all the password of the oracle database db user account, Include the account "sys".
    (I must alter the password.)
    Now the SAP service in the host "apserver" can't boot.
    Could you teach me  how can i config the "apserver" to make the SAP normal boot ?
    Thanks!
    Best regards!

  • Can't export as Html (Waiting for all files to be ready...)

    Made a bunch of updates last night to a client site.  Everything looks great except I can't export as Html. Had my sister try to export on her computer and we both get to 87%, then it permanently stalls, saying "Waiting for all files to be ready" (See screenshots). We've ensured that no files are open or being previewed. We've rebooted and tried saving to a different location, all with no change, we still get to the 87% mark and stop. Please help. I have a client waiting for this site update.
    Details:
    Windows 7
    Sony Vaio
    Muse Version - 4.1 Build 8 *see screenshot
    ****Update:
    I can preview the entire site in a browser as well as preview each page individually, but cannot finish a html export past 87%.

    Odd are if you wait long enough, potentially a few hours, it will complete.
    This huge performance hit sounds exactly like a bug that's fixed for the Muse CC 5.0 release due out next week. Sorry for the inconvenience.

  • Sharing mappings for single dimensions between locations

    Dear all,
    In our application we want to load data into essbase as well as into HFM, so we are using the two different adaptors. We though about using on the one hand locations with the essbase adaptor and on the other hand locations with the HFM adaptor.
    The account mapping table is the same regardless of loading into HFM or Essbase. The problem now is, that once a mapping in the account dimension is changed in an essbase location, it should also be automatically changed for the corresponding HFM location. The solution seems to be the creation of a location with a third adaptor that contains the HFM dimensions (until UD4) as well as the additional dimensions (UD5 - ...) for Essbase. This location is then the parent location for the HFM as well as for the Essbase locations. However, according to my understanding, this third adaptor can only be connected with one system (lets say Essbase). This means that once a mapping tabel for the HFM-UD3 is updated, it will result in an error, as FDQM can not find the corresponding UD3 member in Essbase.
    1. Is there a solution for this problem, so that for some dimensions the mapping table refers to essbase metadata while for others the mapping table refers to HFM metadata?
    or:
    2. Does anyone has a proposal for an approach to share the mapping tables of certain dimensions between different locations with different adaptors?
    Any comments are very much appreciated.
    Thanks a lot in advance,
    Chris

    Hi Chris,
    You put some good thoughts in here. Have you tried to use a parent location with the 3rd adapter yet? Depending on whether the adapter of the parent or the child location has priority this might work or not. Give it a try, might be a great reference for the rest of us, so thanks for sharing your results.
    The only other solution I see would be to add some scripting to sync the dimensions that you need.
    Regards,
    Matthias

  • All calendar entries for all accounts just duplicated today, how do I remove?

    Today, 10/9/14, when I opened Thunderbird I had to re-enter the gmail account passwords (I have multiple gmail accounts in Thunderbird and Lightening). After doing so, all the (1000's of) calendar events for all accounts are now duplicated. Am using the latest Lightening 3.3.1, Thunderbird 31.1.2. If I go to Google Calendar directly, there is no duplication so the problem (seems to be) that Lightening is reading in the events twice. Must be a simple edit to some profile file but which one and how to edit?

    Hmm - I don't use Mail (I use Outlook - and that's where my iCloud mail goes, too, never to Mail as I've never set it up in Mail).
    If you've deleted the iCloud account in Mail, you may want to check your iCloud System Preferences and make sure that you have "Mail" unchecked.
    But I don't know really... just another reason I don't use Mail, I guess.
    I DO know that I have a very personal account still active in Mail - but I only use it on Outlook 2013 for Windows, so I never get any alerts, etc. I don't know why you'd be getting any sort of error messages from Mail - unless it has something to do with iCloud preferences...
    Clinton

  • Export custom step properties for all sequences based upon expression

    I want to export only my custom step properties to a database. I realize this can be done one at a time but I'm looking for a more general, quicker solution since I have dozens of custom steps and many instances of each. I can probably do this, but if someone has already developed a method I could use the info. Thanks.
    kph 

    Hi kph,
    Unfortunately, there is not a straightforward way to solve this
    problem.  TestStand does not currently support any database
    configuration through programmatic means.  The customized database
    must be configured ahead of time.  I would handle the issue by
    setting up this database in configure >> Database Options. 
    The quickest solution for customization would be to duplicate one of
    the default Schemas (for example, Generic Recordset) under the "Schema"
    tab.  Under the statements tab, you can then cut out all of the
    unwanted statements (it sounds like you'll want to cut out most of
    them) and add new statments for your custom steps.   In this
    step, be sure to reference your custom step type for each statement in
    the "Types to Log" field.
    Under the Columns/Parameters tab, you can then add all of the properties you would like to save for each configured statement.
    At this point, you can use TestStand to create a SQL script file to
    match the Schema you just created.  From the Schema tab, you can
    select the Build .sql File dialog box.  After saving and running
    the script, you will have successfully created the required tables for
    the custom schema. 
    At this point, the custom properties should log to the database.
    Hope this helps in your application development!
    Andrew W. - Applications Engineer

  • How to Export VO query data for all the columns.

    Hi All,
    I have advanced Table where i will be displaying only few of the columns from the VO query, when i export it will display only those columns which are displayed in advanced Table, so is it possible to export other columns also?
    Thanks
    Babu

    I faced this similar issue ...as per my knowledge if the widget for the underlying VO attribute is rendered then only one can export the data...a possible workaround is..u can create a similar page showing the respective columns intended to be exported and redirect to tht page and export it from there .....

  • [SOLVED]Setting x11 keyboard map PERMANENTLY for all.

    Read carefully through https://wiki.archlinux.org/index.php/Ke … on_in_Xorg.
    Ran 'localectl set-x11-keymap gb' as instructed.  Confirmed this creates: /etc/X11/xorg.conf.d/00-keyboard.conf
    Ran 'grep "config directory" /var/log/Xorg.0.log'  which confirms that this /etc/X11/xorg.conf.d is where it's looking.
    Ran 'grep "xkb"  /var/log/Xorg.0.log'  which confirms that 'Option "xkb_layout "gb"' is the ONLY one found. (it appears several times).
    But setxkbmap -print -verbose 10 shows xkb_symbols { include "pc+us+inet(evdev"  }
    and the keyboard map is STILL 'us'.   @=" etc...
    Reread the wiki, still don't understand.
    Typing 'setxlbmap gb' into a terminal works for the session.
    Adding that to .xinitrc before the window manager command has NO effect.
    I tried adding the option to 10-evdev.conf, but that doesn't do it.
    So HOW DO you set the damn thing permanently?  Clearly evdev is not logging what it is doing in Xorg.0.log, so where is it logging?
    Something seems to have changed since the wiki article was written.
    TOF
    Last edited by TheOldFellow (2013-11-25 14:58:29)

    Sorry for the noise.  The Window Manager (Cinnamon) is changing it!
    TOF

Maybe you are looking for

  • Pixma MG5220 Windows 7 can't find wi-fi connection

    I have used a Pixma MG5220 printer with my Windows 7 machine for a long time.  Recently, however, I needed to re-format and re-initialize the PC.  I have the MG5220 as a wi-fi printer on the home network.  I see it as a network device in Windows Expl

  • Chart not showing last data point

    I have a chart that contains data points, 11/15/2000, 11/15/2001, etc.  Each data point is plotted in a line graph.  There are 11 data points, from 11/15/2000 to 11/15/2010.  For some reason, the last data point is plotted on the line graph but there

  • [PKGBUILD] Panda3d 1.5.2 ** Now it works

    *** UPDATE *** Now have a working PKGBUILD / package PKGBUILD: http://eoinisawesome.com/static/panda3d/PKGBUILD panda3d.tar.gz: http://eoinisawesome.com/static/panda3d/panda3d.tar.gz Any and all feedback is definitely welcome. Hey all, Updated the PK

  • Photoshop Elements 11 and CS6

    I have Photoshop Elements 11 and am wanting to upgrade to CS6.  Can I just upgrade or do I have to buy the whole CS6?

  • Enhancement in the RFC

    Hi    we had done an enhancement to the RFC structure in R3 system and reimported the enhanced structure to the PI system and done the changes in the mapping as well >And even the enhancement was found in the request messager structre But in the resp