Has anyone successfully implemented a drop shipping eCommerce solution with MULTIPLE suppliers?

Hi there
I have read a few BC forum articles on this subject, but none seem to have clarified whether a drop shipping eCommerce solution with MULTIPLE suppliers can truly be implemented successfully in BC.
In particluar, my concern is with splitting up ONE online order with products from MULTIPLE suppliers ... and split up the order into its individual supplier components and thereby calculate freight costs for each of the suppliers i.e. the freight cost should really be calculated for each of the suppliers SEPERATELY and not for the order as a whole.
Forum post http://forums.adobe.com/message/4881302#4881302 addresses this issue and Liam Dilley [as always] kindly responded. But his response indicates this is not possible with BC.
If this is the case, drop shipping in BC is quite useless unless:
1. you had only one supplier
2. or, you somehow restricted each order placed to products from only one supplier - which I am unsure is even possible even with JQuery
Any feedback from the community would be most appreciated.
Regards
Gavin

You have two requirements:
1. Once ordered, split the order into suppliers, contact the supplier of the product, give the information of the order to the customer. Supplier ships it. This could be done manually but a pain in the ***. I would assume you want it automated.
2. When ordering, multiple products require mutliple shipping rates. As the shipping from location could be different for each product you can't just use the ship from one location option.
Solutions:
1. This is the easier one, you record the supplier in the product via a form or in the product item itself. If you wanted to automate here you could via API, if you wanted to do it manually you also could.
2. Shipping calulator, to make things easier you would have to do everything by weight. Use Javascript to remove the default shipping option on the checkout page, pass all the items in the shopping cart. Use a lookup table function in Javascript "item name to weight" then have another function item to (from) shipping location. Work out the shipping and display it and force change with Javascript BC's shipping price (so the customer pays the correct amount).
Like Liam says, it's not something BC does too well at the moment and the above solution is more of a workaround but does work.

Similar Messages

  • Has anyone successfully implemented the JSF Viewer with Facelets?

    We have recently started integrating Crystal into one of our web apps that is using JSF + Facelets + Seam.
    I've built a taglib for the jsf viewer and configured it in web.xml and faces-config. I'm pulling an IReportSource from a backing bean using com.crystaldecisions.reports.sdk.ReportClientDocument  and that is using a .rpt file stored on a directory. This all seems to be working, as I can step through the code and see the IReportSource being generated.
    However, when the page loads, I am seeing the crystal javascript being converted in the page source, but nothing is loading on the page. 
    Has anyone seen an issue similar to this tied to Facelets? I've seen numerous documentation on Crystal and JSP, but very little on JSF  or Facelets.
    Has anyone been able to get a setup like this or similar to work properly?
    I've also noticed an error when adding the viewer:
    java.io.IOException: Recover report client document state failed.
    at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.readExternal(SourceFile:1492)
    at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.readExternal(SourceFile:131)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1792)
    I believe this to be related to me switching over to the serializable ReportClientDocument: com.crystaldecisions.sdk.occa.report.application.ReportClientDocument  versus using the nonserializable version.
    When using the non-serializable version, I am seeing a constructor issue with the JPEReportSource
    Exception: java.io.InvalidClassException: com.crystaldecisions.reports.reportengineinterface.JPEReportSource; no valid constructor
    Has anyone seen this issue before or able to offer any suggestions?

    Well, according to the tutorials I have seen on the internet, I believe CrystalReport was successfully implemented and tested with jsp, to have it working with Facelets, we need to do a little bit of work around. We need to make a new JSF custom component and assign it to an external renderer. then we can use it to view the report
    please follow these and it should work after then,
    1- bring the following jars into your libs
    commons-configuration-1.2.jar
    Concurrent.jar
    CrystalCommon.jar
    CrystalContentModels.jar
    CrystalDatabaseConnectors.jar
    CrystalFormulas.jar
    CrystalQueryEngine.jar
    CrystalReportEngine.jar
    CrystalReportingCommon.jar
    icu4j.jar
    jrcadapter.jar
    jrcerom.jar
    keycodeDecoder.jar
    MetafileRenderer.jar
    rasapp.jar
    rascore.jar
    rpoifs.jar
    serialization.jar
    URIUtil.jar
    webreporting.jar
    webreporting-jsf.jar
    xercesImpl.jar
    xml-apis.jar
    2- bring the folder "crystalreportviewers115" right under the "WebContent".
    3- implement the custom FacesComponent and make it extend the "UIReportPageViewer" as follows;
    import packagename.CustomReportRenderer;
    @FacesComponent ("packagename.newReportViewer")
    public class UIReportViewer extends com.crystaldecisions.report.web.jsf.UIReportPageViewer implements Serializable{
        public UIReportViewer () {
            this.setRendererType("packagename.CustomReportRenderer");
    4- implement the renderer and make it extend the "ViewerHtmlRenderer" as follows;
    @FacesRenderer(componentFamily="CrystalReports.DHTMLViewer", rendererType="packagename.CustomReportRenderer")
    public class CustomReportRenderer extends com.crystaldecisions.report.web.jsf.ViewerHtmlRenderer implements Serializable {
    5- make a new tag library xml file next to the web.xml so the application can find the tag configurations. name it "taglib.xml" and add the following inside it;
    <facelet-taglib xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee"
        version="2.0">
        <namespace>http://new-jsf-custom-components/</namespace>
        <tag>
            <tag-name>ReportViewer</tag-name>
            <component>
                <component-type>packagename.newReportViewer</component-type>
                <renderer-type>packagename.CustomReportRenderer</renderer-type>
            </component>
        </tag>
    </facelet-taglib>
    6- configure the web.xml with the following
      <context-param>
            <description>
            State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>server</param-value>
        </context-param>
        <context-param>
              <param-name>javax.faces.FACELETS_LIBRARIES</param-name>
            <param-value>/WEB-INF/taglib.xml</param-value>
        </context-param>
        <context-param>
            <param-name>crystal_image_uri</param-name>
            <param-value>../../crystalreportviewers115</param-value>
        </context-param>
    7- implement the reportViewer.xhtml and make sure you have the following;
    - in the tag libraries add the namespace schema xmlns:crystalnmcps="http://new-jsf-custom-components/"
    - add the new reportViewer component
    <crystalnmcps:ReportViewer reportSource="#{youController.reportSource}"  displayToolbarLogo="false" parameterFields="#{youController.parameterFields}"  allowParameterPrompting="false" />
    Now run your app.
    I hope this helps. good luck

  • Has anyone successfully implemented fetching more than one row at a time?

    I ask, since I'm having problems even with the simplest of scenarios. I went all the way back to the sample code given in the documentation (listed below) and it doesn't even work! I throws a data truncated exception on the employee number (even though the field is only 4 digits!) Help?
    int empno[5];
    char ename[5][11];
    ub2 enameLen[5];
    ResultSet *resultSet = stmt->executeQuery("select empno, ename from emp");
    resultSet->setDataBuffer(1, &empno, OCCIINT);
    resultSet->setDataBuffer(2, ename, OCCI_SQLT_STR, sizeof(ename[0]), enameLen);
    rs->next(5); // throws ORA-01406!

    pass the size of the number field too.
    resultSet->setDataBuffer(1, empno, OCCIINT, sizeof(empno[0]));
    ...

  • Has anyone successfully used Oracle EM as a Monitoring Solution??

    Hi All,
    This might be a wrong place to post ;) but anyways. My question is can we use Oracle EM as a Monitoring Solution? If so has anyone successfully used it?
    I have used Oracle EM over the years for mostly managing Databases. Eventually with the Middleware Support I have tried to use it to monitor Middleware Servers, earlier OC4J and recently WebLogic Servers. I however find that most people when talk about EM they think of it as a Business Transaction Monitoring Solution. (Lets keep BTM out for a while I know about that plugin but it is another full set of questions)
    Mostly I get questions as to can we "drill down the transactions" and see who initiated it and "what is being processed at this moment". Here transaction means Business Transaction as opposed "this thread is executing this particular piece of code". People want to know this piece of code is being executed "for Purchase Order XYZ" as opposed to just knowing that purchase order is being processed. If you know what i mean.
    No doubt OEM is great tool for an Admin but does it really sell itself as a monitoring solution? I have not seen a successful implementation so far with OEM being a central monitoring solution. If anyone has any experiences to share it would be great.

    I tried to look at that option. It is available only for the Database. I was looking something more towards say the web Services hosted or the Web Applications hosted on Weblogic instances. Can we find say the Web Service call which had the Purchase Order XYZ in its request, etc.

  • Has anyone successfully used a "WD My Book for Mac" via NAS (plugged into USB port on router) as a Time Machine back-up drive?

    Has anyone successfully used a "WD My Book for Mac" via NAS (plugged into USB port on router) as a Time Machine back-up drive? Apple support tech tried to tell me it wasn't possible and that the only NAS Time Machine could back up to is the Time Capsule, but I'm not buying it. I know it's doable, but I'm having a hard time figuring out which External HDDs will work and which ones won't.  If not My Book for Mac, is there an External HDD that will work? (Running OS X 10.9.1 - Mavericks, btw...)

    Given the nature of backups, my recommendation has always been to use a strategy that is unequivocally supported by Apple. As you already determined Apple Support unequivocally informed you that your proposal will not work, unless your router is an Apple AirPort Extreme or Time Capsule.
    The exhaustive list of devices supported by Time Machine amounts to the following:
    AirPort Time Capsule's built-in hard disk (any model)
    External USB hard disk drive connected to a Time Capsule (any model)
    External USB hard disk drive connected to an AirPort Extreme (current model only)
    A hard disk drive directly connected to your Mac
    That is all.
    Use whatever backup device you want, but you should be aware that this site is full of reports of misery from hapless individuals who had been using NAS devices for Time Machine backups, only to find that they were incomplete, corrupted, or useless when they were required. Apple won't care if you lose your data while using a Time Machine configuration specifically excluded from their technical support documents.

  • Has anyone successfully connected an AEBS to the new Panasonic TVs with built-in WiFi?  If so, please describe the requirements and process.  Thanks.

    Has anyone successfully connected an AEBS to the new Panasonic TVs with built-in WiFi?  If so, please describe the requirements and process.  (TV subscription is through DirecTV and ISP is TWC.)  Thanks.

    If you wish to use the cellular capabilities of a device, you will need a SIM (unless the carrier uses CDMA which doesn't use SIMs) and you will have to pay a cell carrier. No cell company provides service for free. The only way you will get free Internet is via WiFi to a free and open WiFi access point, as sometimes is offered in public buildings or by some businesses.
    Regards.

  • Has anyone successfully transferred contacts from a Blackberry to an iPhone?

    Has anyone successfully transferred contact info from a Blackberry to an iPhone?

    Hi Friend,
    If it's possible to export contacts from Blackberry to the SIM card, then you can place that SIM card into iPhone and import them to iPhone (settings>>mail,contacts,calendars>>import contacts from the SIM Card.
    Hope it helps

  • Has anyone successfully got a refund on graphics card fault

    My Mac Mini (mid 2011) purchases in February 2012 has died. The graphics chip has gone and the display is some funky colours at boot before it crashes and reboots. I'm unable to login at all, even via safe mode.
    It's almost 3 years old to the day and i'm covered by UK law for 6 years. But has anyone successfully got a refund or replacement?
    I'm concerned they might want to take it in to test and try to repair it, but presumably that would mean an entirely new motherboard and i can't be without a Mac (my main computer) for so long. Do they even make / have in stock Mid 2011 Mac Minis anyway? I'd guess not.
    Should i go ahead and buy a new one with the reassurance i'd get some money back?
    I've made no alterations to the mac other than to upgrade the ram from 4GB to 8GB.
    thanks

    Apple never mad a promise to replace the Mac. Only to fix your OR replace at Apple's option.
    Contact Apple and discuss it with them
    you can also
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Has anyone successfully been approved for a Paid Books account?

    I submit my completed application for a Paid Books account over 7 business days ago, and I've yet to hear so much as a confirmation of its reciept yet. Judging by the existing conversations in this forum, this is not unusal, it seems.
    Thus, my questions is this: has anyone successfully been approved for a Paid Books account? One success story would be enough to inspire some hope while the nail-biting waiting for a response continues.

    It took a while to get approved and when I submitted the iBook, it took a while to have the book approved. But today it was approved. They approved the sample and the paid ibook at the same time (eReading: The Best Thing). I submitted them on the same day. It was indeed a nailbiting affair

  • Has anyone successfully managed to get VZW to raplace Fascinate with a different phone?

    Has anyone successfully managed to get VZW to raplace Fascinate with a different phone?
    If so, could you share with me on how you convinced VZW to do it?(which department?)
    I love my Fascinate, but not when it can't get calls.  I would prefer to have a Fascinate with
    zero problems, but that appears unlikely.   So I guess my best option is to get a different
    phone(Samsung, Motorola, or others)
    Thanks!

    I successfully got a swap out of my Fascinate with a Droid Incredible 2. 
    I private messaged VZW agents on these forums the following message and through the course of 3-5 days I successfully was granted an expception and allowed to swap out my device (with no contract extension or upgrade eligiblity extenstion). This was after several phone calls and numberous wasted hours trying to convince them the Fascinate was not a good phone. 
    If I have been rude in any way during this message, I sincerely apologize, I did not mean it. I am a frsutrated owner of a bad piece of electronics. I am aware it is not VZW's fault, but I think you need to stand beind the phones you sell and rectify situations that are bad. 
    I am a Samsung Fascinate owner and to say the least this phone has been the biggest source of frustration I have ever had to endur in the 20+ years I have owned a cellular phone. 
    The have been number rous issues with my original phone and the replacement (certified replacement) phone I have gotten. These issues include, but are not limited to:
    1. glitchy UI
    2. constant forecloses and freezes
    3 auto reboots 
    4. inoperable phone for 20 - 30 minutes at a time. Can't access apps, can't make calls, can't send texts, phone is useless to me.
    5. not receiving calls/texts
    6. missing voicemails
    7. increased battery drain
    8. random flickering of screen lights while using the phone.
    Now I have performed the following steps at the suggestion of VZW tech support on both my orginal phone an replacement phone
    1. Hard resets, factory resets 
    2. Soft resets,
    3. Clear cache on the phone
    4. Removing apps 
    5. Updating roaming capabilities 
    After all these issues and all the suggestion on fixes, the phone still performs poorly and is not a reliable phone at all. Like I stated previously i am beyond frustrated. 
    I am aware these problems are software issues not a hardware issue; a refurbed Fascinate will not correct them. Hard resets do not fix the problems. I have scoured the message boards on this website (VZW forums) and I am aware the VERIZON is aware of all these issues with multiple Fascinate users.
    I am asking to be allowed to swap my Fascinate for another, DIFFERENT model of phone. I am fine if that is a refurb, as long as it is a DIFFERENT model of phone and not a Fascinate. I know this is possible because users on your very own forum are stating it has been done. I am asking it be done in my case
    Best thing I can say is stick to it....sitck to you guns and don't back down and don't be allowed to think there is afix when there is not. 

  • Has anyone successfully set up scan to smb to mac os 10.7.x from a Konica Minolta bizhub

    Has anyone successfully set up scan to smb to mac os 10.7.x from a Konica Minolta bizhub. I'm using 10.7.3 on MacBook Pro. Don't care what model bizhub is being used as I have access to many. I've seen the posts for FTP workarounds but want to use SMB if that is an option. Any suggestions? Thank you!

    petermtnbk wrote:
    I've read other discussions that have suggested changing the format of the username and password when having login problems. I'm not familiar with NT-Status Codes. Could changing the format of the username make any difference? Something like... "workgroup/username" or "username@domain" or "domain/username" or some other combination of workgroup, domain, username, computername.
    The issue has nothing to do with the format of the user authentication. What you are reading is about the Lion Mac connecting to a Windows computer that is part of domain or workgroup. The method changed slightly compared to Snow Leopard.
    KM does support FTP so that is still an option, but I would ideally would like to set up SMB scanning. I'm not sure if KM is going to support AFP anytime soon.
    With the lack of SMB support and KM offering no alternative at this stage then I suggest you look at using FTP. While Lion removed the option to enable FTP via the Sharing pane in System Preferences, it can still be enabled via Terminal using the following command
    sudo -s launchctl load -w /System/Library/LaunchDaemons/ftp.plist
    You will be prompted to authenticate using your Mac's admin account & password. Once this is done, you can then configure the address on the copier to push scan using FTP. The keys are;
    The host name requires just the IP address. No leading slashes like SMB
    The path will be the folder that you want to scan to, also entered without a leading slash. For example, Desktop
    The user name will be the short name of the account who's folder you want to scan to.
    The only other option may be WebDAV if the KM supports it. We have this with our imageRUNNER ADVANCE and with a document scanned to a shared folder in the copier hard drive, we can then connect to that folder by using Finder's > Go > Connect to Server facility. You then just enter
    http://ipaddress/share
    which connects you to the shared folder and lets you see the document you scanned. You also have the facility to set subfolders for security of users documents.

  • Has anyone successfully reset their Skype account ...

    I've posted on this before, but none of you good people have shared your thoughts on this. Unfortunately, Skype Customer Service don't appear to have a "standard response" e-mail template to address my problem.
    Nine days after I first reported that my Skype account has been hacked I am still going round in circles, with "standard response" e-mails from the Skype Customer Support people asking me to do something which I have already tried but which was not the correct thing to do to reset my Skype Account password.
    My Skype Account password has been changed by a hacker.
    My Microsoft Account, which is linked to Skype, has not been hacked and the password has been changed (three times in a week ..... see below).
    I need to change only my Skype account password but the password reset links take me through to Microsoft and I end up changing my Microsoft account password.  This does not resolve the Skype Account Password situation.
    Has anyone successfully reset their unknown or forgotten password from a Skype account which has been linked to their Microsoft account?
    Does anyone know whether Skype themselves can unlink a Skype Account from a Microsoft Account? Unfortunately I can only do it with the password I do not have!!!  I feel that this could be one way of changing my password without being redirected to the Microsft Account Password Reset option.

    Well, it's me again.  However, I now have a new name on the Community Forum as I have had to re-register as I no longer seem to exist.
    I contacted Skype Customer Support via their web chat service and the operator unlinked my Skype Account (which, if you've read any other posts from my original name alison01326) you will recall was hacked and I was unable to make a change to the password as I kept getting through to the Microsoft account password change which was not the password that needed changing.
    I would have said, that if you need to unlink the two accounts, just ask.  But now I am not so sure.  My Skype Account (the one which was hacked, and still has someone else's password on it) has vanished, taking with it £10 of Skype Credit and the World Minutes which I receive monthly as part of Office 365.
    I now have five or six different customer service references to quote, and not only can I not get my account verified (as my memory doesn't stretch back to when I first had a Skype account) I also appear to have lost £10 and a valuable "free" service.
    Have been in tears over this as 11 days have passed since the hacking and nothing positive has been achieved.  Does anyone else have the same experiences, and what was the outcome?

  • Has anyone successfully used the ZTE Open C with an AT&T microcell?

    I have a ZTE Open C and have had no issues with initial setup w/AT&T. However, like most newer phones the voice signal reception is very weak.
    I've had an AT&T Microcell before, but I don't have one now. For those that are unaware, the microcell allows 3G phones to connect via a 3G signal, but the call is routed through a home broadband internet connection.
    Has anyone successfully used a ZTE Open C w/Firefox OS AND used an AT&T microcell? If yes, did you need to do anything special on the phone or with Firefox OS.

    I don't use a ZTE Open C, however, I do have a ZTE Open (Original) on AT&T and so I'll see if I can help ;D
    I know someone who has a Microcell, and I have used it myself a few times. However, the microcell only works if you have entered in your phone number into settings of the Microcell.
    Check the Microcell settings.
    Check the data connection settings on your FxOS device
    Make sure your Microcell is properly connected to WiFi
    and check the AT&T support page for more info
    For a while, it actually hasn't actually worked for me. I apologize if this doesn't solve your problem :D

  • Has anyone successfully used the Intuit Quicken compatible with Lion upgrade for investment tracking?

    Has anyone successfully used the Intuit Quicken compatible with Lion upgrade for investment tracking?

    Although I gave up investment tracking for personal reasons (I had used Quicken Deluxe 2002 for many years for that reason), my understanding is that the new Quicken 2007 for Lion/Mt. Lion is completely the same feature wise as Quicken 2007 for PPC.  It will run on Snow Leopard, too.
    For $15, why not download it and just try it and LET US KNOW!

  • Has anyone successfully printed on Konica Minolta Magicolor 2530DL on Mac OS X 10.9

    Has anyone successfully printed on the Konica Minolta Magicolor 2530DL after upgrading to Mac OS X 10.9?
    Also has anyone successfully printed on the Epson EPL-5700i after upgrading to Mac OS X 10.9?

    I realize that most people tend to visit the forums to report problems rather than visit the forums to report successes after an upgrade. And I appreciate John Blanchard1's taking the time to reply to my posting.
    Dakoda mentions problems printing to a Konica Minolta C280 and the thread that John Blanchard1 posted refers to problems printing to both Konica Minolta BizHubs (C652 & 501).
    However, the existence of these problems with other KM printer models does not let me know if anyone has been successful printing to the Konica Minolta Magicolor 2530DL after upgrading to Mac OS X 10.9 or even if anyone has had a problem with printing to the 2530DL after upgrading to 10.9.
    On October 28, 2013, a Konica Minolta technical support agent told me -- after checking with his supervisor -- that regarding the Konica Minolta Magicolor 2530DL that they will not be upgrading the 2530DL printer driver. In fact they have not upgraded the driver since 10.6. I learned on their support site that the 10.6 driver has continued to work with 10.7 and 10.8. They have not yet updated their support site for compatibility of their line of printers with 10.9.
    So I would like to find evidence that this printer has continued to work for someone after the upgrade to 10.9 rather than upgrade and then have to downgrade to still be able to use this printer.

Maybe you are looking for