Update Datasource-Component in VC

Hi,
i've changed my backend-function-module. This serves as a data-source in VC. But the function modules parameter do not change in vc. even if i delet the data-source component in vc and drag it again on  the workspace there has nothing changed. I even copied my function module in backend to another name. I can see that name in the list of available datasources but even then nothing has changed. The parameters are exactly the same as before. And yes everything in backend is active....
Do you know that problem and how can i solve it?
Thank you!
Tobias

Hi Greg, I have just installed the patch 6 of VC6, thinking that this option would appear but in TOOLS -> OPTIONS there isn't a "Compiler" Tab, the tabs that I see are:
View
Edit
Draw
Portal
Perhaps this option that u said is in VC 7?
In case that belong to VC 7 there is a way of installing and work with VC 7 in a EP6 ?

Similar Messages

  • "object reference not set to an instance of an object" after update datasource lightswitch

    I'm using Latest Visual Studio 2013 Ultimate (2013.3) and when I attempt to open "update datasource"  it throws an error
    "Object reference not set to instance of an object." 

    It's quite possibly an issue with the data source definition being dependent on a newer version of a lightswitch framework DLL.  When I've hit these kinds of issues I've simply deleted the datasource, run a nuget refresh and added the datasource again.
     If you have any code or queries, save a copy of the code-behind files and jot down the details of the queries before you try this.

  • Changing prod order quantity no update of component qty (during convertion)

    Hello everybody,
    I would like to ask you if someone has already founded following problem :
    I converted a planned order into a production order and, before to save it, I changed the production order header quantity. In this particular conditions  the system doesn't udate the component quantity also after the order is saved !  The result is to have not the same proportion as in BOM.  I have no founded any OSS note. Have anyone of you founded this kind of problem ?
    Is it a SAP std behavior ?
    Thanks in advance
    Salvatore Testa

    Salvatore-
    Standard would be, that if you change the header quantity in the production order, it will update the components quantity too. I don't see a reason why it is not updating the component quantity.
    Shail

  • Disable Software Updates client component

    I want to temporarily disable the Software Updates Agent component on a subset of 2012 R2 clients. 
    Based on the example of how to disble SWDist here: http://myitforum.com/cs2/blogs/rzander/archive/2008/08/11/sms-sccm-commandline.aspx and digging into WMI a little deeper I thought this might do the trick...
    WMIC /namespace:\\root\ccm\policy\machine\requestedconfig path CCM_SoftwareUpdatesClientConfig  CREATE ComponentName="SmsSoftwareUpdate",Enabled="false",LockSettings="TRUE",PolicySource="local",PolicyVersion="1.0"
    ,SiteSettingsKey="1" /NOINTERACTIVE
    I kept getting "ERROR: Description = Not Found". Although the namespace and class exist, I'm wondering if I'm missing a required property or something changed with 2012 or ... ?. 
    If anyone has experience doing this you're help would be greatly appreciated!
    http://www.blogmynog.com

    Good catch, that explains it. After removing the LockSettings
    property it worked. Thank you Peter and Jason for the quick responses!
    To Disable SW Updates Agent Component:
    WMIC /namespace:\\root\ccm\policy\machine\requestedconfig path CCM_SoftwareUpdatesClientConfig CREATE ComponentName="SmsSoftwareUpdate",Enabled="false",PolicySource="local",PolicyVersion="1.0" ,SiteSettingsKey="1" /NOINTERACTIVE
    To Enable SW Update Agent component (reverse change):
    WMIC /namespace:\\root\ccm\policy\machine\requestedconfig path CCM_SoftwareUpdatesClientConfig WHERE (ComponentName="SmsSoftwareUpdate" AND Enabled="false" AND PolicySource="local" AND PolicyVersion="1.0") delete /NOINTERACTIVE
    http://www.blogmynog.com

  • Problem with updating Time component of an Oracle Date field in ALBPM

    Hi.
    I'm new to ALBPM and am experiencing the following problem I hope someone can take the time to help out with.
    I'm using a Date and Time Picker element in a Form to enter the date and time information. Within ALBPM the date and time representation appears correct as it prints out what I've entered. The logMessage displays this information in the form "YYYY-MM-DD HH24:mm:ss+TimezoneOffset". The BPM Object that stores this value is referencing an Oracle table that has an equivalent Date field. My problem is that it appears to only update the Date component.
    I've also tried using the native Time variable type within ALBPM be adding an variable of type Time to the BPM Object and setting the result Database object equal to this Time variable with the same result. The Time variable was declared with Timestamp precision (take this to mean both Date and Time components).
    Has anyone come across this problem? I'm using ALBPM Studio 6.0 M3 as my release.
    Thanks.

    I must have deselected the "Use Timestamp for Date columns" in the Advanced tab within the External Resource definition for my database at some point in time. Enabling this option fixed my problem - silly me.

  • Using threads (SwingWorker) to update JTree component

    Hi,
    Im having a problem trying to update a JTree component (adding child nodes to an existing node) using threads. Im using the SwingWorker3 class (http://java.sun.com/docs/books/tutorial/uiswing/misc/threads.html) for threading.
    When the user selects a node for expansion, the logic for fetching the children of the selected node is executed under the construct() method of SwingWorker.
    Once this data is obtained, the job of adding the children to the selected node is done in the finished() method which runs on the event-dispatch thread as per documentation of SwingWorker3.
    The problem Im facing is that even though the data for the children is obtained and the finished() method executes and adds the children to the selected node, they are not visible in the UI.
    If anybody knows how this can be resolved, please let me know. Any help/pointers would be greatly appreciated.
    Rgds
    Sridhar

    I added the tree.updateUI() method call in the finished() method. This renders the children (Yipee!).
    But now I have a new problem. If I collapse and again expand a node, I get a NPE. (I see all the child nodes but a exception is still thrown) The exception happens after my treeWillExpand() and treeExpanded() method implementations. So no probs in my code.
    If you know of a solution, pleeease let me know.
    TIA
    Sridhar
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicTreeUI.updateSize(Unknown Source)
    at javax.swing.plaf.basic.BasicTreeUI.toggleExpandState(Unknown Source)
    at javax.swing.plaf.basic.BasicTreeUI.handleExpandControlClick(Unknown Source)
    at javax.swing.plaf.basic.BasicTreeUI.checkForClickInExpandControl(Unknown Source)
    at javax.swing.plaf.basic.BasicTreeUI$MouseHandler.mousePressed(Unknown Source)
    at java.awt.AWTEventMulticaster.mousePressed(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)

  • GoLive Crashing when trying to update a Component!!! Help

    Anyone have any ideas on why this would be happening??? The Component I am trying to update is "Navbar.html" ... the Update box comes up like it is supposed to .. but then I get the "GoLive has encountered a problem and must shut down .... "
    This is getting SO frustrating!!!
    Any help would be apprecitated!
    Kathy

    Does it seem to be happening on the first page it tries to update? Or, can you tell if it's crashing while trying to update a certain page? That usually means GoLive is running into something it doesn't understand (like a syntax error in either the Component or one of the pages it's trying to update). Not always the case, but it's probably the best thing to look for.

  • Updating custom component properties

    Hi all,
    I have a custom textManager component which i use in flash 8.
    This component has several parameters which are "inspectable" which
    enables me to set the value of the parameters per instance inside
    the flash parameters panel. I have now added a new value to one of
    these parameters but have noticed that this new value isnt
    available for the exisiting instances, only new instances dragged
    into the stage have this new value in the drop down. How do i
    update all the existing instances of this component so that i can
    see this new value on their parameters list? Does this require a
    JSFL solution, if so could someone give me some tip on where to
    start as i have no knowledge of JSFL. Thanks in advance
    /Eric

    Hi all,
    I have a custom textManager component which i use in flash 8.
    This component has several parameters which are "inspectable" which
    enables me to set the value of the parameters per instance inside
    the flash parameters panel. I have now added a new value to one of
    these parameters but have noticed that this new value isnt
    available for the exisiting instances, only new instances dragged
    into the stage have this new value in the drop down. How do i
    update all the existing instances of this component so that i can
    see this new value on their parameters list? Does this require a
    JSFL solution, if so could someone give me some tip on where to
    start as i have no knowledge of JSFL. Thanks in advance
    /Eric

  • Update Phase Component From Project Component

    Morning all.
    I'm looking at options we might have open to us for the following scenario. Any ideas? Previous experiences,  etc most welcome ...
    We have a custom field in DPR_DET_DATA_PROJECT_O that we transfer to PS, but want to use the same field value to force PPM to think the same field change has occurred in DPR_DET_DATA_PHASE_O without us actually needing to access the component via the UI. We have an active subsystem that we write the value to,  but don't want to have to a have to start the phase component from the ui to pass the change before saving.
    The idea being that we only need this field value at PS Replication time on the phase .... As we want to effectively cascade this value onto all our WBS Elements (DPO & PPO objects) in PS (only 2 level controlling scenario) ... We don't even really need to save the data at the phase level .... Just make the change manager think that the phase had changed ... hopefully we'll then get the PPO objects through the DPR_FIN_GECCO_ATTR Badi during replication .... without having physically made s chessmen at phase level. Make sense?
    Is setting the phase data (and triggering a change to be recorded) from the project component a possibility?
    Many Thanks

    Hello David,
    If I understood correctly, you want to change a custom field existing both in the project definition and at phase level, without accessing the Phase in the UI? Is that right?
    If so, than it's simple. In your subsystem, I suppose you have an instance of your loaded project (cl_dpr_project_o). When you change the value of the particular field and "trigger" the updating, you just use the project instance (let's call it lo_project) to get all the child phases in an object table (type CL_DPR_PHASE). Loop through this table and use the method lo_phase->set_data( ). I'm not sure in which of the three structure you can find the custom fields, but it's definitely either _INT/_CHG/_EXT. Also, I recommend you encapsulate this code inside a method, as you'll need to call it from the beginning (if you decide not to save the value).
    Hope this helps!
    Tudor

  • Desktop Manager states Updated Software Component Must Be Installed - but won't install it

    I am running Desktop Manger 6.1.0.35 (Bundle 34) for a while. I am moving to a new smartphone of the same model but phone I am moving to has an older OS on it. I run the desktop manager which correctly determines that there is a new OS to load. I select the OS version to load and tell it to get the update and it responds with the error 'An Updated Blackberry Software component must be installed before you can continue'. It then asks if you wish to Install or Cancel. After selecting Install, it returns to the main screen of the desktop manager. Selecting UPDATE again, to insteall the latest OS, it repeats the same process again. So I am unable to load the latest OS into the device.
    I've tried loading the software via the Blackberry web site instead, and it does the same thing. I can't get the OS updated.
    Has anyone had this problem and determined how to get around it?

    Hey,
    i am having the same issue for about 3 weeks now. I was able to install the latest version, 7.1, but i can't install a new OS. The software finds that there is a new OS that can be installed, but as soon i want to install it, the software demands an update, although it already is the newest version...
    Might there be a general problem with the 7.1 version???

  • Updating Datasource in CR Server

    Hi, my organization delivers reports in two ways.  We use CR Server and our ERP has a built in report viewer where users can run reports on demand.  These two systems use two different connections types to the same database.
    We are upgrading to a new version of our ERP and with that comes a new database.  My question is twofold. 
    In terms of the reports on CR Server is there a way to update the datasource on all of the reports without having to update them individually?  I have tried using the Schedule Manager but my test report fails to run after changing the datasource. 
    Second, Is it possible to update the datasource of reports sitting in a folder (not in CR Server) in bulk without having to open each one up and updating it manually?

    Hi,
    Try with below steps.
    !) Go to the Crystal Reports Job Server >> Destination >> Host.
    2) Use the IP address instead of SMTP server name and click on Save & Close button.
    3) Repeat the same steps (1-2) for Destination Job Server.
    4) Restart the Crystal Reports Job Server and Destination Job Server.
    Thanks,
    Amit'

  • I tunes updater missing component

    My Apple Updater is missing some sort of component and won't update. I get an error message from Windows. I have tried to remove it in the control panel and it won't let me and says it's missing a windows controller. So I went into search and tried to remove the file and it won't let me do that either. I have also removed the entire Apple program and then went to i tunes and re-installed it and that doesn't help it either. Any ideas?

    Bump!
    I also have this proublem, except my Updater language is set to Japanese. I have sent 2 support request to Apple. The first one I got back just said to make sure my Apple iTunes store language was set to English (it is) and I have not received a response from my second request. iTunes runs in English.
    Thanks for any help.

  • 2.2 update: Apple component cable not working

    Hi all,
    Since updating to 2.1 (now updated to 2.2) I have been unable to get video out in my iPhone 2G.
    I have Apple component AV cables which worked fine on 2.01 with both my TV and the projectors used at University (I use this in my lectures). Upgrading to 2.2 has not fixed the problem.
    Annyhoo, once I plug them in I get the dreaded 'This device is not compatible etc...' message and all I get is audio. I have even had this warning when using the cable and the wall plug to recharge.
    I have looked through Apple's Support site and several people have been having trouble with 3rd party cables but mine are Apple, came in the nice shiny (expensive) box 'n everything. Apple Support (US) definitely lists this cable as compatible with my iPhone.
    Can anyone offer practical advice, or do I have to back to 2.01 to get this to work?

    iPhone 2G, firmware 2.2, Apple composite cable. Still works.

  • Exit or enhancement spot to update network component price

    Dear SAP expert,
    I have a problem with component in network pricing which will copy from material standard price. This lead to unrealistic price in PR creation since the standard price only updated per 6 months.
    I need to find an exit or enhancement spot to update the price in network to the last PO created.
    Anybody can help on this issue?
    Thanks in advance.

    thanks for the advice. May i ask another question which is:
    If i set the costing variant lets say to get the latest PO price, will it affect the material standard price in material master as well or only affect the network material component price. Since what i need is not to change the material standard price but only the material component price in network level..thanks

  • Can't update mpeg2 component

    I have D2187Z/A that I purchased in 2009, which shows as v1.02 in info when looking via Finder
    I see there is a new product code for the component in the Apple Store : D2189Z/A
    This leads me to think I am two revisions behind.
    When I go to the store, click on Account, then Downloadable Items it shows my original purchase, and doesn't indicate an update is available.
    If I click on download, I get 'page not found' error, which leads me to again think the product has been updated, and the old version is no longer available.
    The link should either point to D2189Z/A, and let me download that update, or if the software is the same it should let me re-download the original D2187Z/A software.
    So it seems there is an Apple bug either way
    Can anything be done here ? Must be messing up others as well ?

    Check the video driver setting for anti-aliasing, and reset to application controlled if different.

Maybe you are looking for

  • Clock icon always displays 10:15:00

    Hi, It's more a comment than a question but the icon for the calendar always displays the correct date, the icon for messages displays the number of new messages. So why is it that the icon for the clock doesn't display the correct time ? I suppose u

  • MacPro (Mid 2012), does it work with a TITAN 6GB ?

    I have a MacPro (Mid 2012) and would like to change my video card that came with it. The new video card is a Titan with 6Gb. Can you help me and inform what I need to buy with this new video card ?   (adapters, conectors, does my MacPro has enough po

  • Kodak Q-60 IT8 to profile the Epson 2400 scanner

    I am trying to create an ICC profile for my Epson 2400 scanner with the Kodak Q-60 IT8 Target Reflective. My Adorama receipt has the numbers 1907914 so I am assuming that is the file I need to go with the scan I need to do. The 5x7 card is label Q-60

  • BlackBerry z 10 email sync

    How does thez10 work with outlook? And sync with colander on outlook.

  • Weird problem with the apple tv (3rd gen) playing choppy iTunes Music

    I have a weird problem with the apple tv(3rd gen) when i use my macbook pro to play itunes music via airplay the music is extremely choppy however that only happens if I have both my mac and apple tv connected to the same 5 ghz band on my dual band w