Muse combined with BC and CRM

Hi there,
I have created a site in Muse which has BC integrated, in particular secure zones. I now want to create a function within these secure zones where the user (on their secure page) can submit a custom form and the data from that form goes directly into my CRM database within BC. I need to know who the form was submitted by as they will be submitting details regarding potential customers. (we are a business which has a number of agents/affiliates who work by bringing in business).
I am just getting to grips with BC so any help/advise would be great.
I look forward to hearing peoples responses.
Thanks a lot,
Leo

You can create custom form from BC end or use Muse form and then add that to any page. The page can be made secure , so that users have to login for access.
Once form is submitted , it would create a CRM case with a customer record. The details of form summary will be triggered with workflow notification , where you can see the details as who submitted the form and with what details.
More details :
www.businesscatalyst.com/LiteratureRetrieve.aspx?ID=35137
Thanks,
Sanjit

Similar Messages

  • VAT registration number in combination with country and company code

    Hi,
    Is there configuration where we can define the VAT registration number with combination of country and company code.
    thanx in advance

    Hi,
    Thanx for the reply.bt the issue is like we have a condition type zvat where condition table have the following fields departure country and destination country,The country of our company code is GB and we maintain a record for condition type zvat i.e GB (departure country) to GB (destination country) 17.5%.While creating a contract if vat is applicable we told user to maintain country GB in both the fieds i.e tax departure country and tax destination country in billing tab at header level of the contract .It is working fine for other company where  company code country is different then GB.But for this where company code  country is GB.An error occurs i.e.There is no vat registration number fot this comapny code XXXX for  country GB.
    Now how should i go about it?

  • Will Adobe make a product that is Adobe Muse combined with Adobe Edge Reflow?

    I love how Adobe Muse works, its simple and very easy to learn. The only issue I have with the program is, the sites that I produce from Muse is not a fully responsive site. I was wondering if Adobe will allow us to set-up our own breakpoints in the future like Adobe Edge Reflow.

    They work very differently, what i would like (and this section of the forum isn't meant for feature requests)
    is when you create a new muse site it asks what kind of site you want:
    Responsive
    static
    blog
    etc.... that would be nice.
    or just make it responsive.
    But i doubt this will happen soon

  • Multiple inner joins combined with outer and right.

    Hello
    Can someone give me an example of multiple inner joins?
    Meaning inner join on more than 3 tables. Can someone provide me sql statement that would be great?
    Also can you combine inner outer and right in one query if so how? Again, can someone provide me sql statement that would be great?
    Thank you so much

    You can look at my sample Re: Need Assistance to write a procedure for the below requirements!!!
    John

  • Advantages of having SAP R/3 related with SRM and CRM

    Hi:
    I wish to know what are the main advantages for my industry of having SAP  R/3 if my main clients and suppliers also have SAP R/3. How SRM and CRM work here?.
    Thank you,

    Hi
    SAP R3 is used for logistics of a organization, human resources,purchases and production,fianance,management,materials management.
    when bsuiness process is automated by SAPr3 it will reduces time, so less time consuming,faster, high quality when compared to manual business process, when your client also use same environment it will reduce the data migration and data missing, data synchronization,to rectify this lot of human resorces reqd and more time consuming for data migration
    so when compared to diffrent environments sap>oracle extra mainatning same environment lesess the time, improves data quality and efficiency less man power.

  • Problem with SDO_FILTER combined with Timestamp and Order By using JDBC

    I'm having a problem with using SDO_FILTER. I've included a test driver below. It seems that I'm having a problem with combining the SDO_FILTER, Timestamp, ORDER BY and a nested table using the Oracle 11.1.0.7.0 driver against Oracle 11g. The below query queryNoWork results in the following error:
    Caused by: java.sql.SQLException: ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "MDSYS.SDO_3GL", line 1320
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1034)
    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
    at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:791)
    at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:866)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1186)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3387)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3488)
    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
    at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.execute(WrappedPreparedStatement.java:299)
    All of the other query variations seem to work. The GEOM column referenced is a Linestring that has only 2 points, start and end. Any help on this would be greatly appreciated. Thanks!
    import java.math.BigDecimal;
    import java.sql.Connection;
    import java.sql.Date;
    import java.sql.Driver;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.Timestamp;
    import java.text.SimpleDateFormat;
    import java.util.ArrayList;
    import java.util.Enumeration;
    public class QueryTester
         public static void main(String[] args)
              try
                   SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
                   ArrayList<Object> queryParameters = new ArrayList<Object>();
                   queryParameters.add(new BigDecimal(0));
                   queryParameters.add(new Double(0));
                   queryParameters.add(new BigDecimal(180));
                   queryParameters.add(new Double(90));
                   queryParameters.add(new java.sql.Date(sdf.parse("2005-12-25").getTime()));
                   queryParameters.add(new java.sql.Date(sdf.parse("2005-12-26").getTime()));               
                   BigDecimal one = new BigDecimal(1);
                   DriverManager.registerDriver((Driver) Class.forName("oracle.jdbc.driver.OracleDriver").newInstance());
                   Enumeration<Driver> drivers = DriverManager.getDrivers();
                   while(drivers.hasMoreElements())
                        System.out.println(drivers.nextElement().getClass().getName());
                   Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@xxxx:1521:xxxx", "xxxx", "xxxx");
                   String queryNoWork = "select * from (select ROWNUM rowcount, a.* from (select * from TRACK_SEGMENTS where ( ( sdo_filter(GEOM, sdo_geometry(2003, 8307, null, sdo_elem_info_array(1, 1003, 3), sdo_ordinate_array(?, ?, ?, ?) ), 'MASK=ANYINTERACT') = 'TRUE' and END_DATE >= ?and START_DATE < ?) and 1 = 1 and 1 = 1) and ((START_DATATYPE = 'maritime_dense')) ORDER BY ID ) a) where rowcount between 1 and 30000";
                   String queryWorks0 = "select * from (select ROWNUM rowcount, a.* from (select * from TRACK_SEGMENTS where ( ( sdo_relate(GEOM, sdo_geometry(2003, 8307, null, sdo_elem_info_array(1, 1003, 3), sdo_ordinate_array(?, ?, ?, ?) ), 'MASK=ANYINTERACT') = 'TRUE' and END_DATE >= ?and START_DATE < ?) and 1 = 1 and 1 = 1) and ((START_DATATYPE = 'maritime_dense')) ORDER BY ID ) a) where rowcount between 1 and 30000";
                   String queryWorks1 = "select * from (select ROWNUM rowcount, a.* from (select * from TRACK_SEGMENTS where ( ( sdo_filter(GEOM, sdo_geometry(2003, 8307, null, sdo_elem_info_array(1, 1003, 3), sdo_ordinate_array(?, ?, ?, ?) ), 'MASK=ANYINTERACT') = 'TRUE' and END_DATE >= TO_TIMESTAMP('2005-12-25','YYYY-MM-DD') and START_DATE < TO_TIMESTAMP('2005-12-26','YYYY-MM-DD')) and 1 = 1 and 1 = 1) and ((START_DATATYPE = 'maritime_dense')) ORDER BY ID ) a) where rowcount between 1 and 30000";
                   String queryWorks2 = "select * from (select ROWNUM rowcount, a.* from (select * from TRACK_SEGMENTS where ( ( sdo_filter(GEOM, sdo_geometry(2003, 8307, null, sdo_elem_info_array(1, 1003, 3), sdo_ordinate_array(?, ?, ?, ?) ), 'MASK=ANYINTERACT') = 'TRUE' and END_DATE >= ?and START_DATE < ?) and 1 = 1 and 1 = 1) and ((START_DATATYPE = 'maritime_dense')) ) a) where rowcount between 1 and 30000";
                   String queryWorks3 = "select * from TRACK_SEGMENTS where ( ( sdo_filter(GEOM, sdo_geometry(2003, 8307, null, sdo_elem_info_array(1, 1003, 3), sdo_ordinate_array(?, ?, ?, ?) ), 'MASK=ANYINTERACT') = 'TRUE' and END_DATE >= ?and START_DATE < ?) and 1 = 1 and 1 = 1) and ((START_DATATYPE = 'maritime_dense')) ORDER BY ID";
                   String query = queryWorks0;
                   PreparedStatement s = conn.prepareStatement(query);
                   int parameterIndex = 0;
                   for (Object object : queryParameters) {
                        if (object instanceof Timestamp)
                             s.setDate(++parameterIndex, (Date) object);
                        else
                             s.setObject(++parameterIndex, object);
                   s.execute();
                   ResultSet results = s.getResultSet();
                   results.next();
                   System.out.println("executed query - " + results.getLong(1));
              catch (Exception e)
                   e.printStackTrace();
    }

    Is the TRACK_SEGMENTS table partitioned ?
    It looks like in the case where the SQL does not work, it is not using the Spatial index. So can you add some index hints
    in the query to force it to use the spatial index TRACK_SEGMENTS table ?
    siva

  • Adobe Muse: Design with freedom and leave the geeks to check the code

    I want to praise the development team for the idea Muse is projecting. I have used all shapes and manner of web authoring tool. Muse happens to be the only tool thats gives designers the freedom to design without hassles. Though, Muse is not yet fully developed but I'll advise the development team to continue to make the tool more powerful without limitations.
    My suggestion is for the development team to provide more features with less emphasises on 'widgets'. Not that they are not good, but I dont think it should be the focus of the development team. Please focus on the idea of 'design-then-allow-Muse(Using jquery/HTML/CSS/Javascript) to write all your design intent with those technologies.' That to me is innovative! Just the way Edge works. That way designers can create anything and not limited to widgets. Expose Muse to all known javascript/jquery effects/transitions/etc, drag/css cursor change/etc
    It will be nice if the dev team can look at this: http://www.k2.pl/#!/en/work/item/life-at-ful-throttle/ .
    Muse is just a lovely idea! It's just taking too much time to get it ready for real work! Kudos Adobe!

    Hi Rohit,
    Many thanks for your reply. Yes, they are set exactly as this
    Here is an example of what my page looks like in Muse:
    Here is it in my Browser (Safari): PLEASE NOTE GREEN TEXT POINTING TO SCROLL BAR BEING UP.....
    Notice how on the next pic, I have scrolled down (see scroll bar on the right) but my page content has not moved up (Again, see green text):
    Yup, it's probably an easy fix, but I don't know how to make Muse just 'do it'.
    Thanks for any help and advice you can give.
    Cheers,
    Angelique

  • Actions in combination with Checkobex and ToggleButtons

    Hello,
    I would like to link checkboxes and togglebuttons using actions. The togglebutton and checkbox that have the same function are created with the exact same action. Is there a way to make sure the right togglebutton and checkbox is selected at any moment without having to store all the buttons and checboxes in lists?
    So when I click on a togglebutton, the right checkbox is selected? The checkobxes would be JCheckBoxMenuItem in a JMenu, the togglebuttons JToggleButtons in a JToolBar.

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ActionsTest
        JMenuBar menuBar;
        JToolBar toolBar;
        public ActionsTest()
            initializeActions();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setJMenuBar(menuBar);
            f.getContentPane().add(toolBar, "South");
            f.setSize(240,200);
            f.setLocation(200,200);
            f.setVisible(true);
        private void initializeActions()
            JMenu menu = new JMenu("menu");
            menuBar = new JMenuBar();
            menuBar.add(menu);
            toolBar = new JToolBar();
            new GroupAction(menu, toolBar);
        public static void main(String[] args)
            new ActionsTest();
    class GroupAction implements ActionListener
        String[] ids;
        JMenu menu;
        JToolBar toolBar;
        AbstractButton[] abs;
        public GroupAction(JMenu menu, JToolBar toolBar)
            ids = new String[] { "one", "two", "three" };
            this.menu = menu;
            this.toolBar = toolBar;
            abs = new AbstractButton[ids.length * 2];
            addItems();
        public void actionPerformed(ActionEvent e)
            AbstractButton button = (AbstractButton)e.getSource();
            String ac = button.getActionCommand();
            System.out.println("ac = " + ac);
            if(ac.equals("one"))
            if(ac.equals("two"))
            if(ac.equals("two"))
            updateState(button);
        private void updateState(AbstractButton button)
            for(int j = 0; j < abs.length; j++)
                if(button == abs[j])
                    int k = j - 1;
                    if(j % 2 == 0)
                        k = j + 1;
                    abs[k].setSelected(button.isSelected());
        private void addItems()
            for(int j = 0, k = 0; j < ids.length; j++, k += 2)
                JCheckBoxMenuItem item = new JCheckBoxMenuItem(ids[j]);
                item.setActionCommand(ids[j]);
                menu.add(item);
                item.addActionListener(this);
                abs[k] = item;
                JToggleButton tb = new JToggleButton(ids[j]);
                tb.setActionCommand(ids[j]);
                toolBar.add(tb);
                tb.addActionListener(this);
                abs[k + 1] = tb;
    }

  • IOS4.2 kills Camera Kit operation in combination with USB-Sticks and more

    Hi guys,
    When I decided to go for an iPad, one of the main reasons why not to stay with Microsoft was the connectivity in combination with cameras and USB-sticks.
    Well then, the update to iOS4.2 killed this because the software seems to lower the max.current limit from 200mA down to some 20mA. This "unfriendly" action by Apple is in my opinion fraud. I bought a lot of accessories to work with the iPod and all of them I can now dump into the trash cane, because Apple is doing the same ignorant "politics" to consumer just like their biggest rival Microsoft.
    This is company arrogance in excellence....
    ...never again an Apple product, that was is, over

    I'm experiencing the same problem and Apple is jacking me around. A great product but behind the phone are no customer service.
    Bring back the true IPAD and apple fix the problem.
    Apple can read the Dissuasions and do something about it.
    Unhappy customer too

  • Video conference with Messages and FaceTime

    I would like to show two other people a Keynote. - I know it´s really simple with iChat and I think it hasn´t changed with Messages.
    But one of the two other people has only an iPad (2).
    So, is a combination with Facetime and iChat/Messages possible?
    2 iChat/ Messages User and 1 FaceTime User = 1 conference?

    No, that is not possible at this time. iOS devices only support text and FaceTime video chats.

  • GP and CRM link

    Hi,
    I'm new to CAF and would appreciate if anyone could advise me on how to implement a scenario with CAF and CRM system as below:
    Customers are sent emails with pdf form attached and after filling/maintaining forms, they should submit the form back to CRM system
    I understand that the above emailing scenario can be achieved by GP eg. Job Application Process tutorial. However,
    1) How does GP actually link to the CRM system?
    2) Can the Adobe form submitted back to the system create a Business Partner in CRM system?

    1) GP integrates to SAP CRM as SAP system. Setup SAP endpoint via the GP Administration view for your CRM system
    2) Adobe form can send data back to GP and GP can commit to CRM or you can also use adobe form to send directly to CRM BP web service or bapi. it's up to you.

  • APO and CRM security

    i have never worked with APO and CRM security. can anyone walk me through them. thanks

    >
    george G wrote:
    > Neither Have I ..but could wrk  on them after  reading few books on Security  from SAP
    >
    > Thanks
    famous last words .....APO & CRM are full of "features" when it comes to security.  Once bitten, twice shy

  • Muse 100% width elements and images have a small white gap running along the right hand side on mobile site

    On the mobile version of my site all the 100% width elements and images have a small white gap running along the right hand side. This looks very unprofessional. There are no other elements outside the area. Any ideas anyone? All advice would be greatly appreciated! Thanks

    Hello,
    I have checked you site on the phone and it seems that Zak is correct.
    Please go to the phone layout and make sure there is no element out side the browser area at the right side.
    You can simply do Select All to find if anything is outside the browser area. If you find anything you either need to delete it or you need to bring it in the browser area.
    If still an issue please share he muse file with us and we will investigate it further.
    Regards
    Vivek

  • Crystal Reports with MSY in CRM 2007

    Hi there
    We had built  some reports for CRM Mobile Sales 3.0/4.0 with Crystal Reports in Mobile System Maintanance. Then we upgraded to CRM 2007 and some people still use this old reports. Now we have found an error in one of the reports. When I want to modify the report in MSY I get the error "Error while modifying report; try again". I chose the report in MSY and I click on "Modify Report". Then I get this error and nothing happens.
    Is it possible that you can't edit Crystal Reports with MSY and CRM 2007 anymore? I found no information about this, so I hope someone can help me.
    What do we have to do to let Crystal Reports work with MSY in CRM 2007?
    Thanks in advance for your answers!
    Regards
    Marco

    Hi Marco,
    You might get this error if the reports were developed in CRM 3.0 and you want to modify in 4.0 because the dataconnection is different. I know there is some stuff on the marketplace which describes how to connect.
    May be it is a login issue and note 756331 helps.
    Btw. are you working for ASK in Koblenz CH?
    Whity

  • Any Experiences with OODBMS and WLS (also Javlin or VEJB)

    Hi guys,
    we are evaluating WLS in combination with OODBMS and RDBMS. Has anybody
    done this before and want to give us some hints on it. We take a look at
    Versant and Object Store versus Oracle 8i. We have to build a high
    traffic site with approx. 1000 hits/sec. We intend to modell the
    business logic in the EJB Modell. We have to present product-infos, news
    etc from a database. There are to pretty new containers out there :
    Javlin and VEJB(Versant). Has anybody experience with these products ?
    As I learn from this newsgroup there seem to be some performance
    problems regarding Entity Beans. I would like to know if this problems
    occur with OODBMS or RDBMS or both. Is the Container the bottlenack or
    the database ? It seems that from the performance point of view
    stateless Session Beans with pooled jdbc-Connections are the best
    solution. Is this right. Has anybody put in Java-Instances right in an
    OODBMS without involving a container ? What experiences have you made ?
    Thanks for your help
    regards Oliver

    Oliver,
    I suggest contacting the ODI or Versant folks. They can provide a wealth of
    benchmarks that explain why they're up there in performance with RDBMSes.
    Michael Girdley
    BEA Product Manager
    Oliver Renz <[email protected]> wrote in message
    news:[email protected]..
    Hi guys,
    we are evaluating WLS in combination with OODBMS and RDBMS. Has anybody
    done this before and want to give us some hints on it. We take a look at
    Versant and Object Store versus Oracle 8i. We have to build a high
    traffic site with approx. 1000 hits/sec. We intend to modell the
    business logic in the EJB Modell. We have to present product-infos, news
    etc from a database. There are to pretty new containers out there :
    Javlin and VEJB(Versant). Has anybody experience with these products ?
    As I learn from this newsgroup there seem to be some performance
    problems regarding Entity Beans. I would like to know if this problems
    occur with OODBMS or RDBMS or both. Is the Container the bottlenack or
    the database ? It seems that from the performance point of view
    stateless Session Beans with pooled jdbc-Connections are the best
    solution. Is this right. Has anybody put in Java-Instances right in an
    OODBMS without involving a container ? What experiences have you made ?
    Thanks for your help
    regards Oliver

Maybe you are looking for

  • Continuing inability to resolve Mobile Device Support failed to install

    Windows Vista Premier Home 64 bit on HP desktop I see this is clearly a common and frustrating problem esp for various 64 bit versions. Mine just happens to be Vista 64 and HP but I see other seemingly similar problems with other versions of the OS a

  • Advice on best arrangement for home network

    This is my first post so go easy on me....please?! I have moved into a new apartment and am trying to set my network is the best way, but am struggling slightly. I have a WRT150N and WRVS4400N (Don't ask why I have both) both of which are brand new,

  • I've really stuffed up the installation - how do I start over?

    This is turning into a nightmare. I purchased CC the other day and couldn't download any apps - I got the Download Error message that several other people have referred to. I read a few forums, tried verifying my address, logged out and in again etc

  • Strange behaviour with my updating of combo box

    public class EditVideoDialog extends JPanel implements ActionListener{      JTextField text_Name, text_Price, text_Producer, path_Picture;      JTextArea textarea_Description;      public JComboBox combo_Genre, combo_Name;      String old_VideoName;

  • Lync role base number

    Hi, I have a requirement where users can change his business / role temporarily, to say, handle front-desk for 1 hour in case of urgency. From my lync client (or from web), i should be able to select the business/role and my téléphone number changes