Removing Commerce Functionality from Basic Portal Config

Is there any documentation as to how to go about removing the commerce, ad and campaign functionality from the Basic Portal Domain Configuration? Or is there an easy way to create a Portal Domain Configuration which does add this in in the first place?

Yeah, thats easy enough. There are still a bunch of residual tables in the DB and stuff like that though. It seems that there ought to be some sort of documentation as to how to strip that stuff out.

Similar Messages

  • Problem: Intermittant accesst to remove DVR function from work, plus unrelated(?) hub issue

    Hi folks.
    We have the DVR with media manager and multiroom and all that.  I love it, but two things are going on.
    1: I can sometimes, but rarely, get to remove DVR functions from the webpage. When I log in I can see  the caberbox status that tells me how many hours of recordingI have left. However, I don't see an icon on the left that lets me record or delete things, nor can i see anything when I click the DVR button from the cablebox status page.  Whats going on? Sometimes I can see it, but not often enough.
    2: When watching DVR'ed programs in the bedroom, occiasionaly we get a popup message that covers the screen saying something about losing connection to the hub or something like that. IT then stops us from watching the recorded program, and makes us go back again from the begining. Any idea what thats about?

    BDMacD wrote:
    Hi folks.
    We have the DVR with media manager and multiroom and all that.  I love it, but two things are going on.
    1: I can sometimes, but rarely, get to remove DVR functions from the webpage. When I log in I can see  the caberbox status that tells me how many hours of recordingI have left. However, I don't see an icon on the left that lets me record or delete things, nor can i see anything when I click the DVR button from the cablebox status page.  Whats going on? Sometimes I can see it, but not often enough.
    2: When watching DVR'ed programs in the bedroom, occiasionaly we get a popup message that covers the screen saying something about losing connection to the hub or something like that. IT then stops us from watching the recorded program, and makes us go back again from the begining. Any idea what thats about?
    There have been hub errors and other issues with HM DVR and I believe it is fixed with th 1.6.2 software that is being rolled out nationwide. There is a post about 1.6.2 that shows the remaining schedule of where and when. If you go to menu/ settings/ System Information, it will show you what version you have.
    Here is a link to that posting.
    http://forums.verizon.com/vrzn/board/message?board.id=FiOS_TV&thread.id=8917
    Message Edited by prisaz on 03-26-2009 05:10 PM

  • Removing Aggregate Functions from the Action Menu

    Hi People,
    I'd like to remove the following aggregate functions from the action menu on a report, if possible:
    1. Minimum
    2. Maximum
    3. Median
    Is this actually possible, or am I stuck with them? I've had a good sniff around, but can't find any way to remove them so far.
    Cheers.
    James

    Ok, first click on your name in the menu bar. Then click on "Users&Groups Prefrences..." You should see a little house icon next to 'Login Options" under the menu where all user accounts are displayed. Click on it. Where it says "Show fast user switching menu as" and next to it a dropdown saying "Full Name" change that to icon. After you have done that, the name should be replaced with an icon. Hope this helped.

  • How to remove logoff button from the Portal?

    Could anyone help me to remove the logoff button from the Portal? I am using netweaver portal 7.0 Thanks!

    Hi Michael,
    Thank you for your reply!
    Can I do it through the portal or I have to do customized programming in NWDS? Could you please show me step by step in details?
    In the future the portal will be use SSO with active directory so user does not have to login/logoff. I think the session in the server will be closed after a couple of minutes. What do you think?

  • Remove a Function from SAP.Functions (opposite of .add)

    Hi,
    I have a function written in SAP which I call several times with new importparameters (called by VBA/Excel).  The output goes to a table.
    Although the functions clears the table, the table just keeps growing in the result.
    It seems like the data is kept, but I guess with every new call all the previous functions get called as well, so I need to unload the function every time (un-add it ), however I don't know how to do this (I didn't try obvious commands like REMOVE or so, as I guess it might reset also the connection).
    Can anyone help me with this ?
    Thanks,
    Alain
    In addition, some snippits:
        Set functionCtrl = CreateObject("SAP.Functions")
        Set sapConnection = functionCtrl.Connection
    (than login is done)
    The above is called only once, the next part several times with new matererialnumbers....
       Set theFunc = functionCtrl.Add("YRFC_MyFunc")
       theFunc.exports("Mat") = MatNr
       FuncResult = theFunc.Call
        If FuncResult = True Then
            For Each veld In theFunc.tables("TABUIT").Rows
                Cells(teller, 6) = veld("MFRNR")
                Cells(teller, 7) = veld("LIFNAME")
                Cells(teller, 8) = veld("HTNNR")
                Cells(teller, 9) = veld("MFRPN")
                Cells(teller, 10) = veld("MSTAE")
                teller = teller + 1
            Next
            Set theFunc = Nothing
        Else
                Cells(teller, 6) = "???"
        End If

    If I clear the table with 'free' i.s.o. 'clear', the problem doens't occur...(I had to change something else when I remembered that clear isn't always the best for Tables)
    However, now just for fun, if any knows if a function can be removed, please reply anyway

  • Did Apple remove the search function from this forum?

    I'm trying to find out if a topic has already been posted here, but I can't seem to find the Search Discussions function, which I'm certain used to be on the right of the screen.
    Did Apple remove this functionality from the Discussions forum?

    It's been temporarily disabled while they address some issues we're having with the forums lately.
    Cheers!
    -Bryan

  • Calling function from Backing Bean or JSP page

    We are on Jdeveloper 10.1.3.3.0, ADF Faces, JSF Faces .., Currently there is a function call from Javascript event (onmouseover) in the JSP page. I want to call this function from a backing bean or JSP page, as I have to pass some values to this function.
    For Ex., I have a function call like return submit('A','B','Test'); on the Javascript event (onmouseover) in jsp page. I want to remove this function from the javascript event and call from backing bean or jsp page to pass some values into the submit() function. I appreciate if anyone can give some example of how to call this function from backing bean or jsp page in the <SCRIPT> or <SCRIPTLET>
    Thanks,
    Ram

    A use case would be helpful so that we can get a better idea of what you want to do.
    As a general rule, there is no way to call a client side Javascript function from a backing bean, which is server side. However, there are ways to inject information from a backing bean into your Javascript call. For instance, I have an application that uses Google Maps API. It has an onload call to a Javascript function that builds the map and designates it's center point. The center point comes from a backing bean as latitude and longitude properties. So here is my body tag:
    <afh:body onload="initialize(#{backing_searchResults.latitude},#{backing_searchResults.longitude},#{searchCriteria.distance})"
              onunload="GUnload()">onload calls the Javascript function called initialize, and passes the latitude, longitude, and distance from the bean. Is the function really being called from my backing bean? No - the parameters are hard coded into the onload event code when the page is rendered. Does it do the job? Sure it does.

  • How to implement Shopping cart functionality in weblogic portal 10.3

    Hi,
    Can someone help me out on how to implement Shopping cart functionality in weblogic portal 10.3?
    Thanks,
    Uttam

    One piece of advise I can give is to NOT* use the Shopping Cart fuctnionality inherent in WLP (com.beasys.commerce.ebusiness.shoppingcart. The Online Commerce functionality in WebLogic Portal has been deprecated.
    Brad

  • How can I deactivate a function from menu bar in a transaction

    Hi Gurus
    How to deactivate a menu function "Do not execute" which is available in menu bar while creating an order. I want to remove that function from IW32 transaction. Please help.

    Hi,
    The Purpose of transaction variants is to hide fields, menu functions, screens, to supply individual fields with default values or to change the ready for input status of one or more fields.
    Using transaction variant, you can tailor screens to meet your required business process, and it can be used to accomplish security task, not directly supported by SAP’s security concepts.
    A Transaction variant consist of a number of screen variants, customized to meet your requirements, Transaction variant only alters the layout of the screen. The Business processes delivered by SAP retain their integrity.
    Check the below link for more details.
    [http://www.mortenhjorthnielsen.dk/Security/transactionvariants.htm|http://www.mortenhjorthnielsen.dk/Security/transactionvariants.htm]
    You can deactivate the menus for the wntire system by creating
    or changing records in the global settings table SSM_CUST in the
    View maintenance transaction SM30.
    - To globally deactivate the SAP menu, enter a record
    "SAP_MENU_OFF" "YES" in upper-case letters.
    - To globally deactivate all user menus enter a record
    "ALL_USER_MENUS_OFF" "YES" in upper-case letters.
    Please also check the below link.
    [http://help.sap.com/saphelp_nw04/helpdata/en/83/7a18cbde6e11d195460000e82de14a/content.htm|http://help.sap.com/saphelp_nw04/helpdata/en/83/7a18cbde6e11d195460000e82de14a/content.htm]
    Hope this helps. Reward points for all helpful answers.
    Thanks,
    Balaji
    Edited by: Balaji Ganapathiraman on Mar 14, 2008 11:19 AM

  • How do I remove iCloud music function from iPhone?

    How do I remove iCloud music function from iPhone?

    Thanks, operative word here is hide.
    iTunes wants to keep music on the iPhone even after you want to clear it out and start over. I wish they had a "flush" function. At present after wiping it basically clean, down to one album, then checking the fill option, iTunes fills up the iphone with the same albums I just got rid of... I have a huge selection in my library to choose from. But it keeps returning to the same albums even though I have not checked them or artist. Frustrating.

  • Type Mismatch error while calling a Java Function from Visual Basic 6.0...

    Hi,
    I'm having a problem in calling the Java Applet's Function from Visual Basic. First, I'm getting the handle of the Java Applet and components of it using "Document.Applets(n)" which is a HTML function. I'm calling this function from Visual Basic. My code is something like this...
    ' // Web1 is IE Browser in my Form.
    Dim Ap,Comp
    Dim Bol as Boolean
    Bol = true
    Ap = Web1.Document.Applets(0).getWindow() ' \\ Gets the Parent Window.
    Ap.setTitle("My Java Applet") ' \\ Sets the Title of the window.
    msgbox Ap.getVisibility() ' \\ This will return a Java boolean ( true or false )
    Ap.setVisibility(Bol) ' \\ Function Syntax is : void setVisibility(boolean b)
    Here in my code , i'm able to call any function that which accepts Integer or String but not boolean. So, i m facing problem with Ap.setVisibility() function. It gives me a "Type mismatch error" while executing it. Can you please tell me a way to do this from Visual Basic !
    I'm using Visual Basic 6.0, Windows 2000 , J2SDK 1.4.2_05.
    Please help me Friends.
    Thanks and Regards,
    Srinivas Annam.

    Hi
    I am not sure about this solution. try this
    Declare a variable as variant and store the boolean value in that variable and then use in ur method.
    Post ur reply in this forum.
    bye for now
    sat

  • Remove data plan from family plan with basic phones?

    Is there a way to remove a data plan from a family plan with just basic phones on it? We used to have a $20/month basic plan until we had to get a data plan for our son's iPhone. He no longer has the iPhone with Verizon and has removed his line from the plan because he has an Android with Sprint. We also were required to use the data plan because we at one point had one of those "Hotspot" devices as a temporary solution for at-home Internet until our DSL line could be fixed. As of now we no longer have the hotspot device or the iPhone, but we still have a data plan that is patently useless because all we have are basic phones. On the My Verizon Wireless website, it says that "your text and data are now bundled with your plan" or something to that effect. I don't want to be paying extra for a useless data plan that we don't need or want because we are not in the market for fancy smart phones or tablets any time soon.
    Is there any way to unbundle or detach the data plan so that we no longer have one and just have the unlimited text and calling plan without data? Our daughter is fine with her EnV Touch from 2005 and us old folks are perfectly content with the basic flip phones. Is the EnV a data phone too, in which case we should get rid of the EnV Touch in favor of an even more "basic" basic phone? She's not much of a technology buff like her brother is and has even suggested getting rid of the "fancier" phone that she has for a basic flip phone. Are we stuck with the data plan unless we break everyone off from the family plan (it's just me, my husband, my daughter, and my sister for right now) and move everyone to pay-as-you-go or no-contract? Wouldn't that end up costing more in the long run? How can we get rid of this annoying and expensive data plan that nobody on our network even uses and is causing a headache of expense?

    As I understand the plans now (and this could be wrong, they change so often I get confused!!) to have the "pay as you go" data, on the More Everything, you have 700 shared minutes.  To bump up to unlimited minutes, there is an attached data plan of 500 MB, and the total cost for 4 basic phones, unlimited minutes and text, 500 MB data, is $100/mo  ($20 for each basic phone line access, and $20 for the data).  The 700 shared minutes and pay as you go data is $85.
    You can change your plan at any time.

  • Remove SAP Branding from Portal Logon 7.1

    Hi,
    does anybody know how to remove the SAP Branding image from the logon page in 7.1? Unfortunatly we are not able to export / import the logonpage from the portal (around 40 errors if we try to build the original(! just export and import) logonpage in the NDS).
    In the help I just found how to replace the two other pictures of the login page....
    Thank you.

    Hi,
    I think he is just trying to change the branding image on the logon on screen, this doesn't need any par file customisation or some thing else.
    You need to just make the image you want to place as your branding image of the same size of the exsisting one.
    Go to usr/sap/sid/instance/j2ee\cluster\server0\apps\sap.com\com.sap.security.core.admin\servlet_jsp\logon\root\layout
    Here Just rename the exsisting branding-image.jpg file to some new one and place the new jpg file you want to place and rename it as branding-image.jpg. This would do.
    Regards,
    Vamshi.

  • How to use about:config to REMOVE Delta Search from my new tab

    I am desperate to remove Delta Search from my new tab page. What do I do after I open about:config? I have done at least a dozen resets, have removed DS via add/remove, am running a virus scan at present...this is TERRIBLE, and there HAS to be a way to get rid of it. When I do a reset, the new tab page is what I WANT...my previously saved pages. However, when I CLOSE FF and reopen, the new page is, once again, Delta. Can you hear me SCREAM? Can you see my TEARS? I am really fed up. Thanks for getting back to me with a solution that WORKS. jo

    Why should we have to do this? I ticked the box that said I didn't want to install it. You, Delta Search, are a bunch of troublesome low lifes.

  • [svn:bz-trunk] 21260: Update the qa-frameworks. zip to remove all comments from the base xml when merging config files.

    Revision: 21260
    Revision: 21260
    Author:   [email protected]
    Date:     2011-05-16 07:46:54 -0700 (Mon, 16 May 2011)
    Log Message:
    Update the qa-frameworks.zip to remove all comments from the base xml when merging config files.
    Modified Paths:
        blazeds/trunk/qa/resources/frameworks/qa-frameworks.zip

    Try options=('!makeflags') in PKGBUILD.

Maybe you are looking for

  • IOS4 updated spellcheck on 3GS - doesn't work

    Well it certainly doesn't on my 3GS - it's exactly the same as it was with the previous OS. No red dotted lines, no user-defined spellings that you can add to a custom dictionary (it's colour and humour here in the UK, guys! ), nope - just the same a

  • Function module to know file data.

    Hello Experts, Is there any function module available which can give me details of a file like no of rows and cols in a file? My input file is EXCEL file and I want to know no of lines (i.e rows) present in file before reading it. If there is no such

  • Error in billing EASIBI

    Hi everyone,    I am working with billing scenario in ISU and i completed executing  order(EL01) and  meter reading entry (EL28)  it was successful , but while doing Billing in EASIBI  its showing an error " Bill order for installation( no) sch.billi

  • SAP BC - redirecting LOG to DB

    SAP BC makes logs to file by default but in documentation i've found that it should be possible to redirect logs to DB or to OS's log files How to do this, should be found in BC Developer Guide But BC-DG is quite a huge pdf and i was unable to find i

  • Smart Form as PDF within iframe

    Hi all, the problem i'm facing today is that i can't display a SMART FORM as a PDF in an <iframe> Tag. If i call a simple PDF (which is stored on my PC as a local file) everything works fine and the PDF is shown within the iframe Tag. <html> <head> <