Graph showing an extra plot in cursor palette

Hi,
I have an XY graph with many plots.
The graph is showing an extra plot in the cursor palette.
I have 9 plots.In plot legend palette its showing the correct plots only.
But in the cursor palette it showing an extra plot with name plot9.
I have given the value 9 to the property node legend plots shown.
I couldnt find where i am going wrong.
I am attaching the portion of graph and block diagram.
Any ideas?
Attachments:
graph.JPG ‏108 KB
blockdiagram.JPG ‏29 KB

Chazzzmd wrote:
Can someone please help me. You ever spend a bunch of time on something that you know is easier. BTW-I'm using V8.5 and still fairly new to LV
Chazzzzmd,
Could you attach your latest attempt that shows the problem mentioned in your last post:
"The plots are being displayed but there's one line connecting the 2 plots. That and they are the same color even though I've picked 2 different colors in the plot legend"
This is probably easy to solve once we see the code.
General comments:
You seem to be coming from a matlab background and thus use mathscript excessively. Many times it would be much easier to do things with wires.
The code you posted shows some very serious beginner errors that make the code overly complicated and seriously hurt performance and debugging ability. The attached VI shows some simple attempts to fix some of the more glaring problems. I have not touched the big mathscript nodes, but they would be easy to do too.
Your sequence structure has no purpose because execution order is entirely determined by dataflow.
Your terminals are in the first frame while local variables of them are inside the loop. This just causes extra data copies in memory for no reason at all. delete the local variables and place their respective terminal in their place.
Your while loop cannot be stopped and spins at full speed, most of the time repeating the same calculation over and over again and using 100% of the available CPU. Place an indicator in the iteration terminal for the proof!
This also causes flickering of the graph. The graph only needs updating if the data changes!
All you need is an event structure so the loop spins only if one of the controls have changed.
You have an indicator in one case and a local variable of it in all other cases. Here you can delete all the local variables and place the indicator AFTER the case structure. Makes sense?
Similarly, you only need one instance of the property node. Everything that occurs in all cases of a case structure should be outside the case structure!
Make the "switch position" an enum! This way the cases are automatically labeled, promoting code readability and and eliminating coding errors and additional diagram comments.
A lot of duplicate code can be consolidated. For example you have three identical FOR loops and "Strings and values" property nodes. One instance of each is sufficient, placed in another FOR loop.
Most people don't have the luxury of 4000x4000 pixel monitors. Keep the diagram and front panel at a reasonable size.
The attached quick modification draft shows some alternative techniques. Have a look at the green diagram comments, maybe it can give you some ideas. I think the functionality is the same as your code, but I think there are errors. I did not try to fix functional errors, just did some simple Refactoring!
See if things make sense. Good luck!
Message Edited by altenbach on 03-12-2008 01:13 AM
LabVIEW Champion . Do more with less code and in less time .
Attachments:
DataAnalysis_NI UPloadMOD21.vi ‏298 KB

Similar Messages

  • How to modify the cursor palette size in a waveform graph programmaticaly in LabVIEW8

    In previous version of LabVIEW it vas possible to create reference to cursor panel (array) so it was possible to resize, change number of rows, in it. It will be useful for me to have reference to TreeControl contained in cursor legend. How to create this reference? The method described in the manual works for scale legend but not work for cursors panel.

    Thank you JLS once again.
    In my opinion the cursor palette at list should have the following functionality:
    Automatic resizing of the panel while adding and removing cursors programmatically (like plot legend)
    Positioning the panel programmatically (like plot legend)
    Hiding any columns and rows. For example when I hide one of the cursors (let say the second one, not necessary the last one) also this one should disappear from cursors panel, removing cursor from cursor list might be inconvenient. If I have one cursor and not enough room to show cursor panel I can not hide the cursor name column that is unusable but occupies place on the panel
    Altering number of column and rows programmatically. If my cursors serve for selecting part of the signal to be processed (for example trimming signal) it is sense less to show cursors Y position
    Hiding cursor navigator, it works very badly (try to move cursor only to the next measurement point to select exactly for example 10000 points), so I move it under other controls.
    Formatting data displayed
    Having additional elements (coming from underlying tree control) is not necessary in several cases. Life will be much more pleasant if it will be possible to get reference to this tree control.
    By the way it is possible to customize this palette. In design mode configure WaveformGraf to show cursor legend. Select it and then select from menu “Customize control…” Now you can do whatever you (I) want, for example change the column name from X to Time. Save your work, if prompted replace original with just designed and… nothing changes – funny isn’t it?
    Best regards,
    Zygmunt

  • LabVIEW crashes when you run a VI that contains a mixed signal graph with a multi-plot cursor.

    Hello, LV 8.2.1 notes indicates the following bug fix:
    43SAIR2A  Fixed an issue where LabVIEW crashes when you run a VI that contains a mixed signal graph with a multi-plot cursor.
    I am running this version, and still have this behavior.  Is there anything I may be missing, and/or certain circumstances that may still be causing this?
    thanks in advance,
    Darren

    Darren:
    I looked at the CAR ID that you mentioned and the issue has been resolved in LabVIEW 8.2.1. To verify something similar, I ran the attached VI and things worked just fine. Please feel free to send me the steps to follow to reproduce the issue you are running into in 8.2.1.
    Regards,
    Rudi N.
    Attachments:
    MixedGraphs.vi ‏15 KB

  • How can I determine programmat​ically which plot the cursor is snapped to?

    The waveform graph cursor legend shows name of plot currently snapped to (in snap to any plot mode), even as user moves cursor to different plot.  But there is no property to read this plot name!  Active Plot and Plot Name do not update as user drags cursor to different plots.  I'll try to cast the cursor reference to something useful while I wait for a response.

    You cannot move the cursor from one plot to another unless it's single-plot (free and multiplot are the only other choices, and if it's free it doesn't snap, right?) mode AND the plot property is a "-1".  Try it.  I'm using probes and an event case in a while loop (but without a stop button and wait "statement"/primitive ).  That's how I know it's "-1", until I implemented the solution I mentioned above.
    I reproduced your test code (complete with stop button and wait) and got the same results you did, as expected.  The problem with test code is it rarely does anything useful.  Try reproducing my case by putting a case structure in your test code wired to a "free" boolean; in the false case put a "1" wired out to a Cursor.CursorMode property and a "0" wired out to a Cursor.Plot property; in the true case put a "0" wired out to the Cursor.CursorMode prop and a "-1" wired out to the Cursor.Plot prop.  With "free" = False you won't be able to snap to any other plot; with "free" = True Cursor.Plot will, of course be a "-1", no matter where it is, since it is "free".  Bear in mind that I need to give the user the ability to select a plot, click a button, then change that plot's data by clicking and dragging the cursor (the data at the cursor's x coord changes to the the value of the cursor's y coord); when the user clicks the button to change back to the "don't change data, just select a plot" mode, the cursor needs to snap to its current location, which is the last changed data point of the plot that he just changed the data of.  If you can come up with an alternative solution to mine, I'd love to hear/see it!
    But my real point, since I found a viable solution to the immediate problem, is that there is cursor information presented to the user in the cursor list box that I can't get at programmatically!  And this is info I could have used to solve my original problem!  I don't understand why NI wouldn't have made a property for it like they have for other, much less useful, bits of info.

  • Access the properties of an xy-plot (eg: cursor x,y values, scale etc)

    Is there a way to do the following:
    - access the (x,y) coordinates of a plot cursor so that I can use them further in the program? I need to mark certain points in a plot and store them in an array. Right now I have to copy them by hand(!) from the cursor legend, and then paste them as the elements of the array.
    -access the scale of the plot (set on autoscale), for example the y-scale? I would like to be able to run a while loop (where data is acquired) until the |max| of
    the scale is above or under a specific value.
    Thanks a lot!

    1. Create a property node for the graph and select the property "active cursor", expand the property node to another property and select cursor.position -> all elements...The two elements are the x and y position of the cursor you set active by wiring the index of the cursor to the active cursor property (0 is the first cursor...1 is the next etc.).
    2. The Y scale maximum can be read from the Y scale range maximum property of the graph. Instead of using autoscaling and and decide when to stop by reading the current scale I would rather check the incoming aquired values directly though.
    MTO

  • How do I create graph showing savings over time?

    Hey there, I'm trying to create a graph showing savings over time. I only have data for random months (they aren't spread apart evenly) So this chart isn't showing an accurate slope of savings over time. I tried entering months in between the months I have recorded and just leaving the savings amount blank but that deletes the curved slope on the graph. Is there a way and can show only these 7 recorded numbers but have them spread out on the graph to reflect the accurate time?
    Thanks,
    Caleb

    The only way I can see of "stretching" the x-axis into a regular timeline would be to add extra rows for some of the intervening dates and then averaging the both the dates and the amounts from the row above and the row below:
    You can then hide the rows that contain the averaged amounts.
    When you create the chart you'll need to tick the "Hidden data" button under Chart Options:
    After you've created the chart, you can edit the dates on the x-axis to remove any unwanted labels.
    Hope this helps.
    H

  • XY Graph shows phantom dots when zoomed

    I'm plotting a large data set versus time in an XY graph.  When I zoom in, the plot shows the data, plotted in lines, but also shows a large number of phantom dots.  When setting the plot to "lines & markers" the phantom dots disappear.  See attached jpg.
    Has anyone seen this / have a solution?
    Attachments:
    XYGraph_Phantom_Dots.JPG ‏111 KB

    It seems to me to be either a bug with graphs or a redraw issue (OS bound and not exactly LabVIEW issue). I haven't seen it myself though. Is it possible to replicate the issue with a smaller VI and an array constant for the values? If so then that would be really helpful to post so we can debug.
    Here (attached) is a VI I created to try and find the bug but was unable to. This doesn't mean that this issue is only on your machine but just means that we need to dig a little deeper to figure out what causes it. I created it in LabVIEW 2012 but saved this back to 8.0 so you could take a look at it.
    Grant H.
    National Instruments
    LabVIEW Product Marketing Manager
    Attachments:
    XYGraph_Zoom_test.vi ‏10 KB

  • My website shows an extra box image on PC's that is not showing on my computer in iWeb or online.

    My website shows an extra box image on PC's that is not showing on my computer in iWeb or online. I know for sure that the box is not there in iWeb. You will see it on the homepage of www.gageformen.com of you're on a PC. Any clue how I can get rid of it? Thanks!

    Post a screenshot of the page on the PC so we can see what you're referring to?  What type of box image is it?
    By the way, I noticed that the only text in your entire site that is not an image file is that on the page RESPONSIBLE STYLE.  That's the only text in your site that a search engine can use in it's ranking and listing.  That could be limiting as to what the search engines have to use from your site.
    OT

  • Issue with Excel Web Access --Excel graph showing only gray color

    I am using "Excel Web Access" Web Parts to show the excel graphs in my MOSS2007 setup. I have multiple team sites under one site-collection. Excel web access is fine for all the team sites but , its showing only gray color for just one site. I tried to upload
    new excel sheet with different graphs but still it shows the same gray color.
    Any help would be really appreciated. 
    Umesh Mishra | My blogs: http://windowsadminblog.blogspot.com | Twitter @UmeshMishra | Linkedin: /in/umeshmishra

    I was able to resolve the issue , here is the solution: http://windowsadminblog.blogspot.in/2012/12/excel-web-access-graphs-showing-gray.html
    Umesh Mishra | My blogs: http://windowsadminblog.blogspot.com | Twitter @UmeshMishra | Linkedin: /in/umeshmishra

  • EXCEL GRAPHS SHOWING DATA FOR SAP

    ANYBODY KNOW ANY FUNCTION CALL TO EXCEL GRAPHS SHOWING DATA FOR SAP

    Hi,
    Please don't use all Caps in Subject and Body Text too
    Please have a look at [Forum Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    Best Regards,
    Faisal

  • DEADLOCK - ON INSERT but Graph shows on UPDATE

    HI Experts, Please can you look at below graph , queries invloved in deadlock are insert queries but deadlock graph shows it's waiting for IU lock , please suggest why this is happening and possible solution on this ?<deadlock>
    <victim-list>
    <victimProcess id="processfe4f4c8" />
    </victim-list>
    <process-list>
    <process id="processfe4f4c8" taskpriority="0" logused="0" waitresource="PAGE: 16:15:2763616" waittime="18910" ownerId="14792928887" transactionname="INSERT" lasttranstarted="2014-12-01T03:18:56.583" XDES="0x98461ce90" lockMode="U" schedulerid="8" kpid="322972" status="suspended" spid="157" sbid="0" ecid="0" priority="0" trancount="2" lastbatchstarted="2014-12-01T03:18:56.527" lastbatchcompleted="2014-12-01T03:18:56.523" clientapp="Microsoft SQL Server" hostname="LDNPSM020012787" hostpid="11512" loginname="INTRANET\sysStrAggProdRW" isolationlevel="read committed (2)" xactid="14792928887" currentdb="16" lockTimeout="4294967295" clientoption1="671221856" clientoption2="128056">
    <executionStack>
    <frame procname="" line="9" stmtstart="614" sqlhandle="0x03001000714adf585beadc00f1a300000000000000000000" />
    <frame procname="" line="4" stmtstart="132" sqlhandle="0x02000000dcb4f83081b8eccb8453ddd8d8b68d18e5e102f7" />
    <frame procname="" line="1" sqlhandle="0x000000000000000000000000000000000000000000000000" />
    </executionStack>
    <inputbuf>
    (@P1 datetime2(0))declare @cobdate datetime;
    set @cobDate = @P1;
    INSERT INTO [risk].[VolckerSignoffDetailed]
    ( [CobDate]
    ,[ChorusId]
    ,[RiskManager]
    ,[Description]
    ,[Currency]
    ,[Tenor]
    ,[Sensitivity]
    ,[RiskMetricValue]
    ,[AssetClass]
    ,[FunctionalGroup]
    ,[Desk]
    ,[NoRiskFlag])
    SELECT
    [CobDate]
    ,vfs.[ChorusId]
    ,coalesce(vmn.RiskManager,'Unknown')
    ,[SensitivityDescription]
    ,[Ccy]
    ,[Tenor]
    ,[SensitivityType]
    ,[SensitivityValue]
    ,'Fx'
    ,coalesce(vmn.FunctionalGroup,'Unknown')
    ,coalesce(vmn.Desk,'Unknown')
    ,0
    FROM [Rover].[risk].[VolckerFxSensitivityReport_history] vfs
    LEFT JOIN risk.VolckerMarsNodeSignOffData vmn ON vfs.ChorusId = vmn.ChorusId
    WHERE cobDate = @cobDate
    UNION ALL
    SELECT @cobDate
    ,mm.ChorusId
    ,coalesce(vmnsd.RiskManager,'Unknown')
    ,NULL
    ,NULL
    ,vmn.Sensitivity
    ,0
    ,'Fx'
    ,coalesce(vmnsd.Function </inputbuf>
    </process>
    <process id="processfe4fdc8" taskpriority="0" logused="16200" waitresource="PAGE: 16:15:2681345" waittime="3546" ownerId="14792751373" transactionname="INSERT" lasttranstarted="2014-12-01T03:17:57.960" XDES="0x438882e90" lockMode="X" schedulerid="8" kpid="323636" status="suspended" spid="74" sbid="0" ecid="0" priority="0" trancount="2" lastbatchstarted="2014-12-01T03:17:56.683" lastbatchcompleted="2014-12-01T03:17:56.580" clientapp="Microsoft SQL Server" hostname="LDNPSM020012787" hostpid="13984" loginname="INTRANET\sysStrAggProdRW" isolationlevel="read committed (2)" xactid="14792751373" currentdb="16" lockTimeout="4294967295" clientoption1="671221856" clientoption2="128056">
    <executionStack>
    <frame procname="" line="9" stmtstart="614" sqlhandle="0x03001000714adf585beadc00f1a300000000000000000000" />
    <frame procname="" line="4" stmtstart="132" sqlhandle="0x0200000094fe01033c05ace97f13efdd7dca36b6e6c8c03d" />
    <frame procname="" line="1" sqlhandle="0x000000000000000000000000000000000000000000000000" />
    </executionStack>
    <inputbuf>
    (@P1 datetime2(0))declare @cobdate datetime;
    set @cobDate = @P1;
    INSERT INTO [risk].[VolckerSignoffDetailed]
    ( [CobDate]
    ,[ChorusId]
    ,[RiskManager]
    ,[Currency]
    ,[Product]
    ,[Sensitivity]
    ,[RiskMetricValue]
    ,[AssetClass]
    ,[FunctionalGroup]
    ,[Desk]
    ,[NoRiskFlag])
    SELECT
    [CobDate]
    ,vss.[ChorusId]
    ,coalesce(vmn.RiskManager,'Unknown')
    ,[Currency]
    ,[Product]
    ,[Sensitivity]
    ,[RiskMetricValue]
    ,'SecProducts'
    ,coalesce(vmn.FunctionalGroup,'Unknown')
    ,coalesce(vmn.Desk,'Unknown')
    ,0
    FROM [Rover].[risk].[VolckerSecProductsSensitivityReport_history] vss
    LEFT JOIN risk.VolckerMarsNodeSignOffData vmn ON vss.ChorusId = vmn.ChorusId
    WHERE cobDate = @cobDate
    UNION ALL
    SELECT @cobDate
    ,mm.ChorusId
    ,coalesce(vmnsd.RiskManager,'Unknown')
    ,NULL
    ,vmn.Sensitivity
    ,0
    ,'SecProducts'
    ,coalesce(vmnsd.FunctionalGroup,'Unknown')
    ,c </inputbuf>
    </process>
    </process-list>
    <resource-list>
    <pagelock fileid="15" pageid="2763616" dbid="16" objectname="" id="lock6ca651a80" mode="U" associatedObjectId="72057594417643520">
    <owner-list>
    <owner id="processfe4fdc8" mode="U" />
    </owner-list>
    <waiter-list>
    <waiter id="processfe4f4c8" mode="U" requestType="wait" />
    </waiter-list>
    </pagelock>
    <pagelock fileid="15" pageid="2681345" dbid="16" objectname="" id="lock3c5a70480" mode="IU" associatedObjectId="72057594417774592">
    <owner-list>
    <owner id="processfe4f4c8" mode="IU" />
    </owner-list>
    <waiter-list>
    <waiter id="processfe4fdc8" mode="X" requestType="convert" />
    </waiter-list>
    </pagelock>
    </resource-list>
    </deadlock>
    Shivraj Patil.

    It's difficult to tell exactly what is going on without further information about the database. We would also need to map the pages to tables, which you can do with DBCC PAGE. (Which is undocumented, though.)
    The U(pdate) lock here has nothing to do with an UPDATE statement. An Update lock on a resource, is a read lock, but which indicates that the process wil later perform an update on the resource. There can only be one U lock on a resource. The resource in this
    question is a page, and an INSERT will cause an update to a page somewhere.
    The other locks are IU (Intent-Update) which indicates that the process holds U locks on a resource on lower level, that is a row in this case. X is an exclusive lock.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • My imac wont boot  and a small square shows up next to the cursor

    Hi
    my imac wont boot and a small square shows up next to the cursor. I can open in safe mode. I have reinstalled the OSX, but can't boot from back-up.
    Any advice?

    OK.....I figured it out.....after reading endless threads on the cursor issue, I found out that apple calls the cursor a MOUSE POINTER..! and the square that follows it a 'corruption'...GO FIGURE!
    Anyway, this is what I did.
    I tried reinstalling Mountain Lion....online install. It didn't resolve the issue. Same problems
    Then, I tried reinstalling from the original DVD install disc....this wasn't possible (no access sign over install icon).
    So I finally erased my hard drive (after rebooting command - r), BUT NOT BEFORE BACKING UP MY FILES, APPLICATIONS, SETTINGS and any other important data!!!!!!!
    Then started up command R
    Then reinstalled Mountain Lion online
    My iMac started up like it does when you install 'out of the box'...follow the instructions....
    my cursor, or mouse pointer is now free of it's 'corruption', and boots up just fine!
    Hope this helps anyone out there with the same issue

  • How to show and hide plots which are stacked and plotted on the one graph?

    I am currently designing a Logic Analyser with 8 channels. These are plotted on a graph, stacked on top of each other. The user is able to select which plots he/she wishes to examine (i.e 1,4,6). I need to figure out how to hide the plots not required and show the plots needed.

    Hi,
    Did u say stacked?? then you must be using a chart not a graph
    Nevertheless, as Unclebump has suggested, here is a Vi to give you an idea on how to use active plot and visible property nodes
    Build on it to hide/show plots
    Regards
    Dev
    Message Edited by devchander on 01-24-2006 06:09 AM
    Attachments:
    plot.vi ‏176 KB

  • How to plot a multiple XY graph showing the area between the curves as shaded (colored)

    I want to generate multiple XY plots and want to show (e.g. colored) the area between the two selected curves. I am using LabView 8.
    Thanks in advance for your help.

    That was too quick !
    Your example is significantly more complicated, since there are some boolean logic behind.
    I'm not sure this is something that can be done easily with LabVIEW. After some play with the drawing order of the various curves, I have been able to reproduce your example, but that's not very elegant :
    Plots 0 and 1 are duplicates of plots 4 and 5 to improve the drawing (without these additionnal plots, the red and black lines almost disapear, hidden by the inter-curve filling). Line 2 fills to Line 5 (green to red in white). Line 3 fills to Line 4 (black to blue, in grey).
    May be someone will comes with a better solution. Ben ?
    Message Edité par chilly charly le 10-25-2007 01:45 PM
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    Example_BD.png ‏10 KB

  • Graph showing sleep data

    Hi!
    I have a task that would be easy to accomplish if I were to use a pen and paper, but still seems hard to accomplish in Numbers. I want to create a graph/diagram showing on the Y-axis: time of the day when (A) I went to bed, and (B) I woke up; and on the X-axis: date of that day. I have created a mockup chart showing how I (roughly) want my data to appear. Number's linear chart doesn't seem to accept "time/date" as a value for the Y-axis, so to plot this I had to use a graph diagram (which isn't really accurate):
    The data I have is arranged in a three column table as following: [Date; Time lights out; Time out of bed (next morning)]
    The reason the above chart isn't accurate is because I have entered all data as occuring on the same date (+1 if after midnight). If I hadn't, the Y-axis would just increase and increase for each night. And that's my problem: The time-data I want to enter shouldn't be date-specific on the Y-axis, only on the X-axis. Since this is part of a sleep-journal program, I will be making new entries each day (not all at once).
    So, my question is: How do I avoid Numbers enterpreting these as consecutive dates and achive the chart I'm looking for?
    Thank you,
    Sebastian

    I didn't look closely enough at your chart. Aside from the 24 hr problem, you cannot make a chart where the Y axis has a larger number on the bottom than on the top. You will hve to create your Y axis value labels manually.  Also, to get below "0:00", the chart cannot be plotting Date & Time values because there is no such thing as negative time.
    I consider "sleep time" to be the ending of the day. From that viewpoint, it appears for each date you are entering the previous day's sleep time and the current day's wake time. The vertical distance between the two on the chart therefore indicates the amount of time you slept. I moved my columns around accordingly.
    As explained above, I had to use durations like Jerry did.  Columns B, C, F, and G are formatted as durations.
    You don't necessarily have to create three new columns. You really only need the one that adjusts the sleep time. But I find it much easier and less error prone and it often takes fewer steps to create charts when the data is all together. You can do it either way.
    column E = A
    column F = B- DURATION(,,IF(B>C,24,0))
    column G = C
    Make the scatter chart then do the following:
    You need to set the Y-axis min and max, you cannot let them be "auto".  For the chart in the sceenshot, the max is 16h and the min is -4h and there are 5 steps.
    Resize the chart to whatever size you want it to be.
    The Y axis of the chart is actually a table. A plain table, one column. Type in the same Y axis labels that the chart made except for the lowest one which, in this case was a -4:00 and needed to be 20:00.
    Turn off the chart's Y axis labels and position and resize the table to be the Y-axis labels.
    Turn off the table borders and set the fill color to none.

Maybe you are looking for

  • House-keeping:  When was it last used ...

    Hi Everyone, I am doing "house-keeping" on my tables and wondered if there is a way to see when data in a particular table was last inserted or updated? Ideally, I would like to list all tables with their size (this I can already get) and the last ed

  • Sorting in dataTable

    If anyone had played with display arena .. plss plss let me know .. can we do sorting in dataTable .. i dont see any tags attributes around .. if its not at all possible in jsp , then only i can get in bean coding side ..

  • Option to get rid of the "Home" and "Call phones" buttons

    Love Skype, I use it primarily as an IM. But I never use those two buttons, and I can't seem to get rid of them. Please provide an option in the View menu to hide them!

  • How to configure http ports in AS Java 7.1 EHP1 ?

    Hi all, how can I create a new http port on AS Java 7.1 EHP 1 ? I can't find this in nwa. In AS Java 6.40 I use Visual Admin - Dispatcher - Services - http provider and then I can create many ports ( like (Port:50000,Type:http)(Port:50001,Type:ssl)(P

  • Create a new header+item after sync the item some informations are deleted

    Hi All, I have a DO with a backend adapter and 3 bapi wrapper (GetList, GetDetail, Create). When I create a new instance (header+item) on client side the data are correct in the database. After a sync the instance is also on the client and the Backen