Create new / add Custom Node in Component Pallete - Workflow Editor

is there anyway to Create new / add Custom Node in Component Pallete - Workflow Editor in SQL Developer - Oracle Data Miner?
Now i'm in progress create data cleansing engine in database package, and I have an idea to create new node in workflow editor, the node will call my procedure data cleansing.
Anybody help?

Hi,
Not currently.
We are working on a SQL Query node that would process data on connected input nodes and allow the user to create any sql query specification they would like.
So as long as your implementation is compatible with being included as part of a sql query, then you may be able to take advantage of this new node.
Since you describe your implementation as a data cleansing implementation, I could see it taking in what ever input is provided in the flow, and then returning a cleansed result set.
Thanks, Mark

Similar Messages

  • How to add adf faces in component pallete of jdeveloper 11g?

    how to add adf faces in component pallete of jdeveloper 11g?

    Hi,
    the replacement of ADF Faces HTML components in JDeveloper 11 is Trinidad. For existing applications, a migration path will be provided in JDeveloper 11 production. I wouldn't recommend configuring ADF Faces in JDeveloper 11.
    You an configure ADF Faces Components in JDeveloper 11 by :
    - Tools --> Manage Libraries
    - Create a User Library
    - select ADF Faces adf-faces-impl.jar
    - Enure the namespace is not af or afh but something different to not cnflic with teh ADF Faces RC components
    Note that adding the ADF Faces components to the component palette will not make them show in the ADF binding context menu nor will it automaticaly set up the web.xml file. The components are available as any other JSF library set
    Again, I wouldn't go this way ;-)
    Frank

  • How create new draw layer in Spreadsheet View Multisim Symbol Editor ?

    Hello,
    I would like to know how create new draw layer in Spreadsheet View Multisim Symbol Editor ?
    I am interested in this to create a contact or switch with 3 positions (one in and three out).
    So ... ??
    Best regards

    Hi,
    I am not really sure what you are trying to do with a new layer but the spreadsheet was hard coded and you cannot add a new layer.  In the Symbol Editor, there is a rectangle with dash lines, this is the symbol boundary and you can select Edit>>Resize Boundary Box to make the boundary larger/smaller.  Whatever you draw must be inside the boundary, you can only place pins outside the boundary.  The switch you created will not toggle in simulation, only the switches in the Master database can do this, R&D have to program them to toggle.
    Tien P.
    National Instruments

  • Add custom JPanel to component palette

    Hi all,
    i created a new JPanel,that extends JPanel class, called MyPanel. Is there a way for me to add this to the component palette?
    I tried adding it to code snippets but that didn't work for me.
    Christoph

    Christoph,
    1. right mouse click onto the component panel
    2. Choose "Palette Properties"
    3. Click "Add" to create a new page
    4. Give it a name of your choice e.g. "My ToolBox"
    5. Type should be Java
    6. Click add on the Components area for "My ToolBox" to search for the component to display
    Frank

  • User Exit to add custom field in Component Screen

    Hi Friends,
    I searched alot but could find exit to add custom field or tab in material component detail screen for SAP 4.7. Please let me know if there is any exit  or workaround possible.
    Thanks,
    Raj

    BADI is available to create custom field in material component , but it is available as of ECC 6.0 EHP3 , not sure about 4.7

  • Why does Scene Builder constantly create new instances of Nodes?

    Hi,
    I thought I had a simple idea for creating a control that would let me get some of the behavior of a card pane.  This is the entire control:
    import javafx.beans.property.BooleanProperty;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.scene.Node;
    import javafx.scene.Parent;
    import javafx.scene.layout.StackPane;
    public class Card extends StackPane {
        private final BooleanProperty active = new SimpleBooleanProperty();
        public final BooleanProperty activeProperty() {return active;}
        public final boolean isActive() {return active.get();}
        public final void setActive(boolean active) {this.active.set(active);}
            visibleProperty().bind(active);
            managedProperty().bind(active);
            active.addListener(new ChangeListener<Boolean>() {
                @Override
                public void changed(ObservableValue<? extends Boolean> observable,
                                    Boolean old,
                                    Boolean active) {
                    System.out.println(toString() + " active changed to: " + active);
                    if(active) {
                        Parent parent = getParent();
                        if(parent != null) {
                            System.out.println("Parent is: " + parent.toString());
                            parent.getChildrenUnmodifiable().forEach(Card.this::deactivateIfCard);
                        else {
                            System.out.println("Parent is null.");
        private void deactivateIfCard(Node node) {
            if(node != this && node instanceof Card) {
                Card card = (Card) node;
                card.setActive(false);
    The idea is pretty simple; extend StackPane, add an active property, bind the visible and managed properties of the pane to the active property, and, whenever the active property is changed to true, iterate sibling nodes de-activating any siblings that are also of the type Card.
    However, this doesn't work with Scene Builder.  While trying to debug, I created an ExtStackPane:
    import javafx.collections.ListChangeListener;
    import javafx.scene.Node;
    import javafx.scene.layout.StackPane;
    public class ExtStackPane extends StackPane {
            getChildren().addListener((ListChangeListener<Node>) c -> {
                System.out.println("ExtStackPane children change: " + c.toString());
    All this does is log list change events.  However, I was very surprised by the output when working in Scene Builder.  I added both controls to Scene Builder and did the following:
    0) Added an ExtStackPane
    1) Added a Card to the ExtStackPane
    2) Added another Card to the ExtStackPane
    3) Added a Label to the first Card
    4) Added a Label to the second Card
    5) Changed the text of the first Label to Hello
    6) Changed the text of the second Label to World
    7) Set the first Card to active
    8) Set the second Card to active
    I get the following output:
    1)
    ExtStackPane children change: { [Card@5b9067b3] added at 0 }
    2)
    ExtStackPane children change: { [Card@6b6328bd] added at 0 }
    ExtStackPane children change: { [Card@6aca8cc5] added at 1 }
    3)
    ExtStackPane children change: { [Card@3b7bc340] added at 0 }
    ExtStackPane children change: { [Card@1879819e] added at 1 }
    4)
    ExtStackPane children change: { [Card@60ffed67] added at 0 }
    ExtStackPane children change: { [Card@64955a14] added at 1 }
    5)
    ExtStackPane children change: { [Card@5dc96bc4] added at 0 }
    ExtStackPane children change: { [Card@40667c26] added at 1 }
    6)
    ExtStackPane children change: { [Card@164770fa] added at 0 }
    ExtStackPane children change: { [Card@7decebbf] added at 1 }
    7)
    Card$1@f4f4850 active changed to: true
    Parent is null.
    ExtStackPane children change: { [Card@27442c8b] added at 0 }
    ExtStackPane children change: { [Card@643d810e] added at 1 }
    8)
    Card$1@4877c67b active changed to: true
    Parent is null.
    ExtStackPane children change: { [Card@7e8a473e] added at 0 }
    Card$1@2b4497c1 active changed to: true
    Parent is null.
    ExtStackPane children change: { [Card@5df6c8cc] added at 1 }
    This is what things look like in Scene Builder:
    Does Scene Builder recreate the entire hierarchy every time I make a small change?  Here's an application that does the same as the manual steps I performed in Scene Builder:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.stage.Stage;
    public class CardApplication extends Application {
        @Override
        public void start(Stage primaryStage) throws Exception {
            ExtStackPane stackPane = new ExtStackPane();
            // 1
            Card card1 = new Card();
            stackPane.getChildren().add(card1);
            // 2
            Card card2 = new Card();
            stackPane.getChildren().add(card2);
            // 3
            Label label1 = new Label();
            card1.getChildren().add(label1);
            // 4
            Label label2 = new Label();
            card2.getChildren().add(label2);
            // 5
            label1.setText("Hello");
            // 6
            label2.setText("World");
            primaryStage.setScene(new Scene(stackPane));
            primaryStage.setTitle("Card Application");
            primaryStage.setWidth(600);
            primaryStage.setHeight(400);
            primaryStage.show();
            // 7
            card1.setActive(true);
            // 8
            card2.setActive(true);
    The output when running the above is:
    1)
    ExtStackPane children change: { [Card@6dfaa767] added at 0 }
    2)
    ExtStackPane children change: { [Card@6aa2c411] added at 1 }
    7)
    Card$1@1abf7511 active changed to: true
    Parent is: ExtStackPane@41993867[styleClass=root]
    8)
    Card$1@5733cd2 active changed to: true
    Parent is: ExtStackPane@41993867[styleClass=root]
    Card$1@1abf7511 active changed to: false
    The behavior is obviously a lot different than when I'm working with the control in Scene Builder.  Can anyone explain to me what Scene Builder is doing to change the behavior of my Card control so much?  Does my Card control break some rule(s) I'm not aware of?

    I think you're confused about what SceneBuilder is doing.
    SceneBuilder is a design tool, used by the programmer (not the end user) to generate part of the code that is used to execute the application. (Specifically, it generates the FXML code that is parsed by the FXMLLoader to create and configure objects that are typically part of the scene graph.)
    While you are using SceneBuilder to create the code, it generates a mock-up of what the UI will look like, if the generated FXML were to be loaded and displayed. This mock-up is not supposed to be an identical view of what the end user will see, but an aid to you, as the programmer, to generate the code you want.
    So, for your Accordion/TitledPane example, in the mock-up that SceneBuilder displays, the *selected* titled pane is always displayed expanded. This enables you to drag and drop items into it, and to configure it in other ways. If you uncheck the "expanded" checkbox in the properties pane, then it remains expanded in the mock-up so that you can continue to configure it. However, this property is not ignored: the state of those checkboxes is respected in the FXML file that is generated. So when you hit "save" in SceneBuilder, the generated fxml will contain TitledPane element with expanded="true" if the check box is checked, and expanded="false" if the check box is unchecked. (SceneBuilder will of course also enforce the rule that only one TitledPane in an Accordion can be expanded.)
    Similarly, for your custom control, you should be able to set it up so SceneBuilder displays the "active" property in the check box. If you uncheck that property, so active=false, that will be respected in the fxml and when you execute the application, active will be set to false, and so by your binding, visible will be set to false and the component won't display. But the mock-up in SceneBuilder will (of course) still display your component, because it would be extremely difficult for you to configure a component that didn't appear in the programming tool.
    In fact, there's no real reason for SceneBuilder to create any objects that you are configuring at all. It could just try to figure out what they look like and render a depiction of them on a canvas, for example. That's probably much (much) more difficult than instantiating them and the authors of SceneBuilder apparently chose to write SceneBuilder in a way that re-instantiated the controls many times. But that has absolutely nothing to do with what happens when you execute the application and it makes no sense at all to compare the two.

  • Create and add CUSTOM Hello World cartridge in CRS in Oracle Commerce 11.1

    I am working on a CRS based application. I went through the code in Assembler Development Guide for creating Hello World template in Discover. But i m not able to create a Hello World template similarly for CommerceReferenceStore. Please guide me on how ?

    I do not have much experience in creating cartridges and get data from inputs on XM, but I believe you have to fix your xml and run a set_template again.
    Like This:
    <Property name="welcomeMessage">
             <String>MyCustomMessage</String>
    </Property>
    In your Java alter this line helloWorldItem.setWelcomeMessage...
    to
    public HelloWorldContentItem process(ContentItem pCartridgeConfig) throws CartridgeHandlerException {
        HelloWorldContentItem helloWorldItem = new HelloWorldContentItem(pCartridgeConfig);
         if (helloWorldItem.getWelcomeMessage() != null)
             helloWorldItem.setWelcomeMessage(helloWorldItem.getWelcomeMessage());
        return helloWorldItem;
    Maybe works =].
    But this is the idea.

  • Creating a new DC in existing software component

    Hi,
    I am trying to create new DC in a software component that is custom developed.
    You can consider this as a totally build product and I want to extend the features implementing new DC.
    I am able to import the development components, and when I try to create a new DC in the configuraition pool, I am anot able to select the vendor from the Vendor dropdown.
    Can some one explain how to do this?
    Is it possible to keep the software component as is, but copy the same to a custom namespace (with new vendor name newvendor.com) and create a dc in it. This way i can change the sc as is and make changes on new SC.
    Please suggest.
    Thanks and regards,
    Chinnu

    Hi Satya,
    Thankyou for quick response.
    I did not create any namespace prefixes in SLD.
    Can you give me some clarity about name spaces? I am not very clear about the same.
    About the SC i am trying to modify, it is not SAP deliverd SC, instead created under custom vendor name and I am able to import the DCs and hopefully check in the same.
    Also, after seeing your reply, I checked for any available namespaces in SLD, and all I can see is sap.com/home etc., which are owned by SAP.
    Do I have to create a new namespace with the vendor name to create new DCs?
    Also, I get this error message when trying to create a new DC:
    Syntax of 'sap.com/home/NewDC' is not valid: Name suffix must be spelled lower case: home/NewDC
    Please suggest.
    Thanks and regards,
    Chinnu
    Edited by: Chinnu on Aug 14, 2009 10:06 AM

  • How & where to use Java script to create new button in object detail page

    Hi All,
    I want to create "New/Add button" in object detail page. If i am not wrong i need to use java script for that but could you please let me know how & where to use Java script to create new button in object detail page in CRMOD.
    Thanks in advance.
    Regards,
    Manish

    Any related object on the detail page should have an "Add" or "New" or both buttons by default - This is vanilla functionality and will do the required action.
    If you want to modify this behaviour and do something tricky you will potentially have to go for javascript. You should add the javascript on a custom web tab on that Object.
    Admin --> Application Customization --> Contact -->Contact Web Applet
    Now, add your javascript in the code area, after you select the type = HTML for this web applet, expose this web applet on the Contact detail layout and your javascript will be invoked whenever this page is loaded.
    Check this online document to see how javascript can be embedded in CRM on Demand http://helponmyproject.com/TTOCOD/
    Cheers!
    Royston

  • Users not able to create new ojects in Integration Repository

    Hi,
        We did a heterogeneous copy of PI from AIX to HPUX. After that we have done few post installation steps w.r.to PI Specific usage type.
        all the developers are able to login to the integration repository, but when they are trying to "Edit" or "Create" new objects they are getting the following error
    "You are not permitted to create new objects since the software component cannot be changed".
       this is working with PISUPER user but not with any development user id and passwd.
        any response is higly appreciated.
      Thanks
      Sourav

    Hey NM,
        Thanks a lot for your suggestion. problem got resolved when i did what you said (checking the attributes with developers user id's)
    Thanks
      Sourav

  • Exception starting workflow while creating new project

    We created a new SharePoint Designer based workflow and published it to Project Online.
    Later we created new EPT and associated the above mentioned workflow to it.
    Now whenever we tried creating a new project based on this EPT, it fails with an error as mentioned below:
    "Your new EPT has been created successfully, but failed to publish and will not be listed in the Project Error".
    Looking at the queue jobs, I see below errors. Does anyone how to solve this issue?
    General
    Exception Starting Workflow: Workflow _c78ab50f-a884-47d0-98bb-a9e6e5eab058_, for scope _/spo/b2645c43-2431-4498-aa01-367736a9461e/822d4328-2ebd-41fd-b9df-51a1cc138781/88697637-7217-40cc-b4db-be9e0cf8582e_, was not found. HTTP headers received from
    the server - ActivityId: 959408f6-002a-4b62-8368-997e74f55174. NodeId: . Scope: . Client ActivityId : d84a129c-99cc-6054-2a55-5ec692cb26fe.. Trace: at Microsoft.Workflow.Client.ClientHelpers.SendRequest[T](HttpWebRequest request, T content) at Microsoft.Workflow.Client.WorkflowManager.StartInternal(String
    workflowName, WorkflowStartParameters startParameters) at Microsoft.SharePoint.WorkflowServices.FabricWorkflowManagementClient.StartInstance(String serviceGroupName, String workflowName, String monitoringParam, String activationKey, IDictionary`2 payload)
    at Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider.StartWorkflow(WorkflowSubscription subscription, IDictionary`2 payload) at Microsoft.Office.Project.Server.BusinessLayer.Workflow.StartWorkflow(Guid projectGuid, Guid enterpriseProjectTypeUid,
    Boolean isNewProject, Guid previousEntepriseProjectTypeUid, Boolean skipStage, Guid stageToSkipTo):
    WorkflowExceptionStartingWorkflow (35115). Details: id='35115' name='WorkflowExceptionStartingWorkflow' uid='925896db-84a6-e211-915a-00155d855c0e'.
    Error:
    WorkflowCannotStartWorkflow (35100). Details: id='35100' name='WorkflowCannotStartWorkflow' uid='935896db-84a6-e211-915a-00155d855c0e'.
    Queue:
    GeneralQueueJobFailed (26000) - WorkflowStartWorkflow.WorkflowStartWorkflowMessage. Details: id='26000' name='GeneralQueueJobFailed'
    uid='945896db-84a6-e211-915a-00155d855c0e' JobUID='9f1a80d7-84a6-e211-9b9d-00155d85170c' ComputerName='b5274f0d-31e4-406a-9540-8bc9ee3f62f1' GroupType='WorkflowStartWorkflow' MessageType='WorkflowStartWorkflowMessage' MessageId='1' Stage='' CorrelationUID='d84a129c-99cc-6054-2a55-5ec692cb26fe'.
    For more details, check the ULS logs on machine b5274f0d-31e4-406a-9540-8bc9ee3f62f1 for entries with JobUID 9f1a80d7-84a6-e211-9b9d-00155d85170c.
    <input accesskey="c" id="CancelButton" style="padding:7px 10px;border:1px solid rgb(171, 171, 171);color:#444444;font-family:'Segoe UI', Segoe, Tahoma, Helvetica, Arial, sans-serif;font-size:11px;margin-left:10px;vertical-align:middle;min-width:6em;background-color:#fdfdfd;"
    type="button" value="Close" />

    Has there been any update on this? Since today I have it too. I was able to create projects with simple workflows yesterday, but not today?
    I get this:
    General
    Exception Starting Workflow: Workflow _ee038ab6-e3e1-4103-9c9f-eb1e34051e03_, for scope _/spo/68c4496a-d2a8-44af-9ff1-cbe0128a80a2/9c9ff6c2-baac-4268-9698-15f0e991bd2a/82440e58-df26-4089-ade6-6f1bc4644c3b_, was not found. HTTP headers received from
    the server - ActivityId: 07317e81-c57d-4eb2-888c-0d17451a35f9. NodeId: . Scope: . Client ActivityId : 08a8209c-7064-f0ac-d588-023a72c8ddd0.. Trace:    at Microsoft.Workflow.Client.ClientHelpers.SendRequest[T](HttpWebRequest request, T content)  
    at Microsoft.Workflow.Client.WorkflowManager.StartInternal(String workflowName, WorkflowStartParameters startParameters)   at Microsoft.SharePoint.WorkflowServices.FabricWorkflowManagementClient.StartInstance(String serviceGroupName, String workflowName,
    String monitoringParam, String activationKey, IDictionary`2 payload)   at Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider.StartWorkflow(WorkflowSubscription subscription, IDictionary`2 payload)   at Microsoft.Office.Project.Server.BusinessLayer.Workflow.StartWorkflow(Guid
    projectGuid, Guid enterpriseProjectTypeUid, Boolean isNewProject, Guid previousEntepriseProjectTypeUid, Boolean skipStage, Guid stageToSkipTo):
    WorkflowExceptionStartingWorkflow (35115). Details: id='35115' name='WorkflowExceptionStartingWorkflow' uid='6a415759-96c9-e211-8076-00155d987b12'.
    Error:
    WorkflowCannotStartWorkflow (35100). Details: id='35100' name='WorkflowCannotStartWorkflow' uid='6b415759-96c9-e211-8076-00155d987b12'.
    Queue:
    GeneralQueueJobFailed (26000) - WorkflowStartWorkflow.WorkflowStartWorkflowMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='6c415759-96c9-e211-8076-00155d987b12' JobUID='b2af9253-96c9-e211-b137-00155d987314'
    ComputerName='09c6345c-04e8-4611-9fe7-b45e66936f28' GroupType='WorkflowStartWorkflow' MessageType='WorkflowStartWorkflowMessage' MessageId='1' Stage='' CorrelationUID='08a8209c-7064-f0ac-d588-023a72c8ddd0'. For more details, check the ULS logs on machine
    09c6345c-04e8-4611-9fe7-b45e66936f28 for entries with JobUID
    b2af9253-96c9-e211-b137-00155d987314.
                 <input accesskey="o" id="ctl00_ctl00_PlaceHolderMain_idOkButton" name="ctl00$ctl00$PlaceHolderMain$idOkButton" style="display:none;" type="button" value="OK" />            
    <input accesskey="c" id="CancelButton" type="button" value="Close" />          

  • No "Add DAQ Component" Dialog box after creating new project

    I'm using VS2012 and have installed Measurement Studio, NIDAQmx, drivers, VISA. When creating a new project in Visual Studio, I do the following:
    1. Select C# > Measurement Studio
    2. Select NI Windows Forms Application
    3. Give the project a name
    4. Click OK
    5. Measurement Studio Class Libraries window pops up and I check the boxes
    The project loads fine but I keep readin about an "Add DAQ Component" dialog box after doing the above steps. Since I don't have the box, I can't create new tasks (without writing th actual code). What am I missing? See attached picture for what dialog box I'm missing.

    Hi Musent,
    To see this dialog box, you'll need to create an NI DAQ Windows Application instead of a Windows Foms Application.
    Kristen

  • Creating a new method in an enhanced component class implemetation

    Hello Experts,
    I am trying to create a new method in the enhanced component(BT115IT_SLSO) implementation class ( ZL_BT115IT__ITEMS_IMPL)to run our custom functionality. But somehow when I put a breakpoint and debug while I add a product to the sales order the method doesnt get trigerred.
    Is there some thing which I have to do  get this trigerred ? I just added a ned method and placed some custom code in it. Do I have to invoke it anywhere ?
    Pls help me out. I am new to Web UI.
    Thanks

    Hi Mavrick,
    As you are performing some action like item addition , there you need a method called as " event handler " to handle the event and perform the required actions.
    Place a break point in DO_HANDLE_EVENT method , and you will know the exact event handler method which is getting triggered . or if you are defining a new event ( by adding any new button) you should create a event handler method using wizard giving the same name which is defined on_click field of the button as it is case sensitive.
    Regards,
    Nithish

  • While adding custom field in urgent change-Create new field button in AET is not coming

    Dear All,
    we have requirement to add some custom fields in urgent change document. while adding custom fields using AET, create new field button is not coming.
    Thanks in advance. points will be awarded.
    Rahul

    Hi Jignesh,
    Thanks for your valueble inputs, it really helped me to understand the process.
    I checked in Web UI configuration for urgent change document as you mentioned but still that button is not coming.
    In transaction BSP_WD_CMPWB, i have created enh. set: Z_ENHANCEMENT_SET.
    Can you tell what to selelect in application and page popup which comes after selecting Enhance component button. Actually i tried but i am not able to add new record in conf.
    Thanks in advance.

  • How can I create a new mail custom form shortcut ?

    Hello everyone !
    It's been three hard day of searching for such a simple question:
    How can I add a button to Outlook's ribbon that select a new pre-define form to send ?
    I already have the button but I miss an instruction like that:
    Create new mail with the form located here
    Thank you in advance for helping :D
    (And sorry if there is a mistake, English is not my native language)

    Hello Dark,
    private void CreateMailItem()
    Outlook.MailItem mailItem = (Outlook.MailItem)
    this.Application.CreateItem(Outlook.OlItemType.olMailItem);
    mailItem.Subject = "This is the subject";
    mailItem.To = "[email protected]";
    mailItem.Body = "This is the message.";
    mailItem.Importance = Outlook.OlImportance.olImportanceLow;
    mailItem.Display(false);
    Outlook forms are associated with items based on the message class values. To get a specific inspector window displayed you need to create an Outlook with the associated message class.
    VSTO provides two different ways for customizing the Fluent UI:
    1. Using the ribbon designer: Walkthrough: Creating a Custom Tab by Using the Ribbon Designer .
    2. A raw XML markup: Walkthrough: Creating a Custom Tab by Using Ribbon XML

Maybe you are looking for

  • How to connect Zi6 HD camera to mac mini for video in?

    I am wondering what is the best way to connect my Koday Zi6 HD camera to my mini so that I can grab video directly from the camera. The camera has HD and AV mini jacks. It also has a built in flip out usb socket, like the flip camera, but this I beli

  • Transferring from Ipod to Mac

    Having changed from a PC to a Mac when I've connected my Ipod and logged in it's only transferred my purchases from Itunes, and not all the songs I'd copied off my own CDs onto the Mac. So now I only have about 40 songs on the pC and over 400 on the

  • Duplicate Cell Contents n-times based on value in neighboring cell?

    I have a sheet/table that contains ~150 rows of 2 columns: A B COUNT CONTENT I am looking for a way to duplicate each CONTENT in a new sheet/table COUNT times, and do this for each row. For example A B 2 RED 1 BLUE 3 GREEN Would give me a sheet/table

  • Cannot download anythng in my n8!

    ovi does open but it always gves error when i try to download anythng!

  • All settings are correst, tests successful, still not publishing

    what's the deal?  I have my remote server set, my local folder set, all password right, all ftp info right, saved and i am trying to *put* the file and its just not posting.  I'm not getting any error messages either? I don't understand.