MULTIPLE SESSIONS IN SINGLE FORM

HELLO ALL
HOW CAN I HAVE MULTIPLE SESSIONS IN A SINGLE FORM? MY REQUIRMENT
IS SUCH THAT I HAVE A CONTROL BLOCK WHICH IS MARKED AS UPDATED
WHEN USER PRESS COMMIT BUTTON, BUT I WANT TO ROLL IT BACK AND I
HAVE ISSUED SOME UPDATE COMMANDS MYSELF WHICH I WANT TO BE
COMMITED. ANYONE HAVE ANY IDEA?
THANKS IN ADVANCE

Give the submit button a name. It will be sent as well, so you can see it in the request variables.

Similar Messages

  • Restricting multiple sessions to single device

    Dear All
    How to control the number of concurrent sessions permitted for a single userid. Can Concurrent access authorization be varied by excluding userids or by restricting multiple sessions to single device?
    Any suggestion will be appreciated

    We are running an application made up of oracle 9i forms and reports using oracle application server and we need to restrict the limit of sessions per user so that a single session to single pc

  • Handling multiple submits in single form with JSP

    HI,
    I need to handle multiple submits in single form in a JSP.
    <html>
    <body>
    <form action="/Compute" method="post">
    <input type = "Submit" value="Find"/>
    <input type = "Submit" value="Add"/>
    <input type = "Submit" value="Delete"/>
    </form>
    <body>
    <html>
    /Compute wld take the control to a servlet named ComputeController.java .
    In this servlet how should I distinguish which Submit has been clicked(Find or add or Delete).
    TIA

    Give the submit button a name. It will be sent as well, so you can see it in the request variables.

  • Multiple submit on single form

    hi all,
    My current system have 1 submit button with single form. This submit button will call file_content.upload.
    htp.p('function on_submit() {');
    htp.p('     ...the rest of my code here..');
    htp.p('     document.forms[0].submit();');
    htp.p('     return true;');
    htp.p('}');
    htp.p('<form enctype="multipart/form-data" method="post" action="file_content.upload">');
    htp.p('     ...the rest of my code here..');
    htp.p('<input type="button" id="btn_Submit" value="Submit" onclick="on_submit()"></form>');My question is, i want to enhance this by adding additional 1 submit button with value "Save". But this new "Save" button will call/trigger different file. This new button will call file_content.update. How to accomplish this and how to differentiate these 2 button?
    htp.p('<input type="button" id="btn_Submit" value="Submit" onclick="on_submit()"> 
              <input type="button" id="btn_Save" value="Save"></form>');Appreciate any help from you guys. Thanks
    Edited by: morezack on Jul 21, 2011 2:08 PM

    You again did accident like one below
    multiple submit button on a single form
    Take care..
    Regards,

  • Multiple Input ports - Single Form

    Hi,
    I have a RFC which has multiple input ports. How do i use a single form to provide data to all the input ports.
    Regards
    Bharathwaj

    Hi,
    you can create the single form direct, if you pull a line out of the RFC, then the form must be created with the fields. If not, then you have to create it manually and map the fields with the input port.
    Best Regards,
    Marcel

  • Multiple users of single forms

    Hi,
    I have a situation whereby I'd like to be able to have multiple users haveing input to a single form. This is to establish a type of jobcard system.
    e.g.
    A form is distributed out to a number of people, they complete a certain section, the forms are then submitted ie returned to the distributor, from here they can be forwarded onto someone else who will compete aditional information onto the form and again submit it.
    The coordinator can then review the form data and then forward or save the forms off.
    This is likely to be from a PC to PC in the first instance and PC to tablet in the second, ideally with the ability to add photographs.
    Many Thanks

    Hi,
      WIth FormsCentral, you can share a single form with multiple users as Co-Authors. Your shared user will have right to edit/modify/save the form at anytime.
    Now, your shared users will need to create (free or paid) accounts in FormsCentral to be able to collaborate on the form.
    Please take a look a this FormsCentral tutorial, Share and collaborate section: http://forums.adobe.com/docs/DOC-1413
    Thanks,
    Lucia

  • Insert Multiple records in single form

    Hi all,
    I have already come across inserting multiple rows into a table using ADF BC. The solution to this is in the following thread
    Re: How to create multiple new rows in ADF Table?
    However,
    The above solution is useful when we want to enter new values along with all the table entries getting displayed.
    What can I do If I dont want all the table values but just an 'AddEntries' page where I can only add new rows without having the entries in table getting displayed.
    Like,
    Say, a form has 5 rows
    Each row has empId, eMailSlNo ,eMail attributes
    EmpId is same for all 5 records but emailId is different.
    EmpId and eMailSlNo make the PK.
    empId generated using sequence.
    Now on submitting the form, I want all five records to be inserted.
    (can i use ADF form instead of ADF table for the ViewObject in this case. I tried ADF form but i could only insert 1 record at a time).
    I'm using 10.1.3.4
    Please help.
    Thanks in advance,
    Shri
    Edited by: newtoOTN on Dec 29, 2009 6:02 PM

    Hi Shri,
    ADF Form is meant for single insert/update. For multiple insert/update/delete using collection UI like table is preferred. I guess that either your db table or the UI table design has flaw (In my opinion but i don't know your usecase fully, so my guess might b wrong).
    I would suggest,
    - make EmpId as PK
    - have another table to store EmpId(foreign key),emailSiNo, email
    - Have master-detail relationship between both the db tables in ADF BC.
    - Create master-detail table UI and on selection of master, display detail and if no records found add records and commit.
    check these examples:
    http://www.oracle.com/technology/products/jdev/tips/mills/MasterDetailSync/Master_Detail_Synchronization_in_ADF_Faces.html
    http://andrejusb.blogspot.com/2007/06/create-edit-and-delete-operations-in.html
    Hope this makes sense.
    ~K

  • Updating multiple records from single form (ASP)

    I have a nested repeat region.
    I have created in the parent, a form with 3 fields and an update button.
    the child records all have multiple columns, 3 of which correspond to the parent.
    Athe parent is bound to the child records by the shipmentID
    I need to be able to update all child records from the form in the parent.
    The case is this.
    The child records are orders with shipdates and frequencies
    The parent contains a form with fields for shipdate and frequency
    The administrator needs to change the shipdate and/or frequency for all child records.
    (The child records are forms as well--but that's another issue that works fine)
    Shipment ID
    Date Field
    Freq Field
    UPDATE Button
    ShipmentID
    Record 1
    Data case1
    Date
    ShipmentID
    Record 2
    Data case 2
    Date
    I am doing this in classic asp with an SQL database.
    So how do I get the form to update all record
    [Subject title edited by moderator to make clear ASP involved]

    Hi,
    This is one of those questions that would require far more explanation that is reasonable to expect in a forum. You should do a little poking around in the nearest Barnes & Nobles. About a half hour in a chare with a good ASP book and vanilla latte should have you on the right track.
    Lawrence   *Adobe Community Expert*
    www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF

  • Multiple sessions in a single database connection.

    I have copied the following text from Forms Developer2000
    "At runtime, Form Builder automatically establishes and manages a single connection to ORACLE. By default, one user session is created for this connection. However, the multiple-sessioning feature of ORACLE allows a single client to establish multiple sessions within a single connection. ORACLE transaction-management and read-consistency features all are implemented at the session level, so creating multiple sessions allows a single user to have multiple, independent transactions."
    If ORACLE allows a single client to establish multiple sessions within a single connection, I want to leverage on this feature in my application which uses BC4J.
    Can anybody tell me if
    1. its possible achieve this in Java(BC4J).
    2. If Yes, How?
    regards,
    vikrant

    Thank you for your valuable suggestion.
    I believe createing multiple root Application
    Modules, will create as many number of connections to
    database, hence multiple transactions.
    But What I wanted was multiple sessions in a single
    connection, who's behavior will be similar to two
    different connections.Could you tell me the advantage you're looking for in multiple sessions in one connection vs. multiple connections (where connections may be pooled)?
    Thanks.
    Sung

  • Multiple DataBase Connection in a Single Form

    hi all
    Is it Possible to have Multiple Database Connection With a Single Form
    Block a : Retriving data from a database Service a/Schema A.
    Block b : Retriving data from a Remote Database Service b / Schema B.
    If yes how to do this.
    regards
    jai
    email:[email protected]

    Sure you can access a database this way,
    but can you base a block on this database connect? No you can't.
    Frank

  • How do I insert multiple rows from a single form ...

    How do I insert multiple rows from a single form?
    This form is organised by a table. (just as in an excel format)
    I have 20 items on a form each row item has five field
    +++++++++++ FORM AREA+++++++++++++++++++++++++++++++++++++++++++++++++++++
    +Product| qty In | Qty Out | Balance | Date +
    +------------------------------------------------------------------------+
    +Item1 | textbox1 | textbox2 | textbox3 | date +
    + |value = $qty_in1|value= &qty_out1|value=$balance1|value=$date1 +
    +------------------------------------------------------------------------+
    +Item 2 | textbox1 | textbox2 | textbox4 | date +
    + |value = $qty_in2|value= $qty_out1|value=$balance2|value=$date2 +
    +------------------------------------------------------------------------+
    + Item3 | textbox1 | textbox2 | textbox3 | date +
    +------------------------------------------------------------------------+
    + contd | | | +
    +------------------------------------------------------------------------+
    + item20| | | | +
    +------------------------------------------------------------------------+
    + + + SUBMIT + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Database Structure
    +++++++++++++++++
    + Stock_tabe +
    +---------------+
    + refid +
    +---------------+
    + item +
    +---------------+
    + Qty In +
    +---------------+
    + Qty Out +
    +---------------+
    + Balance +
    +---------------+
    + Date +
    +++++++++++++++++
    Let's say for example user have to the use the form to enter all 10 items or few like 5 on their stock form into 4 different textbox field each lines of your form, however these items go into a "Stock_table" under Single insert transaction query when submit button is pressed.
    Please anyone help me out, on how to get this concept started.

    Hello,
    I have a way to do this, but it would take some hand coding on your part. If you feel comfortable hand writing php code and doing manual database calls, specificaly database INSERT calls you should be fine.
    Create a custom form using the ADDT Custom Form Wizard that has all the rows and fields you need. This may take a bit if you are adding the ability for up to 20 rows, as per your diagram of the form area. The nice thing about using ADDT to create the form is that you can setup the form validation at the same time. Leave the last step in the Custom Form Wizard blank. You can add a custom database call here, but I would leave it blank.
    Next, under ADDT's Forms Server Behaviors, select Custom Trigger. At the Basic tab, you enter your custom php code that will be executed. Here you are going to want to put your code that will check if a value has been entered in the form and then do a database INSERT operation on the Stock_table with that row. The advanced tab lets you set the order of operations and the name of the Custom Trigger. By default, it is set to AFTER. This means that the Custom Trigger will get executed AFTER the form data is processed by the Custom Form Transaction.
    I usually just enter TEST into the "Basic" tab of the Custom Trigger. Then set my order of operations in the "Advanced" tab and close the Custom Trigger. Then I go to the code view for that page in Dreamweaver and find the Custom Trigger function and edit the code manually. It's much easier this way because the Custom Trigger wizard does not show you formatting on the code, and you don't have to keep opening the Wizard to edit and test your code.
    Your going to have to have the Custom Trigger fuction do a test on the submitted form data. If data is present, then INSERT into database. Here's a basic example of what you need to do:
    In your code view, the Custom Trigger will look something like this:
    function Trigger_Custom(&$tNG) {
    if($tNG->getColumnValue("Item_1")) {
    $item1 = $tNG->getColumnValue("Item_1");
    $textbox1_1 = $tNG->getColumnValue("Textbox_1");
    $textbox1_2 = $tNG->getColumnValue("Textbox_2");
    $textbox1_3 = $tNG->getColumnValue("Textbox_3");
    $date1 = $tNG->getColumnValue("Textbox_3");
    $queryAdd = "INSERT INTO Stock_table
    (item, Qty_In, Qty_Out, Balance, Date) VALUES($item1, $textbox1_1, $textbox1_2, $textbox1_3, $date1)"
    $result = mysql_query($queryAdd) or die(mysql_error());
    This code checks to see if the form input field named Item_1 is set. If so, then get the rest of the values for the first item and insert them into the database. You would need to do this for each row in your form. So the if you let the customer add 20 rows, you would need to check 20 times to see if the data is there or write the code so that it stops once it encounters an empty Item field. To exit a Custom Trigger, you can return NULL; and it will jump out of the function. You can also throw custom error message out of triggers, but this post is already way to long to get into that.
    $tNG->getColumnValue("Item_1") is used to retrieve the value that was set by the form input field named Item_1. This field is named by the Custom Form Wizard when you create your form. You can see what all the input filed names are by looking in the code view for something like:
    // Add columns
    $customTransaction->addColumn("Item_1", "STRING_TYPE", "POST", "Item_1");
    There will be one for each field you created with the Custom Form Wizard.
    Unfortunately, I don't have an easy way to do what you need. Maybe there is a way, but since none of the experts have responded, I thought I would point you in a direction. You should read all you can about Custom Triggers in the ADDT documentation/help pdf to give you more detailed information about how Custom Triggers work.
    Hope this helps.
    Shane

  • 10G-form: How to do MULTIPLE WORD OR SINGLE WORD SEARCH at ITEM?

    I am using 10G DB + 10G Form Builder.
    I've 'database_item' where I am storing multiline text data.
    I want to do MULTIPLE WORD OR SINGLE WORD SEARCH at this item through FORM.
    I've tried by creating the following NON Database Items on the form:
    - multiline_search_text_item, and
    - multiline_result__text_item
    And then writing execute_query in KEY-NEXT-ITEM trigger.
    I've also tried using this in the POST-TEXT-ITEM at multiline_search_text_item:
    select table.database_item into :multiline_result__text_item from table where multiline_search_text_item = :multiline_search_text_item;
    Pl help me asap.
    Gaurav

    What you want to do is not clear.
    The query you wrote will select records where the table contains exactly what has been written in the search item. You can use LIKE and a wildcard search to find records which contain the search text:
    select table.database_item into :multiline_result__text_item
    from table
    where multiline_search_text_item LIKE '%'||:multiline_search_text_item||'%';
    You can use UPPER to make this case insensitive:
    select table.database_item into :multiline_result__text_item
    from table
    where Upper(multiline_search_text_item) LIKE Upper('%'||:multiline_search_text_item||'%');
    But I suspect you want either to match the individual words in the search text to individual words in the database multiline field, or find records where the search words appear (not necessarily as whole words). In that case, check out the following:
    -- set up a table (multiline and various whitespaces)
    DROP TABLE t;
    CREATE TABLE t AS
    SELECT
      ROWNUM rn,
      owner||Chr(9)||object_name||Chr(160)||subobject_name||'    '||object_id||' '||
      data_object_id||Chr(10)||object_type||' '||created||' '||last_ddl_time||' '||
      timestamp||' '||status||' '||temporary||' '||generated||' '||secondary AS col
    FROM all_objects;
    -- check the format of the multiline text item (col)
    SELECT * FROM t WHERE ROWNUM < 4;
    -- a type for the function below
    CREATE TYPE string_tab AS TABLE OF VARCHAR2(255);
    -- this function takes a string and cuts out each word, idetifying words
    -- as being separated by any whitespace.  it returns a collection
    CREATE OR REPLACE FUNCTION string_to_tab(
      p_string IN VARCHAR2) RETURN string_tab IS
      l_string LONG DEFAULT
        RTrim(regexp_replace(p_string,'[[:space:]]+',' ')) || ' ';
      l_data string_tab := string_tab();
      n NUMBER;
    BEGIN
      LOOP
        EXIT WHEN l_string IS NULL;
        n := InStr(l_string, ' ');
        l_data.extend;
        l_data(l_data.Count) := LTrim(RTrim(SubStr(l_string, 1, n - 1)));
        l_string := SubStr(l_string, n + 1);
      END LOOP;
      RETURN l_data;
    END string_to_tab;
    -- selecting from t where ANY of the words in the search text has
    -- a match in the multiline field (as a word or part of a word), so SYS
    -- matches to MDSYS and SYSTEM
    SELECT DISTINCT
      t.rn, t.col
    FROM
      t,
      (SELECT column_value
       FROM TABLE(CAST(string_to_tab('SYS   INDEX') AS string_tab))) x
    WHERE InStr(t.col,x.column_value) > 0;
    -- selecting from t where ALL of the words in the search text has
    -- a match in the multiline field (as a word or part of a word), so SYS
    -- matches to MDSYS and SYSTEM
    SELECT rn, col FROM(
    SELECT
      t.rn, t.col, cnt_x, Count(*) cnt
    FROM
      t,
      (SELECT column_value , Count(1) over(PARTITION BY 1)cnt_x
       FROM TABLE(CAST(string_to_tab('SYS   INDEX') AS string_tab))) x
    WHERE InStr(t.col,x.column_value) > 0
    GROUP BY t.rn, t.col, cnt_x
    WHERE cnt = cnt_x;
    -- selecting from t where ANY of the words in the search text
    -- match a word in the multiline field, so SYS matches only to SYS
    SELECT DISTINCT
      t.rn, t.col
    FROM
      t,
      (TABLE(CAST(string_to_tab(t.col) AS string_tab))) t2,
      (SELECT column_value
       FROM TABLE(CAST(string_to_tab('SYS   INDEX') AS string_tab))) x
    WHERE t2.column_value = x.column_value;
    -- selecting from t where ALL of the words in the search text
    -- match a word in the multiline field, so SYS matches only to SYS
    SELECT rn, col FROM(
    SELECT
      t.rn, t.col, cnt_x, Count(*) cnt
    FROM
      t,
      (TABLE(CAST(string_to_tab(t.col) AS string_tab))) t2,
      (SELECT column_value , Count(1) over(PARTITION BY 1)cnt_x
       FROM TABLE(CAST(string_to_tab('SYS   INDEX') AS string_tab))) x
    WHERE t2.column_value = x.column_value
    GROUP BY t.rn, t.col, cnt_x
    WHERE cnt = cnt_x;For your application you would replace 'SYS INDEX' with a variable (the search field). You can use upper() and wildcards for case insensitive & 'fuzzy' searches. You might need to modify the function so it removes other delimiters such as commas and colons.

  • 802.1x multiple sessions with same LOGIN+MAC on single-host port

    We have 802.1x with radius server.
    c2960 configured to allow only one device per port with no Mac-Bypass and no critical auth.
    From time to time user seems to get multiple authentications on single port with single mac-address.
    So we get several sessions on port with the same login, mac (but different session-id).
    Command "dot1x re-auth int" doesn't clear those sessions. Neither do "force-unauthorized" or "shut/noshut". Only thing that helps is reboot switch.
    Happens with different users.
    Anybody seen this issue?
    IOS 12.2(46)SE

    Sure. Tried to make it short.
    Config for 802.1x-aaa:
    aaa new-model
    aaa group server radius default
      server X.X.X.X auth-port 12345 acct-port 12346
    aaa authentication login default group radius enable
    aaa authentication dot1x default group radius
    aaa authorization exec default group radius if-authenticated
    aaa authorization network default local group radius
    aaa authorization reverse-access default group radius
    aaa accounting suppress null-username
    aaa accounting update periodic 1
    aaa accounting dot1x default start-stop group radius
    aaa accounting exec default start-stop group radius
    aaa accounting network default start-stop group radius
    aaa accounting system default start-stop group radius
    aaa session-id common
    dot1x system-auth-control
    interface FastEthernet0/48
    switchport access vlan 1398
    switchport mode access
    dot1x pae authenticator
    dot1x port-control auto
    dot1x violation-mode shutdown
    spanning-tree portfast
    spanning-tree link-type point-to-point
    radius-server attribute 44 include-in-access-req
    radius-server attribute 44 extend-with-addr
    radius-server attribute 188 format non-standard
    radius-server attribute 218 mandatory
    radius-server attribute 32 include-in-accounting-req format %i %h %d
    radius-server attribute 55 include-in-acct-req
    radius-server attribute list att
    attribute 30-31,44
    radius-server host X.X.X.X auth-port 12345 acct-port 12346 key keykeykey
    radius-server vsa send accounting
    sh dot1x int fa 0/48 det
    Dot1x Info for FastEthernet0/48
    PAE                       = AUTHENTICATOR
    PortControl               = AUTO
    ControlDirection          = Both
    HostMode                  = SINGLE_HOST
    Violation Mode            = SHUTDOWN
    ReAuthentication          = Disabled
    QuietPeriod               = 60
    ServerTimeout             = 0
    SuppTimeout               = 30
    ReAuthPeriod              = 3600 (Locally configured)
    ReAuthMax                 = 2
    MaxReq                    = 2
    TxPeriod                  = 30
    RateLimitPeriod           = 0
    Dot1x Authenticator Client List Empty
    Port Status               = UNAUTHORIZED
    And right now, while port is UNAUTHORIZED we have 2 sessions as follows:
    sh aaa user all
    Unique id 34974 is currently in use.
    Accounting:
      log=0x208241
      Events recorded :
        CALL START
        ATTR REPLACE
        NET UP
        INTERIM START
        VPDN NET UP
      update method(s) :
        PERIODIC
      update interval = 60
      Outstanding Stop Records : 0
      Dynamic attribute list:
        0244DC34 0 00000001 connect-progress(44) 4 Auth Open
        0244DC48 0 00000001 pre-session-time(272) 4 0(0)
        0244DC5C 0 00000001 elapsed_time(339) 4 4828941(49AF0D)
        0244DC70 0 00000001 input-giga-words(111) 4 2(2)
        0244DC84 0 00000001 output-giga-words(250) 4 8(8)
        024A8C10 0 00000001 bytes_in(112) 4 119041621(7186E55)
        024A8C24 0 00000001 bytes_out(252) 4 3588031221(D5DD02F5)
        024A8C38 0 00000001 pre-bytes-in(268) 4 7373(1CCD)
        024A8C4C 0 00000001 pre-bytes-out(269) 4 8204(200C)
        024A8C60 0 00000001 paks_in(113) 4 45940138(2BCFDAA)
        024A8CB0 0 00000001 paks_out(253) 4 46979788(2CCDACC)
        024A8CC4 0 00000001 pre-paks-in(270) 4 68(44)
        024A8CD8 0 00000001 pre-paks-out(271) 4 61(3D)
      No data for type EXEC
      No data for type CONN
      NET: Username=(n/a)
        Session Id=000088AD Unique Id=0000889E
        Start Sent=0 Stop Only=N
        stop_has_been_sent=N
        Method List=0
        Attribute list:
          024CAA00 0 00000001 session-id(336) 4 34989(88AD)
          024CAA14 0 00000001 start_time(342) 4 Jan 23 2012 16:22:08
      No data for type CMD
      No data for type SYSTEM
      No data for type RM CALL
      No data for type RM VPDN
      No data for type AUTH PROXY
      8: Username=157102
        Session Id=000088AD Unique Id=0000889E
        Start Sent=1 Stop Only=N
        stop_has_been_sent=N
        Method List=226B3E4 : Name = default
        Attribute list:
          0244DB94 0 00000001 session-id(336) 4 34989(88AD)
          0244DBA8 0 00000001 start_time(342) 4 Jan 23 2012 16:22:08
          0244DBBC 0 00000009 audit-session-id(599) 24 0AC5010200001C45A5C67429
      No data for type IPSEC-TUNNEL
      No data for type RESOURCE
      No data for type 11
      No data for type 12
      No data for type CALL
      No data for type VPDN-TUNNEL
      No data for type VPDN-TUNNEL-LINK
    Debg: No data available
    Radi: 2032FD8
    Interface:
      TTY Num = -1
      Stop Received = 0
      Byte/Packet Counts till Call Start:
        Start Bytes In = 993512241     Start Bytes Out = 3867828098
        Start Paks  In = 23586320      Start Paks  Out = 28511581
      Byte/Packet Counts till Service Up:
        Pre Bytes In = 993519614     Pre Bytes Out = 3867836302
        Pre Paks  In = 23586388      Pre Paks  Out = 28511642
      Cumulative Byte/Packet Counts :
        Bytes In = 1112561235    Bytes Out = 3160900227
        Paks  In = 69526526      Paks  Out = 75491430
      StartTime = 16:22:08 GMT+5 Jan 23 2012
      AuthenTime = 16:22:08 GMT+5 Jan 23 2012
      Component = DOT1X
    Authen: service=8021X type=EAP method=RADIUS
    Kerb: No data available
    Meth: No data available
    PreA: No data available
    General:
      Unique Id = 0000889E
      Session Id = 000088AD
      Attribute List:
        024A8C10 0 00000001 port-type(174) 4 Ethernet
        024A8C24 0 00000009 interface(170) 16 FastEthernet0/48
        024A8C38 0 00000009 dnis(50) 17 00-18-B9-F5-5B-30
        024A8C4C 0 00000009 clid(37) 17 48-5B-39-EA-26-7C
    PerU: No data available
    Unique id 34976 is currently in use.
    Accounting:
      log=0x10000208241
      Events recorded :
        CALL START
        ATTR REPLACE
        NET UP
        INTERIM START
        VPDN NET UP
        SESSION INFO
      update method(s) :
        PERIODIC
      update interval = 60
      Outstanding Stop Records : 0
      Dynamic attribute list:
        024CAA00 0 00000001 connect-progress(44) 4 Auth Open
        024CAA14 0 00000001 pre-session-time(272) 4 2(2)
        024CAA28 0 00000001 elapsed_time(339) 4 4828961(49AF21)
        024CAA3C 0 00000001 input-giga-words(111) 4 2(2)
        024CAA50 0 00000001 output-giga-words(250) 4 8(8)
        024CAAA0 0 00000001 bytes_in(112) 4 119021816(71820F8)
        024CAAB4 0 00000001 bytes_out(252) 4 3588011179(D5DCB4AB)
        024CAAC8 0 00000001 pre-bytes-in(268) 4 6219(184B)
        024CAADC 0 00000001 pre-bytes-out(269) 4 7005(1B5D)
        024CAAF0 0 00000001 paks_in(113) 4 45939933(2BCFCDD)
        0244DB94 0 00000001 paks_out(253) 4 46979618(2CCDA22)
        0244DBA8 0 00000001 pre-paks-in(270) 4 59(3B)
        0244DBBC 0 00000001 pre-paks-out(271) 4 51(33)
      No data for type EXEC
      No data for type CONN
      NET: Username=(n/a)
        Session Id=000088AF Unique Id=000088A0
        Start Sent=0 Stop Only=N
        stop_has_been_sent=N
        Method List=0
        Attribute list:
          024A8C10 0 00000001 session-id(336) 4 34991(88AF)
          024A8C24 0 00000001 start_time(342) 4 Jan 23 2012 16:22:18
      No data for type CMD
      No data for type SYSTEM
      No data for type RM CALL
      No data for type RM VPDN
      No data for type AUTH PROXY
      8: Username=157102
        Session Id=000088AF Unique Id=000088A0
        Start Sent=1 Stop Only=N
        stop_has_been_sent=N
        Method List=226B3E4 : Name = default
        Attribute list:
          024CAA00 0 00000001 session-id(336) 4 34991(88AF)
          024CAA14 0 00000001 start_time(342) 4 Jan 23 2012 16:22:18
          024CAA28 0 00000009 audit-session-id(599) 24 0AC5010200001C49A5C6990F
      No data for type IPSEC-TUNNEL
      No data for type RESOURCE
      No data for type 11
      No data for type 12
      No data for type CALL
      No data for type VPDN-TUNNEL
      No data for type VPDN-TUNNEL-LINK
    Debg: No data available
    Radi: 2032F58
    Interface:
      TTY Num = -1
      Stop Received = 0
      Byte/Packet Counts till Call Start:
        Start Bytes In = 993533200     Start Bytes Out = 3867849339
        Start Paks  In = 23586534      Start Paks  Out = 28511761
      Byte/Packet Counts till Service Up:
        Pre Bytes In = 993539419     Pre Bytes Out = 3867856344
        Pre Paks  In = 23586593      Pre Paks  Out = 28511812
      Cumulative Byte/Packet Counts :
        Bytes In = 1112561235    Bytes Out = 3160900227
        Paks  In = 69526526      Paks  Out = 75491430
      StartTime = 16:22:18 GMT+5 Jan 23 2012
      AuthenTime = 16:22:19 GMT+5 Jan 23 2012
      Component = DOT1X
    Authen: service=8021X type=EAP method=RADIUS
    Kerb: No data available
    Meth: No data available
    PreA: No data available
    General:
      Unique Id = 000088A0
      Session Id = 000088AF
      Attribute List:
        0244DB94 0 00000001 port-type(174) 4 Ethernet
        0244DBA8 0 00000009 interface(170) 16 FastEthernet0/48
        0244DBBC 0 00000009 dnis(50) 17 00-18-B9-F5-5B-30
        0244DBD0 0 00000009 clid(37) 17 48-5B-39-EA-26-7C
    PerU: No data available
    PS. Have no command "show authentication"

  • Regarding Print of Single Form for multiple Transfer Order  ( LT03 )

    Hi All,
    When user creates Transfer Order and if transfer order items are more than 22 then split of Transfer Order occurrs and multiple TO's get created in system.  The standard prog. RLVSDR40 prints form for each TO's , however the requirment is to print only one form for multiple TO ( Actually TO Form containes info. abt delivery, but triggering point should be from TO creation ) .
    There is one prog. RLKOMM40 which is used for multiple processing,  whether this prog. will be useful for above requirement.  Or is there any exit available for above requirement .
    Thanks for help.

    Hi,
      is there any routines used in Copy controls from order - delivery .- re-check once.
    as your post, everything seems fine. I didnt see any reason for not creating single delivery.
    is it happening only with this customer or respective ship to's? if yes, something gone wrong in CMR - i.e. complete delivery / order combination etcc., ( just an assumption)
    Regards,
    ReazuddinMD

  • HCM Processes and Forms : Using single Form Scenario for Multiple Countries

    Hi ,
    I have a requirement to design a HCM P&F form ( Single Process, Single Form Scenario ) to support multiple countries.  Form fields should be visible/invisible based on the country ( derived from the login Manager).  please help me with the following questions.
    1. Is it right way to enable/disable the fields in the same form scenario for multiple countries ( Approx. 20-25 countries)
    2. Is there any limitation to no. of fields on the form? does the form performs well with multiple dynamic conditions?
    3. If yes, what is the best way to do this? through Java Script / Back end Generic Service?
    Thanks in Advance,
    VR.

    Hi VR,
    1. Is it right way to enable/disable the fields in the same form scenario for multiple countries ( Approx. 20-25 countries)
    -You can use same form scenario or process for multiple countries if you are using fields based on international structure HCMT_BSP_PA_XX_R*. If you intend to use country specific fields then you may like to use different form scenario for different countries.
    2. Is there any limitation to no. of fields on the form? does the form performs well with multiple dynamic conditions?
    - As such there is no limiation for the fields.Yes, form performs well with multiple rule configurations.
    3. If yes, what is the best way to do this? through Java Script / Back end Generic Service?
    I interpret you would like to derive & show fields based on same backend logic, in that case you should generic service.
    If you want to show fields based on manager's logon then you should also use authorization BAdi.
    Regards
    Pooja

Maybe you are looking for

  • Can't restore iPad from icloud

    I Had the "unable to download item" issue after updating iOS recently. Forums suggested that I shoud restore the iPad 2 via iTunes and then restore content from backup. So I held down the two buttons while connecting the iPad to the computer and the

  • When I reboot my iMac I'll get hard disk selection instead of fast login and I am not using boot camp! Any help is greatly appriciated!

    When I reboot my iMac I'll get hard disk selection instead of fast login and I am not using boot camp! Any help is greatly appriciated!

  • Uploaded Images-Shortcut Error

    I was trying to move some videos and images I had uploaded from a camera a while back onto a different user on the computer and accidently moved them to the desktop.  Now all the images and videos are shortcuts that do not have a location and I no lo

  • File synchronization problem

    I have a file "C:/test.txt" that app1 is reading (which takes a long time lets say) At the same time app2 has an updated version of "C:/test.txt" so it creates "C:/test.txt.tmp" and writes it to that file, then it renames "C:/test.txt.tmp" to "C:/tes

  • Cleaned out email a week ago. iCloud says mail is still full?

    My iCloud Mail was out of space (I accidently was forwarding another account to it and it went way over). I deleted and emptied the mailbox last week. iCloud usage screen on iphone and in control panel still says I'm out of space and that the mail is