How do I submit a case to BC?

I do not see  how to cubmit a case to BC hen my website is not fundtioning correctly. All I can do is search forums - how do I submit a case?

http://www.businesscatalyst.com/contact

Similar Messages

  • How do I submit a case to support?

    I have several questions that have not been answered by the forums, and I need to get them resolved. But I can no longer figure out how to submit a case. I have tried the service.sap.com/contact-bosap and service.sap.com then clicking on the Business Objects link which then asks me to login, but none of the 3 user names and passwords that I now have to have for SAP works on this site. Do I need to reregister or something? Help Please.
    Thanks

    As long as you have a valid support contract, you should be able to post a case from here:
    https://www.sdn.sap.com/irj/sdn/businessobjects-support
    If you are not able to get through this, you'll have to contact customer service. Here are your contact options:
    support ph      1-800-677-7271
         1-800-877-8234
    Customer service mail boxes
         Americas: support.bosapamerica@ sap.com
         EMEA: support.bosapemea@ sap.com
         APJ: support.bosapasia@ sap.com
    (remove the spaces in the emails above)
    Ludek

  • How do I submit a bug to microsoft for TEE

    I'm not sure but I think I may have found a bug in TEE on Linux.  The
    question on stackoverflow was answered but I've just run into the same problem when trying to merge our trunk to my branch.  In short, the root of the problem is that was a directory named
    Directory.  Over the course of time, our naming conventions changed and this directory became named
    directory (the case change).  Interestingly, two files (a *.cpp and *.h) somehow were still associated with the first directory name though the directory named was changed and preserved the new case.  The problems should be apparent for Linux
    users.
    Now, as the link I provided mentions, I did try to fix this by using the tf rename command, but after the command was executed to rename the first file, I could do nothing more using TEE because of this error:
    java.io.FileNotFoundException: /home/andy/devel/project/directory/code.cpp (No such file or directory).  Ok, I just moved on.  A coworker executed the very same command from a Visual Studio Command Prompt and it worked and he was
    able to check in the named files.  "Great," I thought, I'll merge with main and continue.  I did so using the
    tf merge -recursive <source_branch> <dest_branch> and promptly ran into the same problem when trying to do
    tf status and any other tf command. 
    It seems that there might be a bug in how metadata is handled in this case when using TEE in Linux.  How can I submit this to Microsoft?

    http://www.apple.com/feedback/itunesapp.html
    https://discussions.apple.com/thread/4553482 - "Many albums' artwork doesn't display in my Library.  However once I pull up the info window for one track, and return to the album list, the artwork magically appears."
    "...some album covers were missing in album view. Apple says this is a rare bug, but one it has solved and will fix in a minor update soon." - http://allthingsd.com/20121204/itunes-gets-an-upgrade-without-missing-a-beat/

  • How Can I Submit A Concurrent Program Using Form Personalizaton?

    How can I submit a concurrent program? Please help!
    Thanks in advance
    PhuTri

    I think the problem in your case coould be that the Concurrent Program you are trying to run has not been registered in the responsibility from which you are runnig it.
    For eg. You are trying to run a program from Inventory Super User responsibility and the request group attached to the responsibility is say 'RG Inventory', but the concurrent program which you are trying to run from your inventory super user responsibility is registered under some other request group say 'RG Order Mangement' which is not attached to the nventory responsibility.
    So register the program under correct request group and see if this helps you.
    Other possibility is that check if you have permission to submit request from that responsibility. You can check this by going to the Menu ->View If the Request menu is disabled then you cannot submit the request.

  • How to achieve SUBMIT for the current page when I click other tab?

    Problem: How to achieve SUBMIT for the current page when I click other tab?
    Description: I have a two-page application and each page associates with a tab. Say page1 associates tab1 and page2 associates tab2. In each page, I have a submit button, a after submit process associated to the submit button, and a tabular form. For page1, I fill out the fields and hit the button. The page1 will appear again and I can see the data I have insert. However, If I fill out the fields and click the tab2 (page 2) instead. when I come back to page1, the data I filled out are all gone. Is there any way in HTML DB to force the submit in the current page after you click other page. If use JavaScript, what is code looks like.
    Appreciate your time and your answer.
    Mike

    Scott,
    just for clarity, if I understood correctly what you said there are two possibilities:
    1) keep the standard tab branch and give up the possibility of validating page items. Below you can find an example of such cases.
    2) Replace the template substitution string and perform a "custom" button-like submit also adding a branch to the main page associated with the tab. Page items will be validated if the branch firing point is set after the validations.
    I couldn't find an example of the latter, but I found easily an example of the former:
    it's the "Report attributes", page 420 of app 4000.
    If you enter 'aaa' in the "Number of rows" form field and then you press "apply changes", htmldb correctly displays an inline error message saying that the value must be numeric. On the contrary, if you click on the "Region Definition" tab, htmldb takes you to a page showing an oracle exception:
    ORA-20001: Error in DML: p_rowid=4785927011172906402, p_alt_rowid=ID, p_rowid2=, p_alt_rowid2=. ORA-20001: Invalid numeric value aaa for column PLUG_QUERY_NUM_ROWS
    Bye,
    Flavio

  • How to do submit without any button

    Hi ,
    i am using Jdev 10.1.3.1 .
    i am using JSF ADF BC Technology. i am having a problem. how to do submit the values in inputHidden field without submit or any button.
    even i bind the method in valueChangeListner like below.it is not submit.Am i did any mistake? plz go thru this code and help me.
    Hidden there is no auto submit attribute.
    Code:
    <af:form>
    <af:inputHidden id="startDate"
    value="#{bindings.Eventdate.inputValue}"
    valueChangeListener="#{bindings.Execute.execute}"
    required="false"/>
    <af:commandLink text="search" actionListener="#bindings.Execute.execute}"/>
    OR
    <af:commandButton actionListener="#{bindings.Execute.execute}"
    text="Search"
    disabled="#{!bindings.Execute.enabled}"/>
    </af:form>
    i dont want to use command link or command button for action. how to submit the value in hidden field which is set by javascript function to the corresponding action.
    could you please help me out regarding this?? .
    Thanks & Regards,
    Arun

    Let me see if I have your use case correctly:
    The user views the page, and some event triggers some Javascript code. The Javascript code needs to set the values of a hidden field, then submit the form, executing the action named Execute in the bindings.
    First of all, get rid of the valueChangeListener. If you were to use a valueChangeListener, it would have to reference a method in a backing bean that takes a valueChangeEvent as its argument and returns void. Now try this - I haven't tried it myself, so I don't know that it will work, but I think it will. On your page:
    <af:form id="theForm" defaultCommand="executeButton">
      <af:inputHidden id="startDate" value="#{bindings.Eventdate.inputValue}" />
      <af:commandButton id="executeButton"
                                    actionListener="#{bindings.Execute.execute}"
                                    text="Search"
                                    disabled="#{!bindings.Execute.enabled}"
                                    inlineStyle="display: none;" />
    </af:form>And in your Javascript function:
    document.theForm.submit();The basic idea is that the defaultCommand property of the form says that any submit of the form defaults to the button with the id=executeButton, unless some other button or link is explicitly clicked. The button has an inlineStyle with display none, which hides it from the user. Then the Javascript submits the form which ought to execute the default command.

  • My 9 year old somehow ran up $99.00 while playing games on my iPad. How do I submit for a refund?

    My 9 year old son somehow ran up $99.00 in app purchases on my iPad. How do I submit for a refund? I have been all over the website but of course, this is the ONE thing I can't find.

    There are no refunds.
    You can try contacting itunes support and asking for an exception.
    Click "Support" at the top of this page, then click the link under "Contact Us"

  • IPod touch 1st generation could not be restore on iTunes, an unknown error occurred (1). how can i fixed this case?

    My iPod touch 1st generation could not be restore on iTunes, the message was "The iPod "iPod" could not be restore. an unknown error occurred (1)".
    my serial number is AB1905714N
    how can i fixed this case?
    thank you

    ERROR (1)
    - Place the iPod in DFU mode and then restore
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - Try on another computer
    - Try another cable           
    - Also, confirm your security software and settings are allowing communication between your device and update servers.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar     

  • I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    I want to connect a FLIR camera to my iPad. How can I submit a PAL signal to my iPad?

    Thanks, too bad. Now I have to get a different tablet, ****.

  • How can i submit form-data with acrobat pocket pc

    how can i submit form-data (http-post) on a PPC?
    how can i store the data offline?
    which submit-functions are availabe for the pocket pc reader?
    do i need ARES?
    where can i find a documentation of of the available functions for the ppc version?
    where can i fond form-samples for ppc?
    from the docu on my pocket pc:
    Submit form data using handheld devices over a wireless connection. If you are working offline, the data is temporarily stored, then submitted once a connection is established. Send forms by e-mail or directly to the destination server using a cradle or cable

    To your question regarding the Pocket PC version of Reader, I downloaded Adobe Reader for Pocket Pc 2 and installed it on my HP iPAQ . I then loaded my test PDF file onto the iPAQ. The Reader for Pocket PC preformed an email submission fine. However, I received no indication that anything happened when I tried an HTTP Post. So I think you can only do an email submission.
    In general, I have been testing to see how much I can do without the Live Cycle Reader Extensions, since for sure I will never be able to purchase them. What I have found is that for Acrobat Reader 7, the email submission works for all of the people I have asked to test it, but the HTTP Post has worked for only one of the two people who have tested it so far with Reader 7 (the one for which it worked claims that he only has Reader 7 on his computernot Acrobat).

  • How do I make search case sensitive

    I created a search region of type "query" using a simpleSearchPanel. The instructions say the search is case-sensitive when running the page but it appears it is not. Can anyone tell me how to make the search case sensitive?

    Please check if you have followed these guidelines
    Rule 2 : If your view attribute is of type String(VARCHAR2), and if the item has the Selective Search Criteria property set to false, then OA Framework generates a case-insensitive simple WHERE clause based on the CRITERIA_CONDITION and the CRITERIA_VALUE.
    Rule 3: If your view attribute is of type String(VARCHAR2), and the item has the Selective Search Criteria property set to true, then OA Framework generates a case-insensitive WHERE clause using a four-way join to ensure that the index is used.

  • But how to use submit??

    but how to use submit?? i mean how to generate an event thru submit and how to receive these values in the next page

    but how to use submit??You can do it by using Simple HTML Code
    <INPUT TYPE="SUMBIT" VALUE="SUBMIT">
    i mean how to generate an event thru submit and how to receive these values in the next pageTo generate an event through Submit! You need to do this using java script.
    I think you are talking about assingning some values on the click of submit and collecting those values in the next page!
    To do that
    keep some input fields in page1. Then try to assign the values to those input fileds using javascript through onclick event.
    <INPUT TYPE="SUMBIT" VALUE="SUBMIT" onclick="javascript:callSomeFunc()">
    In
    callSomeFunc() {
    //Assign values to the hidden fields
    In next page say page2 collect those values using request.getAttribute(" InputHiddenFieldsName);
    That's it.

  • How do I submit netflix ID using Apple TV remote

    How do I submit the Netflix ID using Apple TV remote?

    Welcome to the Apple Community.
    just use the up, down, left and right buttons to navigate to each letter or number, pressing enter when the selection is correct, when complete navigate to and select the submit button.

  • How to use SUBMIT for transaction program?

    Hello,
    Please help me with following requirement.
    I need to pass selection screen values from ZReport to transaction F.01 and collect displayed data output in internal table in ZReport and use internal table for further processing.
    Please let me know,
    1) How to use SUBMIT with transaction code or modulepool program (<b>remember I don't want to submit report program</b>)?
    2) How to collect F.01 output data and bring back to Zreport ?
    Thanks in advance.

    Hi ab,
    1.  How to collect F.01 output data and bring back to Zreport
    The data (of output) can be collected,
    for display purpose.
    We cannot get the full data, which makes sense.
    2. The data shall be collected, in a printable format only,
       ie. with vertical lines, horizontal lines (if any) etc.
    regards,
    amit m.

  • How do we submit a new build/update to the stores?

    We have an active/live app that was previously done by an agency via their own server. We have terminated their service, and now via Adobe DPS, how do we submit a new build/update to the stores (instead of submitting as a new app)?
    We are new to Adobe DPS.

    Hi Sarah, the following document should help: Migrating your applications to Adobe Digital Publishing Suite (iOS edition) | Adobe Developer Connection

Maybe you are looking for