Instance for additional NIC - T5240 example

Hi all
What instance number should we expected when adding additional network card?
Anything spacific for SunFire T5240?
We played with two T5240, adding additional NIC , one recognized it as e1000g4/5 another one as e1000g0/1.
Thanks for any comment
Z

for add on cards, it depends on whether you are installing the card AFTER the OS is installed or before, when there are already cards of that same type in the box.
preferably you install the cards after Solaris is installed, so that instances are correctly enumerated.
so i would ask: were there already e1000g interfaces in either of the 5240s already and was Solaris already installed?

Similar Messages

  • Looking for a nice fusebox example

    Looking for a nice fusebox example, which i can use as base
    for developing applications..
    Please post help.
    thanks a bunch.

    Adomacro wrote:
    > Looking for a nice fusebox example, which i can use as
    base for developing applications..
    >
    > Please post help.
    >
    > thanks a bunch.
    http://www.fusebox.org/

  • Looking for a trap parsing example

    Hello experts
    I want the MARS to analyze an SNMP trap from a custom device and I'm looking for an example for a trap message parsing. Would appreciate you help.
    TIA
    Iris

    Adomacro wrote:
    > Looking for a nice fusebox example, which i can use as
    base for developing applications..
    >
    > Please post help.
    >
    > thanks a bunch.
    http://www.fusebox.org/

  • Looking for a nice solution for different cases with nearly same operations

    Hi everybody:
    I'm looking for a nice solution for the following problem:
    I'm measuring different data at the same time (with different devices).
    I would like to save these data all in one array (or cluster?), but I
    don't know exactly the way to do this. All values have corresponding
    time values. So for one data type it would result in a 2d array,
    wouldn't it? But how can I save different data types with their time
    values in one array? Or should I take a cluster? And how can I get only
    a certain type of data out of this array or cluster again? E.g. if I
    only need data type "3" with its time stamps for evaluation? I would
    really appreciate an example, I work with LV 7. Thanks!
    Then - for evaluation - I only need one data type of these different
    data. Which one I would like to choose via the frontpanel (it changes
    from test to test). So, I thought of a case structure (where I can
    choose which data type and correspondingly which evaluation way). The
    evaluation steps for the different data types are quite the same, but
    can vary in order of execution. I could write for every case the
    (nearly) same evaluation steps, but this would take a lot of time, plus
    if I need to change one step I need to change it in every case.
    Does anybody know a better way?
    Thank you very much in advance,
    Steffi

    steffi.kono wrote:
    In this example I have four arrays, which I would like to save alltogether in one file. First column should consists of time stamps, second column of value type 1, third column of value type 2, ... How can I solve this?
    Built the 4 1D arrays into a 2D array, the use write to spreadsheet file.
    steffi.kono wrote:
    And, after that, how can I display only the second coulmn (e.g.) and time stamps in a waveform chart from this file? Or how can I say in LabVIEW: "display the last 30 values of column three over the time in a waveform chart"?
    There is "array subset", which allows you to get any desired subset from an array. If yoyu want entire rows or colums, use "index array".
    To display the last 30 values in a chart, just feed the data to a chart with the history size set to 30 elements. The rest will fall into place.
    LabVIEW Champion . Do more with less code and in less time .

  • Sequential Instantiation of BPEL instances for a BPEL process

    Hi,
    We are using Oracle SOA 10.1.3.4 & AIA2.5. We have a situation where the instances of a particular bpel process have to be executed in sequence. Also, the new instance should NOT be instantiated unless the previous instance is completed.
    For example.. Lets say a SyncBPELReqABCS is invoking SyncBPELProvABCS via ESB. SyncBPELReqABCS is looping and spawning multiple instances of SyncBPELProvABCS in a certain sequential order in Asynchronous Fire-and-Forget model. Lets say bpel-instance#1, bpel-instance#2 and bpel-instance#3 are instances of SyncBPELProvABCS process. Even though SyncBPELReqABCS invokes (spawns) SyncBPELProvABCS in a fire and forget model, the bpel-instance#2 should not begin unless bpel-instance#1 is completed and bpel-instance#3 shuld not begin unless bpel-instance#2 is completed. This is because there is a dependancy between instacnes of SyncBPELProvABCS process.
    Can this be achieved in Oracle SOA?? Can we restrict the instacnes of SyncBPELProvABCS to be created in this manner?
    This is similar to "incompatability" of concurrent programs in ORACLE EBusiness Suite where one concurrent program waits till another concurrent program completes.
    Please let me know if I am not clear. Appreciate an immediate help!
    Thanks,

    Hello,
    Now that I look back at this tread, I can see that the questions I was asking and those of the original poster were somewhat different.
    But they both fall under the heading of "Sequential Instantiation of BPEL instances for a BPEL process", and so I thought I would post some findings we've come across regarding that topic here.
    There were a couple steps that helped us achieve the behavior we were looking for, and the were...
    1) Change the BPEL oneWayDeliveryPolicy from "async.persist" to "sync"
    This can be done in a couple locations. The first is within the EM application that comes bundled with SOA 11g, and the place to go is:EM > [farm name] > SOA > soa-infra (right click) > SOA Administration > BPEL Properties > More BPEL Configuration Properties > OneWayDeliveryPolicyOnce that value has been changed to "sync" (without the quotes), you'll need to stop and start the managed servers that run your SOA instance(s).
    As you might expect, making a change at the "server level" like this impacts the default behavior of all composites deployed within your SOA instance. The second place to make this change - within the deployment descriptors for your BPEL process - impacts only the BPEL process that is being modified. To make the change at this level, you would edit your project's composite.xml file and, for each BPEL component, specify:  <component name="BPELProcess1" version="2.0">
        <implementation.bpel src="BPELProcess1.bpel"/>
        <property name="bpel.config.oneWayDeliveryPolicy">sync</property>
        <property name="bpel.config.transaction">required</property>
      </component>What does this change do? Well, I don't claim to have a complete understanding, but in theory it prevents a thread handoff from taking place between the service that is initiates your BPEL process (like a receive) and the actual BPEL engine thread that processes the request.
    In our case, where calls between (and within) composites were all of the synchronous "fire and forget" variety, this change also caused the entire processing of a message (across three different composites) to happen in a single thread (each message handoff was one-way, and with the oneWayDeliveryPolicy set to "sync", each was handled in a synchronous manner).
    This also seemed to have the effect of serializing our message processing. For example, in a test case where a BPEL process reads from a JMS queue and 250 messages are enqueued, with the oneWayDeliveryPolicy set to "async.persist", I'd typically go in to EM and, on each refresh, find 5-8 instances of the composite that processes those messages to be in a "Running" state. Once the change to "sync" was made, I'd only see at most only 2 (where one had actually already finished; the audit system just hadn't yet caught up to that fact yet).
    This also means that, with a "sync" delivery policy, messages (at least in our environment) are processed more slowly, but that was ok with us as we were more concerned with the behavior than the speed.
    For details on this and other BPEL deployment descriptor properties, see:
    http://download.oracle.com/docs/cd/E17904_01/integration.1111/e10224/bp_app_deploydesc.htm
    Also, it's important to note that making the above change will alter the boundaries of your transactions as well as how faults are propagated. For more details, see:
    http://download.oracle.com/docs/cd/E17904_01/integration.1111/e10224/soa_transactions.htm
    2) Front BPEL process with a Mediator object and enable message resequencing
    While we're using the above change as a standard practice in our environment, this second change has only been nominally tested - but it could be of interest and so I'll mention it here.
    Once you've updated your composite to include a mediator object in front of your BPEL process (if there isn't one there already), edit the .mplan for your mediator and change the "Resequence Level" from the default value of "operations" to "component". Then change the "Resequence Mode" from "off" to "FIFO" and specify an X-Path expression by which the mediator will be able to group your messages. This will help ensure that the messages are being processed in the order you expect.
    More information about resequencing within the mediator component can be found:
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10224/med_resequencer.htm
    Hopefully the above information is useful - if not for the original poster, then for someone who comes along later with similar questions.
    - Nathan

  • Field Control for Additional TAB in Customer Master

    Hi,
    Can anyboby please tell me that where is the field control for Additional Buttons example:"Custom Authorization Field" for customer master in ECC 6.
    As I can see only the General, Company, Sales field control in the Account Group.
    Thanks in advance.
    Best regards,
    Ipsit

    HI
    since this is an
    additional field, and is not contained in transaction OB20, it is not a
    field that can be controlled in conventional ways.
    My suggestion would be, to use SE51 (Screen Painter) to maintain the
    attributes for this field:
    se51
    Program         SAPLV02Z
    Screen number   0100
    Element List    Yes
    DISPLAY
    SELECT KNA1-KATR1   -   I/O
    CLICK on Attributes Button
    Here it is possible to set the input as requried.
    Regards,
    Ramana

  • Multiple component instances for one component usage

    Hi,all
    How can I create multiple component instances for one component usage.
    I'm using the following code for creating  a single component instance for specific component usage:
    if(c_Usage.hasActiveComponent())
          c_Usage.deleteComponent();
    if(wdContext.currentContextElement().getSelectedTab().equalsIgnoreCase("Registered"))
          c_Usage.createComponent("health.gov.registered.Registered";);
    I can't create one more component instance for
    IWDComponentUsage c_Usage
    cause I have to delete the component instance associated with this component usage.
    Any idea how can I do it anyway?
    Regards,
    Michael

    Hi,
    To create another instance of the same component you need to embed the same component under the Used Components more then once. For Example if you have Componet A to which you want to embed Component B then under "Used Components" of Component A add component B twice.

  • CORBA instance for OLAP Services?

    Hi All,
    I am new to OLAP, and I am trying to use OLAP API over a data warehouse I've created for test. I am developping on the following environement:
    - Windows 2000 Professional
    - OLAP API
    - Oracle 9.0.1
    I am having a javax.naming.NamingNotFoundException. It seems that the OLAP Instance Manager does not have the right permission to create the CORBA Instance in the JVM, as you can see in the following piece of log:
         [598] OLAPI Interface - Cannot bind to folder context OLAPServer, creating....
         [598] OLAPI Interface - CORBA::NO_PERMISSION.
         [598] OLAPI Interface - Cannot create folder context OLAPServer.
         [598] OES Kernel - Remote Operations Interface resolution failed.
    I've found a previous message in this forum that explain us how to create manually the /etc/OLAPServer instance to have access to OLAP Services through OLAP API, as shown here:
    sess_sh -u sys -p change_on_install -service sess_iiop://YOUR-HOSTNAME:2481:SID
         mkdir /etc/OLAPServer
         chmod +rwx PUBLIC /etc/OLAPServer
    I've done it and restarted the OLAP Instance. This time, the OLAP Instance Manager was able to create the CORBA Instance for OLAP Services, but in /etc/debugagent/OLAPServer (as seen in the OEM JVM), with the following URL for connecting to it through CORBA:
    sess_iiop://YOUR-HOSTNAME:2481:SID/etc/OLAPServer/OLAPServer.
    Does anyone know what is the problem? Is there a permission problem with the OLAP Instance Manager when it tries to create the CORBA instance in JVM?
    Thanks a lot,
    Mario

    Hi Anthony,
    First place, thank you for your help.
    I4ve already applied those patches and the users you specified in the previous mail are unlocked and already have rwx permission.
    I found really strange too when the /etc/OLAPServer instance was created under the debugagent context. I really don4t know what is going on?
    Do you know something about problems on OLAP Services when you are working with brazilian portuguese language? I am asking this because I know a lot of people that have applied those patches and everything worked just nice, the only difference between our platform and their is the language.
    Thanks again.
    Mario

  • Depreciation for additions to start from the following month

    Hi Gurus,
    Have situation in depreciation posting, When acquisition happens depreciation has to start from next period on wards (Dep not to post in Acq period) this is working fine and good. (period control maintained as 11 for Acq)
    In the same way it has to apply for Additions if any happens for existing Acquisitions. Period control set as next month 11 for additions, but system making the posting in acquisition period itself including catchup of previous periods from oredinary dep starting.
    I want make the system to start depreciating dep from the following period rather than acquisition period for Additions and catcup dep also post in this from Ordinary depreciation start date .
    Example of Issue:
    Acquisitions:
    Acquisition happend in Period-01, dep started from next period "02"
    This working fine.
    Addiotions:
    Using the above example
    Addition happend in period-05, Dep started from-05 including the catch up dep of periods; 02,03,04,05.
    By right the depreciation posting has to starts in the following Perios 06, has to consider Catchup amounts also.
    Any help on the above are appreciated most.
    Points are available
    Thanks in advance,
    Vyas

    Hi Milosavljevic,
    On the above system behaviour is right, but we have to understand like below:
    What ever posted the Depreciation amount in the acquissition month it belongs to accumilation depreciation of the addition of asset ( from ordinary dep start date to untill acquissition period).These happend bcoz of catchup, the real depreciation was started from the following month onwards..
    Hope this understanding made me clear...
    If u able to find any thing better pla keep share..
    Others plz comment on this for better understanding.
    Thanks,
    Vyas

  • Depreciation for additional acquisition

    Hello,
    I had the below requirement, Could you please help if anybody had any idea on this issue..
    If i purchased additional acquisition in 3 rd month (Use ful life of asset is 12 months)  say for ex: Asset Value is 2700/-
    From 3rd month onwards it should post 2700/9M=300 per month so that end of the month the asset value will be "zero"
    But as per my customizing it is calculating like this:
    If the asset value is 2700 which i purchased in 3rd month it is posting dep as 1 Month -200
                           2 Month-200
                           3 Month-200+900=1100
                           4 Month- 200+300=500(200 is normal value)
                           5 Month -200+300=500
    Here it is calculation 2700/12 month and equally distributing, i don't want to calculate for first 3 months,
    Hope there must be some control for additional acquisition, i have checked period control also, but still getting the same problem.
    Can anybody help on this, as it is very urgent for me..
    Many tx,
    Veena

    Hi,
    ok, I understand what you mean. With reference to my example, a subsequent acquisition:
    01.07.2008     300,00     100     External asset acquisition     EUR
    produced the following situation:
    4     300,00-     0,00     0,00     0,00     EUR
    5     300,00-     0,00     0,00     0,00     EUR
    6     300,00-     0,00     0,00     0,00     EUR
    7     433,33-     0,00     0,00     0,00     EUR
    8     333,34-     0,00     0,00     0,00     EUR
    9     333,33-     0,00     0,00     0,00     EUR
    10     333,33-     0,00     0,00     0,00     EUR
    11     333,34-     0,00     0,00     0,00     EUR
    12     333,33-     0,00     0,00     0,00     EUR
         3.000,00-     0,00     0,00     0,00     EUR
    As you explained, in my case, the system will catch up the depreciation for the periods 4 to 6 in period 7.
    This is the standard system behaviour, because once the depreciation start date is set, the subsequent acquisitions will take this depreciation start date as reference, and not the date of the subsequent acquistion, as you are assuming.
    Please read SAP note 46456, which explains this issue more in detail.
    The 'Calculate according to asset value date' indicator in the calculation key for the depreciation cannot be maintained as of maintenance level 3.0E. As SAP note 53166 describes this indicator frequently caused misunderstandings. And that is why this function has been "removed".
    But, you can still configure this behaviour with a modification, in table T090NP, field XBZDAT at your own risk. Please beware that with such a modification, there is no support in case of future incidences. In note  814004 you will find a short report which enables you to change the parameter.
    I hope this will help you.
    Sven

  • HTTP Status 500 - No action instance for path /deletescmeetnot could be cre

    Hello,
    I am maintaining a JSP/struts program already in production. The client asked us to add the ability a record when certain criteria are met. Since this is my first Struts work, I have been following the examples of other actions in the app. I easily added the link to the form (and it only displays if the conditions where you may delete if you choose are met). I made the action and added it to the struts-config file. This is the node:
    //struts-config.xml
        <action input="/subcommittees.jsp" path="/deletescmeetnot" type="com.xxyzz.abcdef.DeleteSubcommitteeMeetingNoticeAction">
          <forward name="success" path="/subcommittees.jsp" />
          <forward name="failure" path="/subcommittees.jsp" />
        </action>These are the first two lines of the action:
    //DeleteSubcommitteeMeetingNoticeAction.java
    public class DeleteSubcommitteeMeetingNoticeAction {
      public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException {This is where I attempt to execute the action:
    //SubcommitteeListTag.java
                        writer.print(" - <a title=\"Permanantly delete this Subcommittee meeting notice\" href=\"" +
                                response.encodeURL("/cf/deletescmeetnot.do?noticeID=" +
                                                      notice.getNoticeIdField().getAsString()) +
                                 "\" onClick=\"return confirmDeleteSubcommitteeMeetingNotice();\">Delete</a>");The javascript executes properly, but I get the error below when I click "OK."
    //Apache Tomcat/6.0.18 - Error report
    HTTP Status 500 - No action instance for path /deletescmeetnot could be created
    type Status report
    message No action instance for path /deletescmeetnot could be created
    description The server encountered an internal error (No action instance for path /deletescmeetnot could be created) that prevented it from fulfilling this request.Can anyone help me find what I am missing?
    Thank you,
    Frank Luke

    Found it. I needed to add "extends action" to the class.

  • How to create a instance for the method

    it is showing me dump error for the call method
    data: i_tab type /SCMB/DM_ORDER_TAB,
          grid1  TYPE REF TO /SCA/CL_SVORDER .
    CALL METHOD grid1->READ_BY_IDS
      EXPORTING
       IS_CTRL      =
        IV_ORTYPE    = gt_po_detl-ortype
       IV_LOCKFLG   = /SCMB/CL_C_ORDER=>GC_FALSE
       IV_NOADDRESS = /SCMB/CL_C_ORDER=>GC_FALSE
       IV_MAPID     = /SCMB/CL_C_ORDER=>GC_FALSE
       IV_DUEQUAN   = /SCMB/CL_C_ORDER=>GC_FALSE
        IT_ORDERID   = itab_orderid
      IMPORTING
        ET_ORDERS    = i_tab
       ET_PROT      =
    u r attempting to use a null object reference access a component (variable 'GRID!")
    an object reference must point to an object (an instance of  a class ) before it can be used to acess a component either the reference was never set or it was set to null using the clear statement

    sridhar loganathan,
    A ABAP Class is just a definition of fields/variables called attributes and routines (like in standard ABAP forms and functions) called methods. Also you can have events, don't care about before necessary.
    The definition itself is just a blueprint. Nothing exists, nothing can be used before you create an instance for this definition.
    DATA: grid1 TYPE REF TO /SCA/CL_SVORDER creates a 'handler' for ( to be created) instances of the class.
    The statement CREATE OBJECT grid1 creates an instance of the class as defined in the 'blueprint' and assigns the reference to this instance (with all methods, attributes and events) to reference field grid1.
    In 999 of 1000 cases SAP creates just one object of a class. In those cases the definition of classes and uses of object oriented programming is more or less obsolete.
    Anyway: Just keep in mind that you can not uses attributes and methods of the class directly (blueprint!) but only of the instance created.
    An Exception to be noted are so-called Static attributes and methods where an instance is not required. Example ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB gives the character for horizontal tab regardless of platform and char encoding (unicode!). Class ABAP_CHAR_UTILITIES defines static attribute HORIZONTAL_TAB - no instances necessary because this will never change in a given system.
    Hope this sheds some light on it
    Regards,
    Clemens

  • Get number of active instances for an orchestration using WMI

    I would like to get number of active, ready to run and dehydrated instances for an orchestration in my master orchestration. How can I do this using WMI?
    Thanks in advance!!

    I have done it recently...its quite simple...
    You can use System.Management in a helper library and create a helper method to implement this ->
    int instanceCount = 0;
    ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\MicrosoftBizTalkServer", "SELECT * FROM MSBTS_ServiceInstance WHERE ServiceName='<name of your orchestration>'");
    foreach (ManagementObject queryObj in searcher.Get())
    //Count for Active, Ready To Run and Dehydrated
    if (queryObj["ServiceStatus"].ToString() == "1" || queryObj["ServiceStatus"].ToString() == "2" | queryObj["ServiceStatus"].ToString() == "8")
    instanceCount = instanceCount + 1;
    return instanceCount;
    You can pass your orchestration name as a parameter to this method. Additionally you can modify the if conditions to include/exclude instance status.
    Make sure to verify the syntax before you use it!!

  • SOFM instance for attaching--urgent

    Hi ALl ,
    I need to trigger a workitem with PDF attachment . I have an internal table with data . I have to create the PDF file and send this as an attachement to workitem .
    Can any one let me how to attach the PDF file using SOFM
    Regards
    Abhilash

    Hi Abhilash,
    If you want to create an attachment in a workflow task you need to create a sofm instance for your PDF file.
    First, you need to create a method to get an SOFM instance for you PDF file.
    Example code:
    DATA: attach TYPE swc_object.
    DATA:it_objhex TYPE solix_tab.
    swc_container l_cont.
    DATA folder_id TYPE sofdk.
    DATA lt_objcont TYPE STANDARD TABLE OF soli.
    DATA ls_objcont TYPE soli.
    DATA l_obj_data TYPE sood1.
    DATA l_obj_id TYPE soodk.
    DATA document_id TYPE sofmk.
    DATA lt_objhead TYPE STANDARD TABLE OF soli.
    data wa_soli type soli.
    data wa_solix type solix.
    FIELD-SYMBOLS: <ptr_text> type soli,
    <ptr_x> type any,
    <ptr_hex> type solix.
    define hex_to_cont.
    &1 Table of structure SOLIX
    &2 Table of structure SOLI
    refresh &2.
    loop at &1 into wa_solix.
    clear wa_soli.
    assign wa_soli to <ptr_hex> casting.
    move wa_solix to <ptr_hex>.
    append wa_soli to &2.
    endloop.
    end-of-definition.
    CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET'
    EXPORTING
    region = 'B'
    IMPORTING
    folder_id = folder_id
    EXCEPTIONS
    OTHERS = 1.
    *get the PDF file into a table
    (CALL FUNCTION 'ZAP_GET_PDF'
    EXPORTING
    File name: ‘xxx’
    TABLES
    objhex = it_objhex
    EXCEPTIONS
    error_image = 1
    invalid_url = 2
    OTHERS = 3.)
    l_obj_data-objnam = 'SOFM'.
    l_obj_data-objdes = 'test'.
    l_obj_data-file_ext = 'PDF'.
    hex_to_cont IT_OBJHEX LT_OBJCONT.
    CALL FUNCTION 'SO_OBJECT_INSERT'
    EXPORTING
    folder_id = folder_id
    object_type = 'EXT' "'RAW'
    object_hd_change = l_obj_data
    IMPORTING
    object_id = l_obj_id
    TABLES
    objhead = lt_objhead
    objcont = LT_OBJCONT
    EXCEPTIONS
    active_user_not_exist = 35
    folder_not_exist = 6
    object_type_not_exist = 17
    owner_not_exist = 22
    parameter_error = 23
    OTHERS = 1000.
    COMMIT WORK.
    Data: tb_key(100).
    IF sy-subrc = 0.
    document_id-foltp = folder_id-foltp.
    document_id-folyr = folder_id-folyr.
    document_id-folno = folder_id-folno.
    document_id-doctp = l_obj_id-objtp.
    document_id-docyr = l_obj_id-objyr.
    document_id-docno = l_obj_id-objno.
    ELSE.
    ENDIF.
    Concatenate folder_id-foltp folder_id-folyr folder_id-folno
    into tb_key.
    swc_create_object attach 'SOFM' tb_key.
    SWC_SET_ELEMENT CONTAINER 'ZSOFM' attach.
    Second, call the method in the workflow in a background task (before sending the mail) and import the SOFM instance in to workflow then attach the SOFM object to the Attachment.
    I trust that the above details are to help your Problem.
    Thanks and Regards,
    Prabhakar Dharmala

  • Requesting for additional space/quota of workspace

    Hi,
    I need to request for additional space / quota for my workspace. Currently I am having only 10MB which I got when I registered for getting a workspace. Please help.
    Thanks
    Bhavesh

    Bhavesh,
    Navigate to Home>Administration>Manage Services>Request Storage and proceed, whether this pertains to apex.oracle.com or another hosted instance.
    Scott

Maybe you are looking for