Adding netlet service dynamically

Hi!
I have a role which adds a netlet channel to the desktop of the users.
But the users don't have the netlet service registered. Now I want that the service is added with the role. I don't want to add the service manually.
Is this possible and if, how?

Also, please note that i call
FacesContext.getCurrentInstance().renderResponse();
in my ValueChangeListener method in the backing bean.
// ValueChangeListener method
public void setFilterOnChange(ValueChangeEvent valChangeEvent)
String filterName = (String) valChangeEvent.getNewValue();
setFilterName(filterName);
setTradeFilter(getSelectedFilter());
populatePanel(filterName);
FacesContext.getCurrentInstance().renderResponse();
}

Similar Messages

  • Adding a Service to CAF Tile

    I've followed the steps in the docs and even looked at the StockData example provided but cannot seem to get it working. I get the following error:
    Before resolve: http://localhost:4502/content/mosaic/catalogs/Historian/tiles/SnapshotTile/SnapshotTile.sw f
    Before resolve: http://localhost:4502/content/mosaic/catalogs/Historian/services/HistorianService/theHisto rianService.gxml
    Created url: http://localhost:4502/content/mosaic/catalogs/Historian/interfaces/HistorianInterfaceLibra ry/HistorianInterfaceLibrary.swf
    Before resolve: http://localhost:4502/content/mosaic/catalogs/Historian/tiles/SnapshotTile/SnapshotTile.sw f
    Before resolve: http://localhost:4502/content/mosaic/catalogs/Historian/tiles/SnapshotTile/SnapshotTile.sw f
    [SWF] /content/mosaic/catalogs/Historian/interfaces/HistorianInterfaceLibrary/HistorianInterfac eLibrary.swf - 2,497 bytes after decompression
    Failure in Loader: Error: Error #2036: Load Never Completed. URL: http://localhost:4502/Historian/interfaces/HistorianInterfaceLibrary/HistorianInterfaceLib rary.swf
    Failure in Loader: Error: Error #2036: Load Never Completed. URL: http://localhost:4502/Historian/interfaces/HistorianInterfaceLibrary/HistorianInterfaceLib rary.swf
    Below is the code as well as the configuration files:
    IHistorianService.as
    package cafe.historian.services
              import mx.collections.IList;
              [Expose]
              public interface IHistorianService
                        function getSnapshots(userid:String):IList;
    HistorianService.as
    package cafe.historian.services.impl
              import cafe.historian.services.IHistorianService;
              import mx.collections.ArrayCollection;
              import mx.collections.IList;
              [Expose(catalog="Historian", library="HistorianInterfaceLibrary", scope="singleton")]
              public class HistorianService implements IHistorianService
                        public function HistorianService()
                        public function getSnapshots(userid:String):IList{
                                  var test:ArrayCollection = new ArrayCollection();
                                  test.addItem("one");
                                  test.addItem("two");
                                  return test;
    Historian.axml
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!-- Copyright 2011 Adobe Systems Incorporated. All rights reserved. The original
    version of this material may be obtained from Adobe Systems Incorporated. -->
    <app:Application xmlns:app="http://ns.adobe.com/Mosaic/Application/1.0/" xmlns:catalog="http://ns.adobe.com/Mosaic/Catalog/1.0/" xmlns:ct="http://ns.adobe.com/Mosaic/CommonTypes/1.0/" xmlns:tile="http://ns.adobe.com/Mosaic/Tile/1.0/" xmlns:view="http://ns.adobe.com/Mosaic/View/1.0/" label="EMS Historian" name="Historian">
        <ct:Metadata>
            <ct:Description/>
        </ct:Metadata>
        <!-- Specifies a default panel or view to use when a user adds a new panel or
        view to the composite application (if permitted). Specify a default directly,
        or reference one from a composite application catalog. Referenced default
        panels and views override the composite application defaults. Note: You can
        specify only one panel and view in the app:Defaults section, but you can
        specify any number of catalog:CatalogReference children. -->
        <app:Defaults>
            <view:Panels>
                <view:Panel allowContentDelete="true" height="100%" label="Default Panel" tileChrome="full" width="100%">
                    <view:Layout name="HorizontalLayout" numColumns="2"/>
                </view:Panel>
            </view:Panels>
        </app:Defaults>
        <!-- Provide a global context containing values for use across entire
        application.
        <ct:Context>
            <ct:Data key="myApplicationContext" type="string" value="default value" />
        </ct:Context>
        -->
        <!-- A named context is useful for partition of a set of context values
        to a subsection of the application.
        <app:NamedContexts>
            <ct:Context name="basictypes">
                <ct:Data key="aSimpleString" type="string" value="sample string"/>
                <ct:Data key="aBoolean" type="boolean" value="true"/>
                <ct:Data key="anInteger" type="number" value="2011"/>
                <ct:Data key="aDate" type="date" value="2011-11-01T19:00:00-05:00"/>
                <ct:Data key="aNull" type="null" />
            </ct:Context>
        </app:NamedContexts>
        -->
        <!-- Specifies the runtime content for a composite application. The order of
        the elements affects the appearance in the application user interface. You
        can specify only one app:Shell or app:ShellReference element as a child of
        app:Application. -->
        <app:Shell label="Sample Shell" name="SampleShell"><!-- ShellStyle -->
            <!-- Specifies a reference to a composite application catalog. Catalogs
            contain composite application assets. The name attribute creates a
            shorthand reference to the catalog, which is stored on the Experience
            Server. -->
            <catalog:CatalogReference name="${catalog}" uri="${catalog}"/>
            <!-- Specifies a container to display views in the application user
            interface. The order of elements affects the appearance of the user
            interface. You can include only one view:ViewManager element as a child
            of the app:Shell element. The default skin for the view:ViewManager
            element provides a set of tab buttons to switch between views in the
            application, as well as an Add button, and an option menu. -->
            <view:ViewManager height="100%" width="100%">
                <view:View name="Research"
                                              height="100%" width="100%"
                                              label="Research"
                                              allowContentDelete="false">
                    <view:Panel allowContentDelete="false"
                                                  label="Analysis"
                                                  height="100%" width="100%"
                                                  styleName="PanelInShellStyle" ><!-- FullPanelTileStyle -->
                     <view:Layout name="HorizontalLayout"/> 
                        <tile:TileReference catalog="${catalog}"
                                      name="ResearchTile" optional="false" width="100%" height="100%" /><!-- TileStyle -->
                    </view:Panel>
                </view:View>
                <view:View label="Snapshots" height="100%" width="100%">
                          <view:Panel allowContentDelete="false"
                                                  label="Snapshots"
                                                  height="100%" width="100%"
                                                  styleName="PanelInShellStyle" >
                     <view:Layout name="HorizontalLayout"/> 
                     <tile:TileReference catalog="${catalog}"
                            name="SnapshotTile" optional="false" width="100%" height="100%">
                            <tile:Properties>
                                      <tile:Property name="historianService">
                                                <tile:ServiceReference catalog="${catalog}" library="HistorianService" name="theHistorianService"></tile:ServiceReference>
                                      </tile:Property>
                            </tile:Properties>
                     </tile:TileReference>
                          </view:Panel>
                </view:View>
                <view:View label="Views" height="100%" width="100%">
                          <view:Panel allowContentDelete="false"
                                                  label="Views"
                                                  height="100%" width="100%"
                                                  styleName="PanelInShellStyle" >
                     <view:Layout name="HorizontalLayout"/> 
                     <tile:TileReference catalog="${catalog}"
                            name="ViewsTile" optional="false" width="100%" height="100%"/>
                          </view:Panel>
                </view:View>
                <view:View label="Reports" height="100%" width="100%">
                          <view:Panel allowContentDelete="false"
                                                  label="Reports"
                                                  height="100%" width="100%"
                                                  styleName="PanelInShellStyle" >
                     <view:Layout name="HorizontalLayout"/> 
                     <tile:TileReference catalog="${catalog}"
                            name="ReportsTile" optional="false" width="100%" height="100%"/>
                          </view:Panel>
                </view:View>
                <view:View label="Admin" height="100%" width="100%">
                          <view:Panel allowContentDelete="false"
                                                  label="Admin"
                                                  height="100%" width="100%"
                                                  styleName="PanelInShellStyle" >
                     <view:Layout name="HorizontalLayout"/> 
                     <tile:TileReference catalog="${catalog}"
                            name="AdminTile" optional="false" width="100%" height="100%"/>
                          </view:Panel>
                </view:View>
            </view:ViewManager>
        </app:Shell>
    </app:Application>
    Historian.cxml
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <catalog:Catalog xmlns:catalog="http://ns.adobe.com/Mosaic/Catalog/1.0/" xmlns:ct="http://ns.adobe.com/Mosaic/CommonTypes/1.0/" xmlns:tile="http://ns.adobe.com/Mosaic/Tile/1.0/" xmlns:view="http://ns.adobe.com/Mosaic/View/1.0/" label="EMS Historian" name="Historian">
        <!-- Identifying description for this catalog. -->
        <ct:Metadata>
            <ct:Description>All content for the EMS Historian</ct:Description>
        </ct:Metadata>
        <!-- Specifies a list of tiles (tile:TileClass elements) contained within
        this catalog.  -->
        <tile:TileClassList>
                <!--  Remove the commenting from this tile:TileClass element to
                include a reference to a tile in this catalog. Within a tile:TileClass
                element, a tile:Content child element specifies tile content using the
                following attributes:
                    uri: A reference, either to absolute or relative, to the content's
                    location on a server.
                    contentType: The MIME type for the tile's content. For Flex tiles,
                    specify "application/x-shockwave-flash", and for HTML tiles
                    specify "text/html".
                    loadAs: For Flex tiles, if this value is "module", at run time the
                    tile loads as a Flex module. If the value is "default" or omitted,
                    at runtime the Flex tile loads as a SWF application. 
                    IMPORTANT: You must compile module tiles using one of the Flex SDKs
                    included in the Adobe Experience Services Tooling for Flash Builder
                    installation. Flex modules are similar to Flash Runtime Shared
                    Libraries (RSLs) in that they separate code from an application
                    into separately loaded SWFs. For more information on modular
                    applications, see "Modular applications overview" in the Flex
                    Developer's Guide.
            <tile:TileClass
                name="SampleTile"
                label="Sample Tile"
                width="600" height="400"
                fitContent="true">
                <ct:Metadata>
                    <ct:Description>sample description</ct:Description>
                </ct:Metadata>
                <tile:Content
                    uri="${catalogURL}/tiles/SampleTile/SampleTile.swf"
                    contentType="application/x-shockwave-flash"
                    loadAs="default" />
            </tile:TileClass>
            -->
                        <tile:TileClass fitContent="true" height="100%" label="ResearchTile" loadPolicy="auto" name="ResearchTile" width="100%">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                                  <tile:Content contentType="application/x-shockwave-flash" loadAs="default" uri="${catalogURL}/tiles/ResearchTile/ResearchTile.swf"/>
                        </tile:TileClass>
                        <tile:TileClass fitContent="true" height="300" label="ViewsTile" loadPolicy="auto" name="ViewsTile" width="600">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                                  <tile:Content contentType="application/x-shockwave-flash" loadAs="default" uri="${catalogURL}/tiles/ViewsTile/ViewsTile.swf"/>
                        </tile:TileClass>
                        <tile:TileClass fitContent="true" height="300" label="SnapshotTile" loadPolicy="auto" name="SnapshotTile" width="600">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                <tile:Depends>
                          <tile:Interface interfaceName="cafe.historian.services.IHistorianService" library="HistorianInterfaceLibrary"/>
                </tile:Depends>
                <tile:Properties>
                          <tile:Property name="historianService" type="cafe.historian.services.IHistorianService"/>
                </tile:Properties>
                                  <tile:Content contentType="application/x-shockwave-flash" loadAs="default" uri="${catalogURL}/tiles/SnapshotTile/SnapshotTile.swf"/>
                        </tile:TileClass>
                        <tile:TileClass fitContent="true" height="300" label="ReportsTile" loadPolicy="auto" name="ReportsTile" width="600">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                                  <tile:Content contentType="application/x-shockwave-flash" loadAs="default" uri="${catalogURL}/tiles/ReportsTile/ReportsTile.swf"/>
                        </tile:TileClass>
                        <tile:TileClass fitContent="true" height="300" label="cafe.historian.tiles.admin.AdminTile" loadPolicy="auto" name="AdminTile" width="600">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                                  <tile:Content contentType="application/x-shockwave-flash" loadAs="default" uri="${catalogURL}/tiles/AdminTile/AdminTile.swf"/>
                        </tile:TileClass>
              </tile:TileClassList>   
        <!-- Specifies a list of interface libraries (tile:InterfaceLibrary elements)
        contained within this catalog -->
        <tile:InterfaceLibraryList>
            <!--  Remove the commenting from this tile:InterfaceLibrary element to
            include a reference to an interface library in this catalog. Within a
            tile:InterfaceLibrary element, a tile:InterfaceList child element
            specifies a list of interfaces (tile:Interface elements) to include
            in the catalog. For each tile:Interface element, specify the interface
            class using the following attribute:
                interfaceName: A fully-qualified package and class reference to class
                that defines a service interface.
            <tile:InterfaceLibrary name="SampleInterfaceLibrary">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                 <tile:InterfaceList>                 
                    <tile:Interface interfaceName="com.adobe.adep.samples.services.sampleservice.ISampleService"/>                
                 </tile:InterfaceList>
             </tile:InterfaceLibrary>
             -->        
                   <tile:InterfaceLibrary name="HistorianInterfaceLibrary">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                      <tile:InterfaceList>
                    <tile:Interface interfaceName="cafe.historian.services.IHistorianService"/>
                </tile:InterfaceList>
            </tile:InterfaceLibrary>
        </tile:InterfaceLibraryList>   
        <!-- Specifies a list of service libraries (tile:ServiceLibrary elements)
        contained within this catalog. -->
         <tile:ServiceLibraryList>
              <!--  Remove the commenting from this tile:ServiceLibrary element to
              include a reference to a service library in this catalog. Within a
              tile:ServiceLibrary element, a tile:ServiceClassList child element
              specifies a list of service classes (tile:SeviceClass elements) to
              include in the catalog. For each tile:ServiceClass element, specify a
              service using the following attributes of the tile:Content child
              element:
                  uri: A reference, either to absolute or relative, to the content's
                  location on a server.
                  contentType: The MIME type for the tile's content. For service
                  libraries specify "application/xml".
              <tile:ServiceLibrary name="SampleService">
                <ct:Metadata>
                    <ct:Description/>
                 </ct:Metadata>
                 <tile:ServiceClassList>                
                    <tile:ServiceClass name="SampleService">
                        <tile:Content
                        uri="${catalogURL}/services/SampleService/SampleService-com-adobe-adep-samples-services-s ampleservice-impl.gxml"
                        contentType="application/xml"/>
                    </tile:ServiceClass>               
                 </tile:ServiceClassList>            
             </tile:ServiceLibrary>        
             -->
                        <tile:ServiceLibrary name="HistorianService">
                <ct:Metadata>
                    <ct:Description/>
                </ct:Metadata>
                      <tile:ServiceClassList>
                    <tile:ServiceClass className="cafe.historian.services.impl.HistorianService" name="theHistorianService" scope="singleton">
                    <tile:Implements>
                              <tile:Interface interfaceName="cafe.historian.services.IHistorianService" library="HistorianInterfaceLibrary"/>
                    </tile:Implements>
                    <tile:Content contentType="application/xml" uri="${catalogURL}/services/HistorianService/theHistorianService.gxml"/>
                    </tile:ServiceClass>
                          <tile:ServiceClass name="HistorianService">
                        <tile:Content contentType="application/xml" uri="${catalogURL}/services/HistorianService/HistorianService-cafe-historian-services-imp l.gxml"/>
                    </tile:ServiceClass>
                </tile:ServiceClassList>
            </tile:ServiceLibrary>
        </tile:ServiceLibraryList>
        <!-- Specifies a list of style sheets (view:StylesheetClass elements) contained
        within this catalog -->
        <view:StylesheetClassList>
            <!--  Remove the commenting from this view:StylesheetClass element to
            include a style sheet reference in this catalog. Include a separate
            view:StylesheetClass element for each style sheet you include in the
            catalog. Within each view:StylesheetClass element, specify the style sheet
            content using the following attributes of the view:Content child element:
                uri: A reference, either to absolute or relative, to the content's
                location on a server.
                contentType: The MIME type for the style sheet content. For Flex
                tiles, specify "application/x-shockwave-flash", and for HTML tiles
                specify "text/css".
            <view:StylesheetClass name="CafeMosaicTheme">
                <ct:Metadata>
                    <ct:Description>An alternative way to navigate using a ComboBox.</ct:Description>
                </ct:Metadata>
                <view:Content contentType="application/x-shockwave-flash" uri="${catalogURL}/stylesheets/CafeMosaicTheme/CafeMosaicTheme.swf"/>
            </view:StylesheetClass>
           -->
        </view:StylesheetClassList>   
        <!-- Specifies a list of panels (view:PanelClass elements) contained within
        this catalog -->
        <view:PanelClassList>
            <!--  Remove the commenting from this view:PanelClass element to include
            a reference to a panel in this catalog. Include a separate view:PanelClass
            element for each panel you include in the catalog. Within a view:PanelClass
            element, a view:Content child element specifies information for a panel
            using a view:Panel child element. For each view:Panel child element,
            specify the panel information using the following attributes:
                name: A unique name for the panel used to reference it from within the
                catalog.
                label: Descriptive text that displays as the panel title in the user
                interface of the composite application.
                tileChrome: Sets the default user interface for the panel. Values may
                be "none", "title" or "full". If the value is "full", then there is
                chrome on the panel which displays the title (label) and allows the
                panel to be moved, potentially deleted (if permitted), and resized.
                If the value is "title", the chrome is the same as for "full" without
                the ability to resize. If the value is "none", then there is no
                chrome on the panel, which means no title (label), and no user
                interface for for manipulating the panel.
                allowContentDelete: Specifies whether users can delete this panel at
                run time when the "chrome" attribute is set to "full" or "title".
                Values may be "true" or "false".
            Each view:Panel element may contain one or more tile:TileReference child
            elements that specify tiles to display within the panel at run time. You
            can override default tile attribute values here to customize the tile's
            appearance when referenced within this panel:
                catalog: Reference to the catalog that contains the tile.
                name: The name of the tile specified in the catalog.
                label: (override) The label of the tile.
                chrome: (override) Sets the user interface for the tile. Values may
                be "none", "title" or "full". If the value is "full", then there is
                chrome on the tile, which displays the title (label) of panels
                contained within the tile, and the tile allows for the panel to be
                moved, potentially deleted (if permitted), and resized. If the value
                is "title", the chrome is the same as for "full" without the ability
                to resize. If the value is "none", then there is no chrome on the
                tile, which means no panel title (label), and no user interface for
                for manipulating the panel.
                fitContent: (override) Specifies whether tile content should be
                automatically resize to fit the container. Values may be "true" or
                "false".
            <view:PanelClass name="SamplePanel">
                <ct:Metadata>
                    <ct:Description />
                </ct:Metadata>
                <view:Content>           
                    <view:Panel name="SamplePanel" label="Sample Panel"
                        tileChrome="true" allowContentDelete="true" width="100%" height="100%">
                        <view:Layout name="HorizontalLayout" />
                        <tile:TileReference
                            catalog="${catalog}" name="SampleTile" label="Sample Tile" width="100%" height="50%"
                            chrome="full" fitContent="true"/>
                    </view:Panel>
                </view:Content>
            </view:PanelClass>
            -->
        </view:PanelClassList> 
        <!-- Specifies a list of views contained within this catalog -->
        <view:ViewClassList>
            <!--  Remove the commenting from this view:ViewClass element to include a
            reference to a view in this catalog.
            Include a separate view:ViewClass element for each view you include in the
            catalog. Within a view:ViewClass element, a view:Content child element
            specifies information for a panel using a view:View child element. For
            each view:View child element, specify the panel information using the
            following attributes:
                name: A unique name for the view used to reference it from within
                the catalog.
                label: Descriptive text that displays as the panel title in the
                user interface of the composite application.
            Each view:View element may contain one or more view:PanelReference child
            elements that specify panels to display within the view at run time. You
            can override default panel attribute values here to customize the panel's
            appearance when referenced within this view:
                catalog: Reference to the catalog that contains the panel.
                name: The name of the panel specified in the catalog.
            <view:ViewClass label="Sample View" name="SampleView">
                <ct:Metadata>
                    <ct:Description>Sample View</ct:Description>
                </ct:Metadata>
                <view:Content>
                    <view:View name="SampleView" width="100%" height="100%"
                        label="Sample View">
                        <catalog:CatalogReference name="Default"
                            uri="Default" />
                        <view:PanelReference catalog="Default" name="SamplePanel" />
                    </view:View>
                </view:Content>
            </view:ViewClass>
            -->
        </view:ViewClassList>
    </catalog:Catalog>
    SnapshotTile.mxml (snippet)
    private var watcher:ChangeWatcher;
    [Bindable]
    [Consume(catalog="Historian", library="HistorianInterfaceLibrary")]
    public var historianService:IHistorianService;
    protected function _preinitializeHandler(event:FlexEvent):void
              this.addEventListener( AnnotationParseEvent.COMPLETE, _annotationParseEventCompleteHandler );
              watcher = ChangeWatcher.watch(this, "historianService", onGotService, false, true);
              protected function onGotService(e:PropertyChangeEvent):void
              if(historianService)
                        var test:ArrayCollection = historianService.getSnapshots("jonphill") as ArrayCollection;
                        trace("Using service, item 1: " + test.getItemAt(0));
                        trace("Using service, item 2: " + test.getItemAt(1));
    I've also attached two screenshots showing the project structure in FB and CRX.
    Any help here would be great as I'm pulling my hair out at this point!
    Thanks

    There's not an actual space in the error, it just looks that way when I pasted the text into the post.
    For some additional information, I've tried going through the tutorial here (http://www.youtube.com/ADEPDevelopers#p/c/DF68F4464D4EF4E0/4/klNspQvfVMc) and here (http://help.adobe.com/en_US/enterpriseplatform/10.0/AEPDeveloperGuide/WS989a722fbb254cbe-6 f13dcd01304cbb1ac4-8000.html), however, neither one goes through the full steps of adding the Service to the axml and cxml files which is where I'm probably having trouble.
    I've also looked at the StockMosaicService sample included with ADEP and tried mimicking it but with no luck. I had expected the ADEP tooling in Flash Builder to handle all this for me but it doesn't appear to be working properly now.

  • I updated to ios 5.1.1 and added icloud services. the problem is now whenever i connect my iphone to my PC, itunes does not recognize my phone. i need it to but it just does not connect..

    i updated to ios 5.1.1 and added icloud services. the problem is now whenever i connect my iphone to my PC, itunes does not recognize my phone. i need it to but it just does not connect..

    Try the standard fixes to rule out a software problem:
    - Reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory defaults/new iPod.
    If you still have the problem that points to a hardware problem. Yu can make an appointment at the the Genius Bar of an Apple store or try:
    fix for Home button

  • Web Services Dynamic Invocation

    Hi,
    I am trying to find a way to do web services dynamic invocation where params and return type can be complex types.
    The process I intent to follow is, query a uddi registry based on some search criteria to get a reference to the service wsdl. Use maybe wsdl4j to introspect the wsdl to determine porttype, operations, param data types etc and then perform a dynamic invocation.
    Does anybody have any ideas on how best this can be achieved without having to reinvent the wheel.
    Thanks,
    -V

    Hi
    I am looking for the same thing, please let me know if you resolve it.
    thanks

  • Adding the columns dynamically in crystal report

    Hi,
      I am developing a application using asp.net and crystal report. In a report the column is created dynamically( ie, the report gets input from a sp which returns N no. of columns). Since i dont know the column name and no. of columns at design time i am not able to create the report. If any of you have any idea on adding the columns dynamically please send me the code or the link.
    Thanks
    Sankar

    Hello Sankar,
    please see CS code for VS 2005 below to add a database field to a report using inproc RAS.
    This sampels retrieves the table column name from the database and adds it to the report.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    namespace CS_Add_Field_inproc
        public partial class Form1 : Form
            // CR Declarations
            ReportDocument boReportDocument;
            ISCDReportClientDocument boReportClientDocument;
            CrystalDecisions.ReportAppServer.ReportDefModel.Section boSection;
            CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject boFieldObject;
            public Form1()
                InitializeComponent();
                //Create a new ReportDocument
                boReportDocument = new ReportDocument();
                // load the RPT file
                boReportDocument.Load("..
    AddField.rpt");
                //Access the ReportClientDocument in the ReportDocument (EROM bridge)
                boReportClientDocument = boReportDocument.ReportClientDocument;
                //Get the first section in the details section
                   boSection = boReportClientDocument.ReportDefController.ReportDefinition.DetailArea.Sections[0];
                   //Create the field object that we will add to the report and set all of its properties
                   boFieldObject = new CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject();
                //Set which field to use for the data to be displayed
                   boFieldObject.DataSourceName = "{Customer.City}";
                   boFieldObject.FieldValueType = CrystalDecisions.ReportAppServer.DataDefModel.CrFieldValueTypeEnum.crFieldValueTypeStringField;
                   boFieldObject.Left = 4 * 1440; //1440 twips per inch
                   boFieldObject.Width = 3 * 1440;
                   boFieldObject.FontColor = new CrystalDecisions.ReportAppServer.ReportDefModel.FontColor();
                   boFieldObject.FontColor.Font.Name = "Arial";
                   boFieldObject.FontColor.Font.Size = 10;
                   boFieldObject.Format.HorizontalAlignment = CrystalDecisions.ReportAppServer.ReportDefModel.CrAlignmentEnum.crAlignmentLeft;
                   //Add the object to the report
                   boReportClientDocument.ReportDefController.ReportObjectController.Add(boFieldObject, boSection, -1);
                // show in reportviewer
                crystalReportViewer1.ReportSource = boReportDocument;
            private void button1_Click(object sender, EventArgs e)
                //Get the first section in the details section
                boSection = boReportClientDocument.ReportDefController.ReportDefinition.DetailArea.Sections[0];
                //Create the field object that we will add to the report and set all of its properties
                boFieldObject = new CrystalDecisions.ReportAppServer.ReportDefModel.FieldObject();
                //Set which field to use for the data to be displayed
                boFieldObject.DataSourceName = "{Customer.City}";
                boFieldObject.FieldValueType = CrystalDecisions.ReportAppServer.DataDefModel.CrFieldValueTypeEnum.crFieldValueTypeStringField;
                boFieldObject.Left = 4 * 1440; //1440 twips per inch
                boFieldObject.Width = 3 * 1440;
                boFieldObject.FontColor = new CrystalDecisions.ReportAppServer.ReportDefModel.FontColor();
                boFieldObject.FontColor.Font.Name = "Arial";
                boFieldObject.FontColor.Font.Size = 10;
                boFieldObject.Format.HorizontalAlignment = CrystalDecisions.ReportAppServer.ReportDefModel.CrAlignmentEnum.crAlignmentLeft;
                //Add the object to the report
                boReportClientDocument.ReportDefController.ReportObjectController.Add(boFieldObject, boSection, -1);
                // show in reportviewer
                crystalReportViewer1.ReportSource = boReportDocument;

  • XI Message Protocol and Value-Added Web Services

    Hi,
    I have a couple of questions on the above-mentioned topic:
    - How is the enhanced SOAP format in XI able to deliver value-added web services (as described in the XI documentation)?
    - If the XI format is an enhancement of SOAP, is it again fully open or are there some proprietary pieces to it?
    Thanks and Regards,
    Bharath

    Hi Bharath,
    >>> How is the enhanced SOAP format in XI able to deliver value-added web services (as described in the XI documentation)?
    value-added web services means that you can monitor
    all web services from one place (with the xi monitoring features)
    if you're using point-to-point connections without the XI
    you have to monitor all of your flows from all those applications and not from just one place
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions">XI FAQ - Frequently Asked Questions</a>

  • I am currently in Cameroon, Africa and after arriving here, I added Global services to my plan in hopes to be able to use my phone to call local numbers.  When I dial local numbers in Cameroon, with or without the country code, the call fails.  I suspect

    I am currently in Cameroon, Africa and after arriving here, I added Global services to my plan in hopes to be able to use my phone to call local numbers.  When I dial local numbers in Cameroon, with or without the country code, the call fails.  I suspect it may be that the phone is 3G and this area only supports 2G.  Help!

    cctga,
    We appreciate you taking the time to reach out to us. I am sorry to hear that you are having trouble while traveling. We definitely want to make sure you have all available options. Normally when traveling internationally we reccommend setting up international services prior to leaving. When you added the services did you do so online or with a rep? It would be best to contact our global department in order to troubleshoot any and all issues with services while international http://vz.to/17KseUf.
    Thank you,
    TonyG_VZW
    Follow us on Twitter @VZWSupport

  • Tns-04406 tns-04409 error during adding net service in oracle10g OID

    Hi,
    We have installed oracle OID using oracle app server 10 and are in process of configuring directory naming method
    ldap.ora file has foll entries
    # ldap.ora Network Configuration File: /app/oracle/product/101202/network/admin/ldap.ora
    # Generated by Oracle configuration tools.
    DIRECTORY_SERVERS= (smtest02:389:636)
    DEFAULT_ADMIN_CONTEXT = ""
    DIRECTORY_SERVER_TYPE = OID
    getting following error during adding net service names ... is this a setup issue ?
    error writing ServiceAlias to: LDAPDataStore [svr: smtest02:389:636, type: OID, ctxt: cn=OracleContext,, home: /app/oracle/product/101202] original exception message: TNS-04409: Directory service error caused by: oracle.net.config.DirectoryServiceException: TNS-04406: Invalid parameter caused by: oracle.net.ldap.NNFLException original stack trace: oracle.net.config.ServiceAliasException: TNS-04409: Directory service error caused by: oracle.net.config.DirectoryServiceException: TNS-04406: Invalid parameter caused by: oracle.net.ldap.NNFLException oracle.net.config.DirectoryServiceException: TNS-04406: Invalid parameter caused by: oracle.net.ldap.NNFLException oracle.net.ldap.NNFLException at oracle.net.config.DirectoryService.throwException(Unknown Source) at oracle.net.config.DirectoryService.read(Unknown Source) at oracle.net.config.ServiceAlias.<init>(Unknown Source) at oracle.net.common.dataStore.LDAPNetServiceHandler.save(Unknown Source) at oracle.net.common.dataStore.NetObjectHandler.maybeCommit(Unknown Source) at oracle.net.common.dataStore.NetObjectHandler.addElement(Unknown Source) at oracle.sysman.emo.net.config.srvc.Services.writeLDAPEntry(Services.java:1120) at oracle.sysman.emo.net.config.srvc.Services.saveService(Services.java:1072) at oracle.sysman.emo.net.config.srvc.NetServiceAdminObject.commit(NetServiceAdminObject.java:505) at oracle.sysman.db.net.NetController.applyAdminObjectBean(NetController.java:449) at oracle.sysman.db.net.NetController.onApply(NetController.java:499) at oracle.sysman.db.net.srvc.NetServiceController.onApply(NetServiceController.java:1401) at oracle.sysman.db.net.NetController.handleApply(NetController.java:843) at oracle.sysman.db.net.srvc.NetServiceController.handleApply(NetServiceController.java:1412) at oracle.sysman.db.net.NetController.handleEvent(NetController.java:1036) at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:376) at oracle.sysman.db.net.NetControllerResolver.handleRequest(NetControllerResolver.java:169) at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:688) at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:291) at oracle.sysman.eml.app.Console.doGet(Console.java:285) at oracle.cabo.servlet.UIXServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65) at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:101) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16) at oracle.sysman.db.adm.inst.HandleRepDownFilter.doFilter(HandleRepDownFilter.java:133) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20) at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:269) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192) at java.lang.Thread.run(Thread.java:534)
    thanks
    Kedar

    Resolved this issue by logging in as super user.

  • Adding Radio Button dynamically, twice - Error #2025: The supplied DisplayObject must be a child of

    Hello
    I am having some trouble adding UI controls dynamically. Mostly with radio buttons.
    Here is an example that demonstrates my problem:
    <s:Application
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark" 
        xmlns:mx="library://ns.adobe.com/flex/mx"
        creationPolicy="all"
        >
        <fx:Script>
            <![CDATA[ 
                import mx.containers.Form;
                import mx.containers.Panel;
                import mx.controls.Label;
                import mx.controls.NumericStepper;
                import mx.controls.RadioButton;
                private var theChar:String = "B";
                protected function btnAdd_clickHandler(event:MouseEvent):void
                    var theForm:Form = new Form();               
                    theForm.label = theChar;
                    //1. Label
                    var myLabel:Label = new Label();
                    myLabel.text = "My Label";
                    myLabel.width=120;
                    theForm.addChild(myLabel);
                    //2. Numeric Stepper
                    var myNumStepper:NumericStepper = new NumericStepper();
                    myNumStepper.id = "numPointHigh" + theChar;
                    myNumStepper.name = "numPointHigh" + theChar;
                    myNumStepper.minimum = 0;
                    myNumStepper.maximum = 120;
                    myNumStepper.width = 50;
                    myNumStepper.height = 30;
                    theForm.addChild(myNumStepper);
                    //3. radio button
                    var myRadioButton:RadioButton = new RadioButton;
                    myRadioButton.id = "myRadioButton" + theChar;
                    myRadioButton.name = "myRadioButton" + theChar;
                    myRadioButton.label = "my radio button";
                    myRadioButton.selected = true;
                    theForm.addChild(myRadioButton);
                    //4. Panel
                    var thePanel:Panel = new Panel();
                    thePanel.width = 300;
                    thePanel.height = 475;
                    thePanel.name=theChar;
                    thePanel.title = "My Profile Panel";
                    thePanel.setStyle("backgroundColor", "blue");
                    //add the form to the panel
                    thePanel.addChild(theForm);
                    //add the Panel to the list control
                    myList.addChild(thePanel);
                protected function btnClear_clickHandler(event:MouseEvent):void
                    var numChildren:Number = myList.numChildren;
                    for(var i:Number=numChildren - 1; i > -1; i--){
                        myList.removeChildAt(i);
            ]]>
        </fx:Script>
        <mx:VBox width="100%">
            <mx:List id="myList" />
            <mx:Button id="btnAdd" label="Add a panel" click="btnAdd_clickHandler(event)" color="black"/>
            <mx:Button id="btnClear" label="Clear" click="btnClear_clickHandler(event)" color="black" />
        </mx:VBox>
    </s:Application>
    ^ Run that. Click the "Add a panel" button. Then click "Clear". Then click the "Add a panel" button again. You will see the error:
    ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
        at flash.display::DisplayObjectContainer/getChildIndex()
        at mx.core::Container/getChildIndex()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\core \Container.as:2833]
        at mx.containers::Panel/getChildIndex()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\co ntainers\Panel.as:1174]
        at mx.controls::RadioButtonGroup/breadthOrderCompare()[E:\dev\4.0.0\frameworks\projects\fram ework\src\mx\controls\RadioButtonGroup.as:600]
        at mx.controls::RadioButtonGroup/breadthOrderCompare()[E:\dev\4.0.0\frameworks\projects\fram ework\src\mx\controls\RadioButtonGroup.as:611]
        at mx.controls::RadioButtonGroup/breadthOrderCompare()[E:\dev\4.0.0\frameworks\projects\fram ework\src\mx\controls\RadioButtonGroup.as:611]
        at Array$/_sort()
        at Array/http://adobe.com/AS3/2006/builtin::sort()
        at mx.controls::RadioButtonGroup/http://www.adobe.com/2006/flex/mx/internal::addInstance()[E:\dev\4.0.0\frameworks\projects \framework\src\mx\controls\RadioButtonGroup.as:465]
        at mx.controls::RadioButton/addToGroup()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\c ontrols\RadioButton.as:574]
        at mx.controls::RadioButton/commitProperties()[E:\dev\4.0.0\frameworks\projects\framework\sr c\mx\controls\RadioButton.as:514]
        at mx.core::UIComponent/validateProperties()[E:\dev\4.0.0\frameworks\projects\framework\src\ mx\core\UIComponent.as:7772]
        at mx.managers::LayoutManager/validateProperties()[E:\dev\4.0.0\frameworks\projects\framewor k\src\mx\managers\LayoutManager.as:572]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.0.0\frameworks\projects\frame work\src\mx\managers\LayoutManager.as:730]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.0.0\frameworks\projec ts\framework\src\mx\managers\LayoutManager.as:1072]
    I do not understand why I cannot re-add the radio button? If you comment out the code for the radio button (comment section #3.) you can re-add the panels easily. It is only happening when I have radio buttons being added to the form/panel.
    Why is this happening and how do I fix it? Why is this only happening to radio buttons? I thought I had this fixed

    ^ well, okay, but that's not the problem.
    here, i removed list and replaced with Panel. same problem on the radio buttons.
    <s:Application
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark" 
        xmlns:containers="com.dougmccune.containers.*"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        creationPolicy="all"
        >
        <fx:Script>
            <![CDATA[ 
                import mx.containers.Form;
                import mx.containers.Panel;
                import mx.controls.Label;
                import mx.controls.NumericStepper;
                import mx.controls.RadioButton;
                private var theChar:String = "B";
                protected function btnAdd_clickHandler(event:MouseEvent):void
                    var theForm:Form = new Form();               
                    theForm.label = theChar;
                    //1. Label
                    var myLabel:Label = new Label();
                    myLabel.text = "My Label";
                    myLabel.width=120;
                    theForm.addChild(myLabel);
                    //2. Numeric Stepper
                    var myNumStepper:NumericStepper = new NumericStepper();
                    myNumStepper.id = "numPointHigh" + theChar;
                    myNumStepper.name = "numPointHigh" + theChar;
                    myNumStepper.minimum = 0;
                    myNumStepper.maximum = 120;
                    myNumStepper.width = 50;
                    myNumStepper.height = 30;
                    theForm.addChild(myNumStepper);
                    //3. radio button
                    var myRadioButton:RadioButton = new RadioButton;
                    myRadioButton.id = "myRadioButton" + theChar;
                    myRadioButton.name = "myRadioButton" + theChar;
                    myRadioButton.label = "my radio button";
                    myRadioButton.selected = true;
                    theForm.addChild(myRadioButton);
                    //4. Panel
                    var thePanel:Panel = new Panel();
                    thePanel.width = 300;
                    thePanel.height = 475;
                    thePanel.name=theChar;
                    thePanel.title = "My Profile Panel";
                    thePanel.setStyle("backgroundColor", "blue");
                    //add the form to the panel
                    thePanel.addChild(theForm);
                    //add the Panel to the list control
                    myContainer.addChild(thePanel);
                protected function btnClear_clickHandler(event:MouseEvent):void
                    var numChildren:Number = myContainer.numChildren;
                    for(var i:Number=numChildren - 1; i > -1; i--){
                        myContainer.removeChildAt(i);
            ]]>
        </fx:Script>
        <mx:VBox width="100%">
            <mx:Panel id="myContainer" />
            <mx:Button id="btnAdd" label="Add a panel" click="btnAdd_clickHandler(event)" color="black"/>
            <mx:Button id="btnClear" label="Clear" click="btnClear_clickHandler(event)" color="black" />
        </mx:VBox>
    </s:Application>
    Any idea why radio buttons causing this to happen? If I comment out the radio button, this works fine. This is really baffling me.
    The exception is thrown when the dynamically created panel (thePanel) is added to the main Panel (myContainer):
    myContainer.addChild(thePanel); <--- causes the exception!
    ^ Why would radio buttons make a difference on "thePanel"?? How can I enforce parent-child relationship, explicitly? .parent is read-only

  • Adding web services to C# application

    Hello,
    having on mind that I use SQL Server 2008 R2, could somebody help me to perform adding WEB Services as described bellow:
    1
    ReportServer2005: Namespace: Microsoft.SqlServer.ReportingServices.ReportService2005 URL:
    http://servername/ReportServerName/ReportService2005.asmx?wsdl Declaration: ReportingService2005 rs = new ReportingService2005();
    2
    ReportExecution2005: Namespace: Microsoft.SqlServer.ReportingServices.ReportExecutionService URL:
    http://servername/ReportServerName/ReportExecution2005.asmx?wsdl Declaration: ReportExecutionService rsExec = new ReportExecutionService();
    I guess that "servername" and "ReportServerName" are those from my local Report Server (i.e., MyLocalComputerName and MyLocalReportServerName).
    Purpose of this is to programmatically
    perform export of SSRS report to PDF, based on parameter's array.
    Thanks!

    help me to perform adding WEB Services as described bellow:
    Hello,
    It depends a Little bit on the used Visual Studio Version. Basically do a right-mouse click on "References" and select
    The next steps are a Little bit hidden & confusing: In the next Dialog click on "Advanced..", then add "Web reference" and here you can enter the URL for SSRS SOAP, click on the green arrow and the WSDL data will be retrieved &
    shown in the Dialog:
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Step by step installation for Web Services Dynamic Invocation application?

    please let me know the step by step process to install the Web Services Dynamic Invocation application Sample code.The install.htm that comes with the download does not give enough information.
    Thanks in Advance
    Shyam

    Sorry for the confusion,i got hold of the right document.
    Thanks
    Shyam

  • Modify journalentry when adding a service A/R Invoice

    We are facing the following problem. When we add a service A/R Invoice (by di), the following journalentry is created:
    Debit: Debtor account
    Credit: Tax and revenue account
    This is ok but we also want to add the following lines:
    Debit: Costprice account
    Credit: Stock account
    I don't know how to change the invoice so that this two lines will be added automaticly. So I tried to modify the created journal entry after i added the Invoice.
    I can get the journalentry (journalEntry.GetByKey) but i'm not able to add lines. I got the error
    "This entry already exists in the following tables (ODBC -2035)"
    Can anyone help me with this. I know how to add a jounalentry seperatly but i would like to see it linked to the Invoice.
    Thanks,
    Erik

    Hi Erik,
    i think you can't add lines when your JournalEntry was added.
    i create always a 2nd one:
    i did it always so that i used one of the Reference Fields and/or
    an UDF to link the 2nd created Journal Entry to the document.
    than you know that they belong together.
    lg David

  • Adding field in Dynamic Selection in FAGLL03

    HI all,
    I would like to filter date based on Document header Text for a particular GL account.
    But when i am executing FAGLL03, i am not able to find in Dynamic Selections, Document Header Text field.
    In the report iam able to find Doc header text.
    How can i get the Documen header Text in Dynamic Selections pf FAGLL03.
    regards
    Jaya

    Hi,
    Thanks for your reply. Sorry i am not the original poster of the message. I posted on http://scn.sap.com/thread/3303233 but there was no answer over there. I already tried the note. But as vendor/customer code are not in SKA1 or SKB1 or BSIS tables, even though I added LIFNR and KUNNR fields to BSIS_FS append structure and they appear in dynamic selection of FAGLL03, the report output does not select based on the customer code I input in the dynamic selection. It has no effect. Anything that I missed out?
    Many thanks.

  • Problem with adding web service

    Hi all,
    I have NetBeans IDE 6.5 and GlassFishV2 installed on my pc. I tried to add a new web service client from an existing WSDL url to my java project but I get this error during adding the web service: “WsCompile script failed during initial client generation.”
    Why do I get this error message?
    Can anybody help me please?
    Note: WSDL made by Weblogic 11g and I have Jax-RPC 1.6 installed.

    I'm sorry. The XML file LogMessage_handler.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <handler-chains xmlns="http://java.sun.com/xml/ns/javaee">
      <handler-chain>
        <handler>
          <handler-name>sk.zsr.zt.supis.extern.LogMessageHandler</handler-name>
          <handler-class>sk.zsr.zt.supis.extern.LogMessageHandler</handler-class>
        </handler>
      </handler-chain>
    </handler-chains>
    and LogMessageHandler.java
    public class LogMessageHandler implements SOAPHandler<SOAPMessageContext> {
         public boolean handleMessage(SOAPMessageContext messageContext) {
              log(messageContext);
              return true;
         @SuppressWarnings("unchecked")
         public Set<QName> getHeaders() {
              return Collections.EMPTY_SET;
         public boolean handleFault(SOAPMessageContext messageContext) {
              return true;
         public void close(MessageContext context) {
         private void log(SOAPMessageContext messageContext) {
              SOAPMessage msg = messageContext.getMessage();
              Logger log = LoggerFactory.getLogger("SOAP");
              try {
                   ByteArrayOutputStream out = new ByteArrayOutputStream();
                   msg.writeTo(out);
                   log.info(out.toString());
              } catch (SOAPException ex) {
                   log.error(ex.getLocalizedMessage());
              } catch (IOException ex) {
                   log.error(ex.getLocalizedMessage());

  • Oracle PL/SQL Web service - dynamic parameters... possible?

    Oracle 11.2.0.3 - newbie on web services!
    Currently we have a pl/sql web service taking in 2 static parameters and returning a varchar2 response.
    I was asked today if it's possible for a web service to take in a dynamic set of parameters and return a corresponding set of results. It's as if I need to pass the web service a table with two columns and return a table of one column.
    For example:
                        Input                          Output
              1 2                             3
              3 4                             7
              5 6                            11output being in XML of course. It is possible?
    p.s. I posted this in OC4J also - no response hence the re-post !

    Parameters relate to procedures. Web Services require XML messages.
    Where are the parameters coming from? You cannot pass a dynamic number of parameters into a procedure, but you can pass a structured type as a parameter which can contain multiple values, whether that is an array/collection type or an XML document itself.
    Just package up the values into the XML and pass it to the web service.
    If this doesn't answer your question, please post more information, with some example data and code. Read the FAQ: {message:id=9360002}

Maybe you are looking for

  • Getting 404 while view in browser from the site studio desinger..10gr4

    Hi , Thanks for the help guys. I have a question here...I have created a website using site studio designer and a home page ..when i right click on the home page i have created...to view in the browser..its giving me 404 error...i am not sure whats t

  • Making changes in SRM MDM Catalog page

    Hi All,    I am working on SRM MDM Catalog 2.0. I need to make some changes in shopping cart create screen. My changes include Renaming the label, deleting the tabs, changing the look and feel of the catalog page etc., Can any one guide me whether Is

  • Need help in EMAIL Sending -  more than 255 character length

    Hi Guys, Please help me in sending the Email attachment which has more than 255 character lengh using 'TXT format. if i create an internal table having a field of type char225. then break ur each record into many parts having len <= 255. how can i mi

  • Unable to resize Screen Sharing screen

    Hi, I am seeing two issues with Screen Sharing when accessing a desktop Mac from a MacBook Pro with a 20in external monitor attached to the laptop. Using the Screen Sharing application to remotely control the Mac Pro when I connect the size of the Sc

  • Where are the settings

    I am not sure I like what the front row displays as far as how it organizes and such, is there a way to change this...i.e. for movies it has projects folder and so on.