Links -g and vt mode

Hi, I'm not sure if it the best forum for that but as my question is related to graphics I've decided to ask i here.
I have small installation, with no X, no svgalib. Only framebuffer compiled into the kernel. The fb is up and running. I've compiled links with --enable-graphics --without-x, but when I try to run it in graphic mode it reports an error:
Coud not get VT mode.
I went through keyboard and console HOWTO, but didn't find a solution.
I've found somewhere that it coud be a problem with /dev/fb0 permissions but I don't think that is a problem here - same error I get if I try to run links as a root.
I'd be very gratefull for any hints how to solve that.
Thanks in advance.
Mis'

Why wouldent it work?  to many connections?   the high gain antenna?

Similar Messages

  • How do I set Link Speed and Duplex Mode of NIC Card

    Hi All.
         I

    I'm working on the tester to verify the various speed at UUT by sending command on those speed and check response.
        I used to try Devcon but only disable and enable NIC Card that I know for now. If someone experience on this thing, that would be great.
    Abdulnasir

  • Explore links in recursive and multithreading mode

    Hi everyone.
    I need a help to make this exercise:
    Develop a java program that. from a web page, explore all the link in ecursive and multithreading mode.
    Every thread will stop at an exploration level equal to 6. If the link was already explored the exploration
    does not repeat again and the exploration level will be shown on the console.
    I'd like a help at least for an initial definition.
    thank you

    Welcome to our community
    I'm not sure I fully comprehend the issue. You are previewing. This will impose some limitations and really is only there to approximate the end user experience.
    You say that if you open things outside of RoboHelp the links work fine. And this is really how the end user will be using things, no? So if it works fine in this mode I'm not understanding why there is an issue.
    Out of curiosity, why PDF? You are hopefully aware that one might supply PDF only for the purposes of printing, right? Otherwise, if your end user will be expecting to click links or whatever, you should be outputting a help format. (CHM, WebHelp, FlashHelp, AIR Help, etc)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • Firefox 18.0.1 consuming excessive CPU--both in Standard and Safe Mode--when accessing Gmail

    Firefox 18.0.1 consumes excessive CPU--both in Standard and Safe Modes--when accessing Gmail (in Standard Mode). CPU consumption averages around 56% on my dual-CPU, Windows 7 desktop.
    The only way to stop this from happening it to open Gmail in "HTML" mode. When I open Gmail in Standard mode, a "Loading..." status shows at the top of the page. After about 30 seconds, a error window pops-up within the Gmail page saying that there is a performance problem and provides the option to load Gmail in a limited, "HTML" mode. Clicking the HTML Mode link solves the issue. I've been using Firefox for years and have never seen this issue until now.

    try this link
    *https://support.mozilla.org/en-US/kb/firefox-uses-too-many-cpu-resources-how-fix

  • How to use a single page for create and update mode.

    Hi,
    I need to develop a single page to be used for both create and update modes.
    I am going to use a variable MODE
    and i will set this in the emp summary page.
    Based on the button clicked by the user i have to render the JSF page.
    For tis if the user selects a perticular and cliks on update thn i will pass the empno to the next.
    so there in the next i will appy a ViewCreiteria on my View Obj to fetch only that row so that only that emp will be displayed ion update mode.
    This is working fione for me.
    So now the issue is
    when the user clicks on CreatEmp button.
    i need to enable my VO for insert operations.
    for this i wrote the code like this in the beforePhase event
    FacesContext ctx = FacesContext.getCurrentInstance();
    ValueBinding valBinding = ctx.getApplication().createValueBinding("#{data}");
    BindingContext bContext = (BindingContext) valBinding.getValue(ctx);
    DCDataControl dcControl = bContext.findDataControl("DataControl");
    Application app = ctx.getApplication();
    ApplicationModule am = (ApplicationModule) dcControl.getDataProvider();
    System.out.println("After Appmodule initiation");
    // get the VO reference and initiate the query
    System.out.println("Before Page VO initiation");
    PrismDmPageSectionViewImpl vo = (ViewImpl)am.findViewObject("View");
    //ViewRowImpl row = (ViewRowImpl) vo.createRow();
    /* TO CREATE AN EMPTY ROW*/
    Row row=vo.createRow();
    System.out.println("New Row is created");
    //vo.createKey(row);
    vo.insertRow(row);
    vo.setCurrentRow(row);
    By doing this a new empty page is rendered.
    But when i fill up the values and click on ok.. i am getting the error like this..
    JBO-27023: Failed to validate all rows in a transaction.
    JBO-27027: Missing mandatory attributes for a row with key null of type View3
    JBO-27014: Attribute Id in View3 is required
    JBO-27014: Attribute PageeId in View3 is required
    Please point me out where i am missing.
    Thanks

    Hi,
    In my opinion you are over complicating things.
    This is what I do for using the sme page as both create and update without all this code.
    1) Create a browse page containing a an adf table with a select one component bound to your view object.
    2) Create an additional edit page containing only an edit form containing fields of your view object that your users must enter in order to add or edit rows.
    3) Link the pages in the JSF diagram with an "edit" navigation case from browse to edit page and a "return" navigation case from edit to browse (make sure that redirect option is NOT set on both cases)
    4) Remove the submit button from the edit page and add two application module bindings for the commit and rollback operations as command buttons in the form footer facet. Make sure that both buttons has an action of return and that their disabled property is set to false. You will probably change their labels to ok and cancel respectively.
    5) Drop a create action for your view object from the data control palette inside your page as a command button and set the action property to edit also.
    3) Set the action property of the view button to edit
    This should basically work without any code from your part. -- at least it does so for me -- if you like to make it a bit more funcy you may add am action listener inside your buttons and set a requeScope variable for example #{requestScope.editing} to true or false depending on the button clicked. Then add a title to your page with a value like #{requestScope.editing == true ? 'Editing record' : 'Adding a new record'}..
    Hope that helps.
    Thanassis

  • ACD 30" Dual Link DVI and MacBook Pro Unibody

    I have the following configuration:
    ACD 30" Dual Link DVI and MacBook Pro Unibody
    I am exhibiting some intermittent problems with the 30" display not coming up when I reboot for example and here are some more:
    1. MacBook Pro not in clam-shell mode and restart equals 30" display not turning on
    2. When in Snow Leopard and I have the MacBook Pro running in clam-shell mode and I open the display on the MacBook Pro it remains black.
    3. When waking the MacBook Pro from sleeping (MacBook Pro in clam-shell) the 30" ACD is "grainy" and the display is not usable and it requires a reboot to solve the problem.
    Any help? In addition are there any other displays using mini-display port to mini display port technology?
    What about a different monitor; will I still have to use the Dual Link DVI adapter to drive a display with higher than 1920x1200 resolution?
    Are there adapters to go from mini-display port to display port?
    Thanks,
    Mike

    Just came across your post and i have a couple of suggestions ive noticed with the Dual-Link to Mini-DP with the same configuration.
    When working in clamshell mode for example, the 30" will become the MAIN/Default display...So if you open your macbookpro while the 30" is on and the system is running, the screen will remain black because it is in closed mode; basically meaning there is no signal to be sent.
    so if you want the display to show up, either restart or put into sleep mode, then wake the system WITH THE LID OPEN.
    As for the grainy/static artifacts, its beena reported issue since day 1, not sure waht the fix or issue may be with it but heres a resolution.
    Press; SHIFT CONTROL EJECT-KEY all at once, this will disable signal to the monitor, but not shut off the machine...then use your mouse or press a key on the keyboard to wake the display and the grainyness should disappear.

  • Poster Frame and Trim Mode not working properly with post-synced clips

    Hi Everyone-
    Final Cut Pro seems to be doing something really odd and I'm wondering if anyone else has experienced it and if so what is the fix:
    We are shooting a movie on Red with sound coming in on multitrack wav files. We downconvert the R3D files to Prores and then manually sync the tracks in the timeline.
    We link the pix and sound and drag them to the bin to make our dailies. They all play, in sync. When we try to set a poster frame the issues begin. If I load the clip into the browser park the playhead on a frame and choose poster frame, the actual frame in the bin is very noticably offset (often by a few seconds).
    Also, when I use the trim mode, the frames jump to a different part of the shot during trim. It's like the shot is jumping ahead or back while I hit the frame advance or recede buttons. Once I let go of the button the image jumps to the correct number of frames. But, it's very distracting if I am trying to trim, for example, to just before an actor blinks. I can't trim 1 frame at a time. I have to keep hitting the button, watching the picture jump to a different part of the shot, release the trim button and watch the picture jump back to the now correctly trimmed frame...
    As a test I took some of the Prores clips with scratch track sound and brought them into the bin directly from the finder, bypassing the syncing. Using those clips, the trim and poster frames work as expected. Obviously something is going on during syncing.
    I assumed maybe because the audio and pix we different lengths the clip was getting "confused", and didn't know where to "start". So, in the timeline with the synced clips, I razor bladed a few shots, linked them, and dragged them to the bin so the audio and video were the exact same length... Same issue.
    I have noticed the same behavior on 2 separate Macs so I don't think its a preference or corrupted install issue.
    Anyone seen this and have any suggestions?
    Thanks,
    David

    Yes, David, I'm having the same problem under the same circumstances. we're using merged clips made from Prores QTs and multitrk BWF files. In the trim window, the display frame jumps ahead considerably in a frame-by-frame trim, but trims accurately in the timeline. My only work-around has been to use the left/right scrub arrows in the trim window when necessary, which displays the correct frame. Sorry not to have an answer, but I saw a post on another forum from 2007 that speculated it was an FCP 6 bug. Resetting prefs doesn't help.
    Tim

  • Pagp and silent mode

    Hello,
    I am confused with the "silent" mode when used with PAGP "auto" and "desirable" modes.
    "CCNP BCMSN exam certification guide" book, says that "silent" is used when peer is not capable of sending Pagp frames (does not participate in pagp), so that an etherchannel is built in our side anyway.
    But everywhere(cisco's site,book), is reffered that if one peer is in "auto" mode and other in "on" mode OR one peer is in "desirable" and other in "on" mode, a channel is not formed.
    Since the default submode for both - "desirable" and "auto" - is "silent"( meaning that our side does not expect any pagp frames) why a channel can not been established?
    Thanks.

    Hello Bob Grante,
    I agree with you that the documentation is very confusing and vague about PaGP negotiation.
    From what I understand an EtherChannel will form only if one side is configured to be non-silent. I cannot confirm this because I do not have access to a etherchannel capable switch at this time.
    I quote the 3550 Software Configuration Guide 12.2(25)SE.
    "Silent Mode" (Page 31-5)
    "The silent mode is used when the switch is connected to a device that is not PAgP-capable and seldom,
    if ever, sends packets. An example of a silent partner is a file server or a packet analyzer that is not
    generating traffic. In this case, running PAgP on a physical port connected to a silent partner prevents
    that switch port from ever becoming operational; however, the silent setting allows PAgP to operate, to
    attach the interface to a channel group, and to use the interface for transmission."
    The configuration examples te
    "Configuring EtherChannels (Page 31-10)
    "non-silent -- If your switch is connected to a partner that is
    PAgP-capable, you can configure the switch interface for
    nonsilent operation. You can configure an interface with the
    non-silent keyword for use with the auto or desirable mode.
    If you do not specify non-silent with the auto or desirable
    mode, silent is assumed. The silent setting is for connections
    to file servers or packet analyzers. This setting allows PAgP
    to operate, to attach the interface to a channel group, and to
    use the interface for transmission."
    I also would like to quote Brian McGahan, CCIE #8593
    "The description of silent and non-silent is hard to extrapolate from the brief description on CCO, but this is what it means. When in "silent" mode, the switch will generate (if in "desirable" mode) PAgP and respond to PAgP (if in "auto" mode) regardless of whether the link is "silent", meaning whether or not you are recieving traffic from your neighbor.
    When in "non-silent" mode, the switch will only initiate or respond to a PAgP request if the link is "non-silent", meaning that you are receiving traffic in the interface.
    Why this is even an option I'm not really sure, but by default the switch will run PAgP regardless of whether or not traffic is being received in the interface." -- http://forum.internetworkexpert.com/ubbthreads/showflat.php?Cat=&Number=3346&Main=3256
    I think the only way to find out is to test it yourself in a lab environment. I will keep this in mind for future testing.
    Best regards,
    Leon

  • Subscribe link only in edit mode

    I have a subscribe link on the page level as well as having the subscribe icon displayed next to the items in a item region. As a portal administrator, I see all of the above fine. My users, however, only see the subscribe link and the subscribe icons while in Edit mode.
    The users have manage rights on the page where the subscribe link is and manage content rights on the tab where the items are. Is there some way to make the subscribe links visible all the time instead on only in edit mode?
    Rgds/Mark M.
    Portal 9.0.2.6

    Hi Candace:
    I do have a relatively complex access model (template, tabs each with different access, etc.) in the specific page group I was working in so I tried it in a simpler page group.
    I created a page with no template and no tabs that has a subscribe link on the page. I granted a user view only access to the page. The user has no access on the page group level.
    When looking at the page, they do not see the subscribe link. They also don't see the edit link since they have no edit access. However, if they manually add "&_mode=16" to the URL, it goes into edit mode (they can't change anything) and the missing Subscribe link appears in just the right spot.
    I tried each level of access for the user, and they do not see the subscribe link in page view no matter what access they have to the page or page group. Likewise, they DO see the Subscribe link in edit mode no matter what access they have.
    Rgds/Mark M.
    Portal 9.0.2.6

  • HTML Code for Smart Link Edit and Logout items

    I am using an HTML template and would like to include the Smart Link Edit and Logout items in a TABLE. How do I do this?
    Is there a way to get the code for these Smart Links (ORACLE tags) and include them?

    According to Oracle Metalink "Note:368720.1 - When ILS is Enabled the Edit Smartlink is visible to Users that are not entitled to see it", that is the expected behavior whether you are using the "edit" substitution tags or the "edit" smartlink on a page when the page has item-level access enabled. I don't like it but I can understand why that is the behavior since an end user may have access to manage/edit just one item on a page or just one tabbed region on a page and they need a way to put the page into edit mode in order to edit their item(s). If a user has nothing to edit on a page, then they won't be able to do anything in edit mode anyway.
    On the employee portal I work on, there is the possibility that every page may have a different set of users/groups that need to edit items/regions on the page AND the edit smartlink is published on the portal page template so basically, all employees can see the Edit link but if they click on it, only those employees that have items/regions to edit/manage will be able to really do anything while in edit mode.
    However, on the customer portal I work on, there is only one group that manages content site-wide so I was able to publish the Edit smartlink on the portal page template and change its access to the one group that manages content so they're the only ones that can see the Edit link on every page.
    The substitution tags for Logout are #PORTAL.LOGOUT.URL# and #PORTAL.LOGOUT.LABEL# (I use those so I can control the html & css) or just #PORTAL.LOGOUT# (which does both the label and url). The list of all substitution tags is available in Oracle Application Server Portal Help.

  • Flipping between AT&T LTE and Emergency mode

    Greetings,
    I am the proud new owner of a BlackBerry Z10. Within a few days of getting the phone, I noticed it was flip-flopping constantly between AT&T LTE and emergency mode. I could not make or receive calls, and text messages I sent were often received multiple times. Here are some of the steps I took to try and resolve the problem:
    1. Went to the AT&T store and had a new SIM card installed
    2. Several days later, I went back since the problem persisted. They provided a replacement phone.
    3. Performed a security wipe, interrupted it part way through, and performed a fresh install from a PC using BB Link.
    4. Called AT&T support, who suggested replacing it with yet another phone. However, this didn't seem helpful since I purchased the original phone in Pennsylvania and swapped it out the first time in Texas - I wouldn't think they'd have phones from the same "batch" in such geographically disparate locations.
    I'm out of ideas on what else could be causing this and would greatly appreciate any insight the community here could provide!
    Thanks in advance!
    Solved!
    Go to Solution.

    Thank you for the help and suggestions!  I worked with AT&T support and they "did something" ...the phone has been stable and working flawlessly for a few weeks now.  Unfortunately I'm not sure exactly what they did to correct the problem; all I know is that it went to their "L3 support" who in turn worked with Blackberry.  It took them about a day to fully fix the issue but since then, it's been all blue skies.
    Thanks again!

  • Synchronous and asynchronous mode

    Hi all,
          when to use synchronous and asynchronous mode in BDC
    cheers

    Hi Kumar,
    Synchronus data processing is that in which the program calling the update task waits for the update work process to finish the update before it continues processing.
    In Asynchronus update the callng program does not wait for update work process to finish the update and continues as normal.
    A BDC done with sessions is always synchronus.
    A BDC with call transaction is by default asynchronus
    unless you define it explicitly as
    call transaction 'XXXX' ...... update 'S'.
    ( If you donot define update option it is defaulted to "A" ).
    The update method is of importance when one transaction locks data which may be required by a subsequent transaction . The subsequent transaction will fail if data is locked from previous one. An example would be you are creating sales order for same material in succession ( with asynchronus update ). Quite likely that some of transactions would fail due to material locked.
    For large volume of data Call Transaction will be faster but you have no restart capability here. Suppose from 1000 transactions 100 fails . You will have to run the BDC program again exclusing the ones which wrere successful. However with session method you have the option to process the error transactions again in SM35 . So if you are sure that errors will not occur use call transaction else use session method.
    Please also check this link for differences between call transaction and batch input method
    http://help.sap.com/saphelp_47x200/helpdata/en/fa/097015543b11d1898e0000e8322d00/frameset.htm
    Hope this will help.
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • Differences between One Arm and Route modes?

    Hi Guys,
    What are the differences between One Arm and Route modes? Can anyone please explain?
    Krishna

    Hi Krishna,
    Have a look at the two links below. They provide configuration examples for each of the two topologies along with explanation on the different commands used.
    http://docwiki.cisco.com/wiki/Basic_Load_Balancing_Using_Routed_Mode_on_the_Cisco_Application_Control_Engine_Configuration_Example
    http://docwiki.cisco.com/wiki/Basic_Load_Balancing_Using_One_Arm_Mode_with_Source_NAT_on_the_Cisco_Application_Control_Engine_Configuration_Example
    I hope this helps
    Daniel

  • Parallel and multiplexed modes for SCXI...

    I am having difficulty understanding how the Parallel and Multiplexed modes for SCXI modules work.  I've been trying to find one comprehensive document but have been unsuccessful.  Can you please help considering the following configurations:
    Single chassis, single module
    Single chassis, multiple modules
    Multi-chassis, single module on each (I don't know when that would ever be used, but nevertheless...)
    Multi-chassis, multiple modules
    Also I would appreciate it if you could mention when the DAQ device's onboard multiplexer is used, when the SCXI chassis/module/bus' multiplexer (I don't know where exactly the SCXI-based multiplexing occurs) is used, and when both are used.
    Thank you.

    These links should help you
    http://digital.ni.com/public.nsf/websearch/cc4aa48bbff92ba586256522004eb7e3?OpenDocument
    http://digital.ni.com/public.nsf/allkb/E3D3723E9D05AB4986256AA9005B5572
    http://digital.ni.com/public.nsf/allkb/86C493E0768EBCFE86256FD4006BCD52
    http://digital.ni.com/manuals.nsf/websearch/c195895e8c9cae3d8625691f004db285
    Regards,
    Dev

Maybe you are looking for

  • Pscs6 wont open, Microsoft error message

    I downloaded the Photoshop CS6 trial verion yesterday and it worked great for afew hours, but I closed it and now every time I try and open it there's an error message "Adobe Photoshop CS6 hs encountered a problem and needs to close" what could have

  • Can I use my apple tv with more than one computer

    If my computer isn't handy can I use my daughter's macbook pro 13?

  • What Should I See Entering Time Machine?

    I am using a Lacie 500 gig external drive to retain Time Machine backups. Everything appears to work properly. On entering Time Machine, I see only the contents of my 'Desktop' (except the Mac HD and Lacie HD) and nothing else. Is this as it should b

  • Tomcat 4.0 problem

    I installed and started Tomcat 4.0 with no problems but when trying to go to 127.0.0.1:8080/index.html it comes back with page cannot be displayed and/or just hanges there. I tried changing the port to 1976 but had the exact same problem. I'm running

  • B1DE - SBO 2007

    Hi! How does B1DE work with SBO 2007? Does it work with it? I get connection problems. Szilard