Fetching audit information from OSB

Hi All,
I want to fetch the following from OSB and publish them to BAM:
1. Starting Time and End Time / Response time.
2. Instance ID
Please let me know the activities I need to perform.
Thanks
NG.

Hey Suryakant,
Here's the dev source for EWS http://msdn.microsoft.com/en-us/library/office/dd877012(v=exchg.150).aspx
When you get to it you'll have to use the EWS type folder class. Here's more info
http://msdn.microsoft.com/en-us/library/office/dn535505(v=exchg.150).aspx
Let me know if this works.

Similar Messages

  • How can we fetch the information from standard ItemDetails iView of SAP MDM

    Hi Portal/MDM experts,
    Is there any chance to fetch the information from standard ItemDetails iView? if it is possible please tell me the process.
    If it's not, how can we customize the ItemDetails iView using java WebDynpro .
    my requirement is, I have to fetch some of information from itemdetails iview and it'll be used in other WebDynpro  application, means we have fetch some details from itemdetails iview and populate them in another application. Please suggest me the procedure to do this.
    Regards,
    Mahi.

    Hi Mahi,
    Please follow the below steps:
    1. Create the Result Set iView.
    2. Select the Custom Events button and Add the Custom Event
    3. Select Event Type=EPCF
    4. Give Event Name=EpfcTest and Namespace=urn:com.sap.tc.webdynpro.mdm.epfc.test
    5. Select the desired fields to be passed to the WebDynpro application and give the parameter name.
    6. Save the iView
    7. Create WebDynpro application and write the below code.
    public void wdDoInit()
        //@@begin wdDoInit()
    namespace = "urn:com.sap.tc.webdynpro.mdm.epfc.test";
    eventname = "EpfcTest";
    WDPortalEventing.subscribe (namespace,eventname,wdThis.wdGetCatchValueAction());
        //@@end
    public void onActionCatchValue(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String dataObject )
        //@@begin onActionCatchValue(ServerEvent)
    int marked=dataObject.indexOf("=");
    String value=dataObject.substring(marked+1);
    wdContext.currentContextElement().setCatchedValue(value);
        //@@end
    variable Data Object will contain all the Mapped fileds separated by ;. You can then use the String functions to separate the parameters.
    Regards,
    Jitesh Talreja

  • Fetching Audit log from sm20 tr-cd

    Dear guys,
    I am asking this question from quiet long time..
    but no body replies with enough information....could somebody plz tell me,is this something vague job to do or my explanation is insufficient.?
    i debugged the code at SM20 program too..but i could not observe the suitable FM to fetch audit log texts and put in Internal tableshortly.Even though i went thru SECU FGroup..saw audit log related FMs.
    could somebody follow this post..i could reward points once i get answer for my question.
    Thanks in advance.
    ambichan

    Hi,
    You can activate the internal audit system by setting the audit log parameters as described in the following table : 
    Audit Log parameter settings Audit Log Parameter Set value to... 
    rsau/enable 1 
    rsau/local/file path to audit log file 
    rsau/max_diskspace/local maximum space to allocate for the audit files 
    rsau/selection_slots 3 
    rec/client ALL
    Thanks,
    Hamendra

  • Fetching timeout information from 2.2 agents?

    Can 2.2 agents fetch timeout attributes?
    Reason: I would like to enable the application to open a pop-up window to tell the user - "You have another X minutes until the session timesout" several minutes before it times out.
    I'm trying the following configuration in AMAgent.properties:
    com.sun.am.policy.agents.config.session.attribute.map=maxSessionTime|max-session-time,latestAccessTime|latest-access-time,creationTime|creation-time,AuthLevel|auth-levelmaxIdleTime|max-idle-time,sessionTimeOut|session-time-ouBut I get nothing back?
    Any idea?
    Yoel

    Or would it be easier to transfer all the information from my computer to
    her new one and then change the user information to hers after the initial
    set-up? Most of the applications were not drag and drop, i.e. Photoshop.
    We are part of a umbrella MobileMe account that is being transferred to
    iCloud

  • Extracting X.509 certificate information from OSB/OWSM

    Hello everyone,
    I'm using SOA suite 11gR1 and I'm creating a proxy service with an OWSM policy ( oracle/wss11_x509_token_with_message_protection_service_policy ) . I'd like to know how to extract the certificate details from the incoming message so my Web Services can acess them with something like the WebServicesContext interface.
    Thanks !

    I am working on this same scenario as well (and agree that OWSM documentation is incomplete for this important use case). Vikas Jain provides some further explanation of Verify Signature in a blog entry: http://ws-security.blogspot.com/2007/06/faq-owsm-1013-what-is-use-of-cerificate.html . Essentially he clarifies that the Verify Signature policy step is doing two different functions: 1) validating the signature using the public cert passed in the request, 2) validating that said public cert is actually trusted by the server (directly or through a trusted CA).
    Unfortunately, even with this assistance, I have yet to get OWSM to work correctly using the X.509 certificate token profile for authentication purposes. OWSS does work for me but the desire is to externalize this security function to OWSM (outside of the service container).
    Any information you find out appreciated.
    Todd

  • How to do Query optimization?It takes more time to fetch the record from db. Very urgent, I need your assistance

    Hi all
                                     I want to fetch just twenty thousands records from table. My query take more time to fetch  twenty thousands records.  I post my working query, Could you correct the query for me. thanks in advance.
    Query                    
    select
    b.Concatenated_account Account,
    b.Account_description description,
    SUM(case when(Bl.ACTUAL_FLAG='B') then
    ((NVL(Bl.PERIOD_NET_DR, 0)- NVL(Bl.PERIOD_NET_CR, 0)) + (NVL(Bl.PROJECT_TO_DATE_DR, 0)- NVL(Bl.PROJECT_TO_DATE_CR, 0)))end) "Budget_2011"
    from
    gl_balances Bl,
    gl_code_combinations GCC,
    psb_ws_line_balances_i b ,
    gl_budget_versions bv,
    gl_budgets_v gv
    where
    b.CODE_COMBINATION_ID=gcc.CODE_COMBINATION_ID and bl.CODE_COMBINATION_ID=gcc.CODE_COMBINATION_ID and
    bl.budget_version_id =bv.BUDGET_VERSION_ID and gv.budget_version_id= bv.budget_version_id
    and gv.latest_opened_year in (select latest_opened_year-3 from gl_budgets_v where latest_opened_year=:BUDGET_YEAR )
    group by b.Concatenated_account ,b.Account_description

    Hi,
    If this question is related to SQL then please post in SQL forum.
    Otherwise provide more information how this sql is being used and do you want to tune the SQL or the way it fetches the information from DB and display in OAF.
    Regards,
    Sandeep M.

  • Server name, port from OSB proxy and BPEL processes

    How do I read the server name, port and any other server related information from OSB proxy and BPEL processes?

    http://www.experts-exchange.com/Software/Server_Software/Application_Servers/Java/BEA_WebLogic/Q_24480613.html
    ObjectName service = new ObjectName("com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean");
    InitialContext ctx = new InitialContext();
    MBeanServer server = (MBeanServer)ctx.lookup("java:comp/env/jmx/runtime");
    ObjectName rt = (ObjectName)server.getAttribute(service,"ServerRuntime");
    System.out.println("Server Name : "+server.getAttribute(rt,"Name"));
    System.out.println("Server Address : "+server.getAttribute(rt,"ListenAddress"));
    System.out.println("Server Port : "+server.getAttribute(rt,"ListenPort"));
    ctx.close();
    By the way, it tool 10 seconds on google ...

  • OIM 11gR2 - Push/Pull account locked out information from Active Directory

    Hi
    At this moment, we are using the default reconciliation method from the Active Directory Connector in OIM 11G R2 to fetch incremental information from AD. This runs every 15 minutes.
    However, the customer complains that the time from which the user gets himself locked out due to too many failed login attempts, until it shows up on the OIM account is too long. Worst case, this could be 15 minutes after the user gets himself locked out.
    Do anyone have any tips on how we could either push this information from AD-side, or pull this information from OIM more often? Could we create a special scheduled job that just looks for Locked Accounts, and reconciles this each minute?
    Best Regards
    lloberg

    Hi,
    Sure, that's definitely possible. You can use the Active Directory cmdlets to retrieve this information. Here's an example of reading input from a text file (just usernames in the text file):
    Get-Content .\userList.txt | ForEach {
    Get-ADUser -Identity $_ -Properties EmailAddress
    You can also read input from a CSV file quite easily. This example assumes a header of Username:
    Import-Csv .\userList.csv | ForEach {
    Get-ADUser -Identity $_.Username -Properties EmailAddress
    Finally, here's a link to the Get-ADUser syntax:
    http://technet.microsoft.com/en-us/library/ee617241.aspx
    Don't retire TechNet! -
    (Don't give up yet - 12,700+ strong and growing)

  • Remote exception while fetching information from ALI collaboration 4.5

    We have seen a remote exception recurring from IDK api while accessing collaboration service.
    It says :
    “java.rmi.RemoteException: Unexpected fault was returned by the server (faultcode: Server.userException, faultstring: org.xml.sax.SAXParseException: XML document structures must start and end within the same entity.).
    at com.plumtree.remote.prc.collaboration.project.ProjectManagerWrapper.queryProjects(ProjectManagerWrapper.java:177)”
    we are using idk api 6.0 to fetch information from ali collaboration 4.5 concurrently.
    Please guide us

    First and foremost question....do you think is this THE ONLY & BEST possible way to implement your business logic ? To me it seems this can be achieved using much less code...more the code, more the chances of errors, difficult to debug and difficult to maintain...
    Anyways, it is quite difficult to pinpoint the error without the knowledge of underlying table structure and data. Here are some observations...
    In your outermost loop, you are doing this:
    FETCH cur_accdetail BULK COLLECT INTO vl_t_LogDate; If this step yields data, you are populating vl_t_ModStEnDate collection.
    However, if FETCH results into an exception (maybe NO_DATA_FOUND), you are writing the error to a file and program CONTINUES.
    In next logic, you are directly refereing to vl_t_ModStEnDate collection, without verifying whether it is populated. THAT MAY BE THE CULPRIT. NO CLAIMS...JUST GUESSES....
    BUT, I sincerely request you to revisit your requirement and see if you really need to have this much code to address the same.
    p.s. If you feel you don't have that much time (close deadlines etc...), take my word, it will be worth doing it now.

  • Can Audit Vault be used for getting detailed read type information from the siebel database?

    Can Audit Vault be used for getting detailed read type information from the siebel database?

    Kramer wrote:
    saurabh wrote:
    check below cmd to see where archive are generated.
    SQL> archive log list
    And also check the following
    SQL> select flashback_on from v$database;
    Hi
    Here is the out put
    SQL>  select flashback_on from v$database;
    FLASHBACK_ON
    NO
    SQL>  archive log list
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     11
    Next log sequence to archive   12
    Current log sequence           12
    The flashback is not enabled. But archive log list shows archive destination is specified to use_db_recovery_file_dest.  And I checked the log_archive_dest_10 still empty
    Flashback off or on has nothing to do with it. 

  • SSO Authentication Audit Information for Partner Apps ?

    Hi,
    Is it possible to get Audit Information to show when a users has been authenticated by SSO for a Partner Application ?
    If I look at orasso.wwsso_audit_log_view I can see when a user has been authenticated and a row for Portal and each Partner App that gets authenticated. The question is can you tell which row relates to which Partner App or is there another table with this information ?
    i.e I have two Partner Apps, a user logs onto Portal and only visits pages for one of them, When I log I see 2 rows, I need to know which Partner App they vistied (A or B).
    Thanks
    Simon.

    Well in that case i guess am in luck because i am working with oracle. The thing however is that I don't know where to fetch the information about the installation and all that in order to proceed ahead.
    Besides it seems, the easier it was to make the application and deploy it on the apex, the harder it is to integrate it with the SSO.
    Also i don't understand when you say "public apex.oracle.com", I always thought it was meant only for oracle employees as in it's not accessible through the internet.
    You won't (unless you work for Oracle) be able to do
    that on the public apex.oracle.com site as far as I'm
    aware.

  • Fetch the data from sql server table to array

    In the following script i am fetching the servers details from text file. Please anyone help me to get the same information from sql server database table. with using this query
    "SELECT DISTINCT [server_name]
    FROM
    Servers] where
    Status='1'"
    $ServerName =Get-Content "c:\servers\servers.txt"
     foreach ($Server in $ServerName) {
         if (test-Connection -ComputerName $Server -Count 4 -Delay 2 -Quiet ) {
           write-output "$Server is alive and Pinging `n"
           } else {
    Write-output "TXUE $Server seems dead not pinging"

    i have tested it is not working..
    =@"
    SELECT DISTINCT [server_name] FROM Servers] where Status='1'
    $connection
    =new-objectsystem.data.sqlclient.sqlconnection(
    "Data Source=xxx;Initial Catalog=xxx;Integrated Security=SSPI;”)
    $adapter
    =new-objectsystem.data.sqlclient.sqldataadapter($query,
    $connection)
    $table
    =new-objectsystem.data.datatable
    $adapter
    .Fill($table)
    | out-null
    $compArray
    =@($table)
    ##### Script Starts Here ######
    foreach($Serverin$ServerName)
    if(test-Connection-ComputerName$Server-Count4
    -Delay2
    -Quiet)
    write-output"$Server
    is alive and Pinging `n"
    else{
    $query

  • Send audit information to  mail acount using fined-grained auditing

    hi.
    i like to send audit information to particular mail account. but i have failed.
    is any one can help me. i have writtten step by step what i have done for my work. my mail server work properly.
    SQL> CONNECT SYS/PAS AS SYSDBA
    after that i have created a procedure called "FGA_NOTIFY" to send mail WHEN user used SELECT command on sal column in emp table other than SCOTT. Then i have added a policy that is given belllow.
    But The problem is now when sys user or any other user give command like
    sql> select sal from scott.emp;
    oracle server didnot send audit information mail to mail server. but
    if i execute procedure "FGA_NOTIFY" independently , procedure send mail.
    please help me. i have given procedure and
    policy code down.
    This is my policy
    BEGIN
    DBMS_FGA.add_policy(
    object_schema => 'SCOTT',
    object_name =>'EMP',
    policy_name => 'Example',
    audit_condition => 'ENAME != USER',
    audit_column => 'SAL',
    handler_schema => 'SYS',
    handler_module => 'FGA_NOTIFY');
    END;
    THIS IS MY PROCEDURE
    CREATE OR REPLACE PROCEDURE fga_notify (
         object_schema VARCHAR2,
         object_name VARCHAR2,
         policy_name VARCHAR2)
    AS
         l_messege VARCHAR2 (32767);
         l_mailhost VARCHAR2 (30) :='rmail';
         l_mail_conn UTL_SMTP.connection;
         l_from VARCHAR2 (30):= 'admin@rmail';
         l_to VARCHAR2 (30):= 'admin@rmail';
    BEGIN
    l_messege :=
         'User'||USER
         ||'successfully accessed'||Object_schema||'.'
         ||object_name||'at'
         ||TO_CHAR (SYSDATE, 'Month DD HH24 :MI:SS')
         ||'with this statement :"'
         ||SYS_CONTEXT ('userenv','currrent_sql')
         ||'"';
    l_mail_conn :=UTL_SMTP.open_connection (l_mailhost,
    25);
    UTL_SMTP.helo (l_mail_conn, l_mailhost);
    UTL_SMTP.mail (l_mail_conn, l_from);
    UTL_SMTP.rcpt (l_mail_conn,l_to);
    UTL_SMTP.DATA (l_mail_conn,
              UTL_TCP.crlf||'subject: FGA Alert'
              ||UTL_TCP.crlf
              ||'To:'
              ||l_to
              ||UTL_TCP.crlf
              ||l_messege);
    UTL_SMTP.quit (l_mail_conn);
    EXCEPTION
    WHEN OTHERS THEN
         UTL_SMTP.quit (l_mail_conn);
         raise_application_error     (-2000,'Failed due to the
    following                          error'||SQLERRM) ;
    END;
    Message was edited by:
    Md Ruhul Amin

    Alok brother, thank you for advice. About FGA concept i got from book. this PL/SQL code i got from that book. The book name is "Effective Oracle Database 10g Security by Design" and the writter name is "David Knox". if you send your e-mail address , i could send scan copy of this topic from this book.
    my e-mail address is <[email protected]>. i am waing for you reply

  • Fetching order data from Live Cache

    Hi
    The requirement is to fetch order data from liveCache for a given product based on ATP category . (AY - dependent demands and AU - order reservations)
    I want to get information about the dates and order quantity.
    I have identified following two FM's.
    /SAPAPO/OM_PEG_CAT_GET_ORDERS
    /SAPAPO/OM_ORDER_GET_DATA
    Which one of the two FM is more suitable specific to my requirement ? Also what are the important parameters to be passed in the applicable FM ?
    I would also like to know the difference in these two FMs?
    Thanks in advance,
    Yogesh

    Hi,
    I tried FM PAPO/OM_PEG_CAT_GET_ORDERS
    I am giving the following inputs
    1. PEGID which I am getting from /SAPAPO/DM_MATERIAL_GET_PEGID for a given product location.
    2. ATP category in IT_CATEGORY = BM and CC
    3. V_SIMSESSION = 000
    4. IV_IONODE_PEG_SEL = 0
    But I am getting LC_COM_ERROR
    What parameters am I missing ?
    Regards,
    Yogesh

  • How to Fetch Customer information at the time of Order Import- Urgent

    We have a requirement to Interface data from 2 different systems.
    Booking and Order Information data will come from ----Source 1
    Customer information will come from -----Source 2
    The only Primary key that will be common is the an attribute like 'Customer_ID' that will be sent from 'Source 1.'
    Now in Oracle- we need to Import all of the Booking and Order information from Source 1 and also based on the Customer_ID from Source 1 we need to pull Customer address, contact and name details and also the Payment terms that would already be created in TCA before the Order is imported from Source 1.
    How will Order Import know to fetch the details of Customer attributes that are required to go into an Oracle Order. (Such as Address, contact details, customer name) - All these need to be pulled usin Customer_ID.

    As long as customer is defined in oracle, all you need to pass to the order interface tables is the customer_number( or customer_id).
    The order import itself will pull some information such as customer name automatically.
    However, your custom code that puts data in the interface table should query up the customer site records / contact records and put the data in the interface table before launching the Order Import.
    Hope this helps,
    Sandeep Gandhi

Maybe you are looking for

  • Thumbnail shows wrong photo

    Hi, there! I have 5000 pix in my iPhoto 4 library and have been having trouble with the thumbnails showing the wrong photo. I noticed this first when a thumbnail was very horizontally compressed. . .and when double clicking onto it (to go from "organ

  • AudioClip, one wav works.. another doesn't?

    I'm trying to use the AudioClip class.. and the example I copied over works fine (see code below) but when I change the sound file it stops working. Tried wrapping it in a try and catch and printing any error.. but it seems there is no error as it is

  • Not connecting to the same network after sleep

    I'm working on a MacBook that is running Mac OS X (10.5.8) for a friend. It has all the specs that should be running circles around my MacBook running Mac OS X (10.6.2) which is five years old. However the hard drive had to be replaced on my computer

  • Trying to update iphone 3G network problem continues

    Over the last few nights I have tried to update to 2.0.2 for my 3G but constantly getting network time-out saying (Stopped err= -3259), I have reset and checked everything but still baffled, if anyone can help it will be much appreciated, I downloade

  • How do you enable cookies on an iPhone 4s?

    How do you enable cookies on an iPhone 4s?