Announcement

Collapse
No announcement yet.

Exporting points from Sebenza Points Redemption Manager

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Exporting points from Sebenza Points Redemption Manager

    The Sebenza Points Redemption Manager has the ability to import points but I need to export the points from the live store into the dev store that is almost ready to go live. Does anyone have a method to export the points?

    The import file needs to contain two fields - users login name and the numerical value for the points.

    I've also opened a support ticket with Sebenza but I thought I'd check here too.

    Leslie
    Leslie Kirk
    Miva Certified Developer
    Miva Merchant Specialist since 1997
    Previously of Webs Your Way
    (aka Leslie Nord leslienord)

    Email me: [email protected]
    www.lesliekirk.com

    Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

    #2
    Re: Exporting points from Sebenza Points Redemption Manager

    Dear Leslie,

    Use PHPmyadmin to make a dump of the Table and build a file from it.

    Or, I could write quick script to Export it for you.
    Thank You,

    Nerd Boy

    http://www.nerdboyinc.com

    1-855-Nerd-Boy

    Comment


      #3
      Re: Exporting points from Sebenza Points Redemption Manager

      Variation of the example provided on Sebenza's site: https://sebenza.freshdesk.com/suppor...y-for-customer

      Code:
      SELECT
          s01_Customers.login,
          s01_SS_POINTS_cust.total
      FROM
          s01_Customers
      INNER JOIN
          s01_SS_POINTS_cust
      ON
          s01_Customers.id = s01_SS_POINTS_cust.cust_id

      Comment

      Working...
      X