Can I use PHP code in BC

Yes, that is basically my question. Can I use php coding in Business Catalyst? And does BC us mysql database?
Thank you

Hi there, Please do a quick forum search before posting. This is asked a lot - You can even see a post in the frequently asked questions panel on the main page of this forum section.
BC is a SAAS - Software as a service and a .Net based SQL system - It does not use PHP or mysql and you can not access the server side code.
So to your question - that is a no I am affraid.

Similar Messages

  • Can we Use T Code MIRA instead of MIRO for posting incoming invoice?

    Hi All,
    Can we Use T Code MIRA instead of MIRO for posting incoming invoice?
    While trying to post a incoming invoice using MIRO, I am getting a error "HKONT is EMPTY". But when using MIRA i could get the invoice posted.
    And in which situations we use MIRA?
    Thanks in Advance
    Gopi Krishna

    Hello
    MIRA is for Invoice Verification in the Background
    Purpose
    This process is suitable for the following transactions:
    Posting invoices with mass amounts of data for which no item check is required
    Posting invoices referring to transactions not yet entered in the system
    Entering Invoices for Verification in the Background (Without Item List)
    When verifying invoices in the background, you enter only a small set of document header data, such as the invoice amount, the currency and the tax information. You also allocate the incoming invoice to a purchasing document or a vendor. The system saves the data and allocation criteria you enter.
    At a later point, the system verifies the invoice in the background. It uses the allocation criteria you entered to determine the item list. It then calculates the net total from the item list.
    If the net total = gross amount invoiced - tax amount (+/- tolerance), the system posts the invoice in the background.
    If the net total ¹ gross amount invoiced - tax amount (+/- tolerance), the system does not post the invoice in the background. It saves the document header data and the items determined in the background; the saved document then has to be processed manually in Invoice Verification.
    With Invoice Verification in the background, the system does not check for any quantity or price differences at item level. Since you do not enter any actual invoice item data, the system uses the default data for comparison.
    Regards
    Gregory Mathews

  • How can i use jquery code in ExtendedRenderKitService?

    i'm try to using jquery like this way,but cause js error.
    so,can i use jqeury code in ExtendedRenderKitService? how?
    private String jsFunction() {
    StringBuilder sb = new StringBuilder();
    sb.append("$(document).ready(function(){");
    sb.append("var spans = $('span');");
    sb.append("alert(spans.length);");
    sb.append(" });");
    return sb.toString();
    public void searchTree(ActionEvent actionEvent) {
    favoriteTreeManager.searchTree(searchCriterium);
    FacesContext context = FacesContext.getCurrentInstance();
    ExtendedRenderKitService extRenderKitSrvc =
    Service.getRenderKitService(context, ExtendedRenderKitService.class);
    extRenderKitSrvc.addScript(context,
    jsFunction());
    }

    Hi,
    $('span') is invoked when the page renders if I remember correctly. Since using JavaScript from a managed bean invokes a function, the use of JQuery does not work. You can run a little test. If you get JQuery working from a URL browser typing javascript:... command ... then the same probably works from a managed bean
    Frank

  • Can i use C Code at Compact Vision or Compact Rio?

    hi,
    i have a very important question!!
    can i use the C code that the Vision Assistant generates, in the compact vision system, even in DLL form??? if yes, how can i download it to the compact vison?
    can i use C code at the compact rio?
    greets,
    gerald

    You can use C-Code on Realtime targets (Such as C-Rio or a Compact Vision system) as long as you compile a DLL out of it, and call this DLL from LabView. Take care that no Windows-Specific things are in the dll (MFC, ActiveX, Windows SDK etc.).
    As you always need LabView, to use the dll, it would be better to create a LabView VI from the Vision Assistant, and download this VI to your Compact Vision System.

  • Can we use PHP with Portal.

    Hello !
    Can we use PHP with oracle portal.
    Can we make portlets in PHP and use it in oracle portal.
    If yes then how .
    Any kind of help will be appreciated .
    Regards
    Seemab

    thank U marianfromspringwood..
    one more doubt please tell it clearly,
    i had bought ipad 2 wifi 3g 32gb  AT&T model from sanfrancisco, do i need to activate my ipad2 in america it self
    by AT&T ,or can i activate it in india with airtel,vodafone,bsnl,idea,etc gsm service provider. and weather my ipad2 wil work correctly in india, and if i have any problem in future then can i get assistance from india only or should i send it to america..............??

  • If error submit can I use php & it returns with kept details?

    Hi I was wondering if using php I can check the registration
    form for errors e.g. not filled out when required and upon return
    they can still have the details they already submitted still there
    so they don't have to re-fill the form.
    Thanks for you help.

    > Personally, I think that the code Murray gave you is
    unnecessarily complex
    > for this scenario.
    <input name="firstname" type="text" id="firstname"
    value="<?php
    echo(array_key_exists('firstname',$_POST))?$_POST['firstname']:'Enter
    Your
    First Name'); ?>">
    There's no doubt! It's home-grown.... 8)
    You recommend this -
    <input value="<?php if (isset($_POST['first_name'])) {
    echo $_POST['first_name'];} ?>" type="text"
    name="first_name"
    id="first_name" />
    Is there any real difference (other than the letter count) in
    using
    array_key_exists() and isset()?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "David Powers" <[email protected]> wrote in message
    news:[email protected]...
    > jjjhbj111 wrote:
    >> Thanks for the help. Sorry David I don't use
    Dreamweaver8 and still on
    >> php4.
    >
    > The necessary code needs to be inserted by hand or using
    the Server
    > Behavior Builder, which is also in MX 2004 (and possible
    MX, too). The
    > code involved is compatible with both PHP 4 and PHP 5.
    >
    >> So I gather I will need to set up a variable $error
    first but do I still
    >> use key_array_exists()
    >
    > Personally, I think that the code Murray gave you is
    unnecessarily complex
    > for this scenario. Follow the pattern that I gave you
    and test it to see
    > how it works.
    >
    > If you're still at the beginning stages of PHP, you
    would probably get a
    > lot out of my book, even if you're using MX 2004.
    Chapters 5 and 6 are
    > devoted entirely to hand coding, and most of the
    Dreamweaver server
    > behaviors are common to MX 2004 and DW8.
    >
    > --
    > David Powers
    > Adobe Community Expert
    > Author, "Foundation PHP for Dreamweaver 8" (friends of
    ED)
    >
    http://foundationphp.com/

  • Can i enter php code into html snippets?

    I am an sql/php newbie ... and have my site hosted by a company which offers me sql and php hosting (unlike dotmac I understand) ...
    I have created an sql database on their server and have written a page in html/php to display the results of a simple search ... can I insert this into iweb page using snippet - as I have tried and get a page cannot be displayed message where the snippet box would be on the webpage. (you can see this by clicking on the guestbook link on www.antandcleopuss.com)
    I am wondering if iweb can insert php or if it is only html?
    If iweb doesn't like php inserts then I will have to export my pages to a folder, then open them in a text editor to insert the php there?? (seems like an awfully long way round)
    Any help gratefully received
    ant

    You can add PHP code AFTER publishing the webpage.
    Then change the extension to .php.
    Here's a page the explains how to do it. It's not PHP specific but the routine is the same.
    http://web.mac.com/wyodor/Ajax/
    Of course you can add a PHP page to the HTML Snippet with an iframe.

  • How can i use a code for an app in venezuela that was sent to me from the states?

    Please my cousin sent me an app as a gift but when i try to download it pops a message that says that my code will work just for store in the us, does anybody knows how change that code or any other way to use it here in Venezuela? thanks a lot

    As stated, that code will only work in the US App Store.  Ask your cousin to contact iTunes support, explain your situation and see if they can issue him a code that will work in the Venezuela store.
    http://www.apple.com/support/contact/

  • Can I use this code to self Generate month ? ie Jan, Feb, Mar

    Hi can some one tell me is this possible to do.
    I am making a Date Of Birth using combo box�s this is the code I am using to generate the date.
    My question is can I use this for the month i.e. Jan, Feb, Mar etc
    private void DayOfTheMonth(int highNumber,JComboBox comboBox){
    comboBox.addItem(" ");
    for (int index = 1; index < highNumber; index++) {
    comboBox.addItem(String.valueOf(index));
    private void DaySpecificComboBox()
    //Day is stopat 32 as there is 31 days in the month
    DayOfTheMonth( 32, DayjComboBox);
    }

    Hi,
    This can be done with the help of your abaoer, you can have the required texts from the table T009C, otherwise the programmer can hard code the months as you given.
    Regards,
    Vasu.

  • How can i use ADF code in Trinidad

    Hi,
    I'm having an small Application which is Implemented to some extent using oracle ADF faces components But now, as the Trinidad is an open source i would like to do it in trinidad.
    If i replace the libraries to trinidad does my implement code in ADF Faces components needs to be Change,
    Please Suggest me how can use my ADF code in Trinidad.
    Thanks.

    Hi,
    Thanks for the Information a lot,it will helps me a lot.
    i am unable to navigate to down load the libraries given in oracle site in "How-to configure Apache Trinidad components in Oracle JDeveloper " can u help me,
    how can i get libraries to use in Oracle Jdeveloper for Trinidad.
    Can i use the libraries given on the Apache MyFaces Trinidad site (http://myfaces.apache.org/trinidad/download.html) but the libraries are different than the oracle given.
    Please Help me what libraries to used in Oracle jdeveloper 10g for trinidad.
    Thank You.

  • When can I use USSD code in iPad ?

    Dears,
    I'm using iPad Mini 2 with Cellular. Sometimes I need to use USSD code to check internet balance but i can't.
    Do you have plan to update USSD Code Function in iPad in the future ?
    Best Regards,
    Phatcharaphon JO

    crazyiv wrote:
    Do you have plan to update USSD Code Function in iPad in the future ?
    Personally, no, I have no such plans.
    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Using PHP code hinting in Dreamweaver CS5 | Learn Dreamweaver CS5 & CS5.5 | Adobe TV

    Learn how easy it is to create PHP code by using some of the new code-hinting features in Dreamweaver CS5
    http://adobe.ly/wjmnc1

    I've been using Dreamweaver to create php based websites with the popular Zend Framework 1.  I'm now trying to integrate Dreamweaver with ZF2 and the Dreamweaver is giving me errors for lies such as:
    $loader = new Zend\Loader\StandardAutoloader(array('autoregister_zf' => true));
    and
    use Zend\Session\Container;
    even though the lines are correct.  Do I have to do anything special in Dreamweaver so that it recognizes these statements as not being errors?

  • Can I use Ultraviolet codes on iTunes?

    I Wanna buy a movie on Amazon but it saids ultraviolet not digital. So my question is can I use the ultraviolet code on iTunes?

    Best to look for the logo

  • Using PHP code to count downloads

    Hi,
    We are hosting our XML code here: http://krslynx.com/podcast/GTSPodcast.xml for our podcast A Good Talk Spoiled. We have no idea how many downloads we are getting so we had someone design a bit of PHP code (http://krslynx.com/podcast/pod.php) to count the downloads.
    In order to make this work, we change our enclosure url from http://krslynx.com/podcast/GTSWeek2.mp3 to http://krslynx.com/podcast/pod.php?podcast=GTSWeek2.mp3. Inserting pod.php?podcast= before the episode file name means that the data for the downloader is captured but the user of the podcast APP gets the error message "Episode Unavailable - This episode is temporary unavailable from "A Good Talk Spoiled Golf Podcast".
    I tried to insert this technology for our latest episode but it didn't work so I am now testing this technology on Week 2's episode.
    Does the podcast app / iTunes not support PHP technology?
    Thanks in advance for your help,
    Bobby.

    I can't test the Podcasts app, but when subscribing in iTunes the Week 2 episodes does not show, which means that iTunes is not seeing the episodes as containing playable media.
    This Apple help page:
    http://www.apple.com/itunes/podcasts/specs.html#tracking
    says
    The URL before the GET-style form values (before the first ?) must end in a media file extension (e.g., .mp3). To work around this, the feed provider can alter the URL from this:
    http://www.podcaster.com/load.php?f=&Wipeout.php
    to this:
    http://www.podcaster.com/load.mp3?f=&Wipeout.mp3
    Notice how it says load.mp3 instead of load.php. It should be possible to accomplish this via various means, such as web server rewrites. iTunes looks at the extension of the path part of the URL, i.e., the part before the "?".
    which explains what the problem is.

  • Can I use Edge Code to modify my outdated FreeBsd site?  I have Edge Code installed on a Mac.

    Do people do this?  How would it work?  Thanks for any guidance.

    You can edit the source code to any website using Edge Code as long as the source files are accessible locally on your computer.  So if the website lives on your FreeBsd server, you'll need to copy them onto your Mac first before you can open them, then upload them back to have your changes reflected on the live site.  Extensions like FTP Sync can help with this, or you can do it manually.
    Hope that helps!
    - Peter

Maybe you are looking for

  • Print out of MSDS

    Hello, I would like to take a print out of following document when i do the business transaction. 1.if do the GR in MIGO i should get label. 2.When i do the delivery in VL01N i need to get MSDS. 3.And SOP as well. can you please tell me what is the p

  • Need help in Arabic Report !!!!!!!!!!!

    Hi all, i am devoloping a bilingual application. In the report i want to change the direction based upon the language selected. ie, if the language is english, the direction should be from left to right and if arabic the direction should be right to

  • Apple TV 3 Toast?!

    So here's the deal...I bought an Apple TV 3 a while ago and it was working fine. I did a software update and it worked fine after that as well. Then, one day, I went to turn the Apple TV on. This is what it did: - black screen with large Apple icon a

  • How to read header text from VF03 into smartfrom

    Hi all, i want to print header text from vf03 in smartforms bye

  • Integration of ESS Portal and SAP

    Hi, Project Systems report  RPSISKB000 - Capacity Requirements Overview  (t-code CN50N) is a report works correctly when analyzing time that was entered via the R/3 GUI in transaction CAT2 u2013 Time Sheet: Maintain Times.  However, when executing ag