PRA interfacing with legacy production accounting applications

Can you share your experiences in interfacing PRA with production accounting systems like Tietonator's EC or P2ES tools?
What is the business case for doing it?
What are the gaps in PRA that are addressed in these tools?
Edited by: Ramakrishna Avasarala on Dec 8, 2008 6:18 AM

Thanks Larry, I just found some documentation on the connector and this does look
promising. Unfortunately, I'm going to be constrained by what the customer has in
place. I don't know yet if the customer is using WebLogic. They are in South Africa
and I'm here in the east coast and just got this request this morning. I need to
find out more information to make a better decision.
Thanks again for the response.
Brett
Larry Presswood <[email protected]> wrote:
Or you could use weblogic with the weblogic connector which would allow
you to expose web services and directly invoke legacy tuxedo services
Brett Bergquist wrote:
I'm tasked with interfacing our XML/HTTP based network management systemwithin a
Tuxedo framework for a large customer. I have not received many detailsas of yet
of the customers infrastructure, all that I know is that it is Tuxedobased.
Our network management system is accessible via a XML over HTTP interface.From
what I gather, the customer wants to interact with our NMS via their clientapplications
which use Tuxedo as their messaging architecture.
From what I've read (only a little today), I will need to create a Tuxedocomponent
that advertises services, accepts service requests, interacts with ourNMS via XML/HTTP,
and packages up the response which is sent back to the client.
Does this sound like the correct path to take?
Any and all comments are appreciated.

Similar Messages

  • Flex interfacing with legacy C/C++ libraries

    I would like to know if there is an easy way to interface a new Flex application
    to legacy C/C++ libraries?
    Thanks.

    Supposedly Merapi maes it possible to connect AIR apps to native applications,
    but in Flex apps I don't think this is possible because of the sandbox.
    http://merapiproject.net/
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance
    www.ChikaraDev.com
    Flex Development and Support Services

  • Solution Manager Interface with Tools Outside SAP

    Does anyone have information on Solution Manager's abilities to interface with tools outside of SAP?  I am interested in interfacing Solution Manager with legacy systems and main frame systems (e.g. Informatica).  I am especially concerned with Root Cause Analysis, Exception Analysis, and Error Reporting in Solution Manager regarding non-SAP systems.  Also, if Solution Manager is able to interface with these systems, can it access details from outside SAP (e.g. data from legacy systems)?

    Hi,
    The solution manager can be interface with the ARIS.We did in our project this interface.
    The Business process flow was defined in ARIS & synchronize with the solman & once configuration is done then we reverse synchronize the same to update the ARIS,so you can interface with legacy also.
    Regards,
    Raj.

  • How to launch an application with elevated administrator account privilege from windows service even if the account has not yet logon

    Here is the case:
    OS environment: Windows 7
    There are two user accounts in my system, standard user "S" and administrator account "A", and there is a windows service running with "Local System" privilege.
    Now i logged-in with account "S", and i want to launch an application with elevated administrator account "A" from that service program, so here is the code snippet:
    int LaunchAppWithElevatedPrivilege (
    LPTSTR lpszUsername, // client to log on
    LPTSTR lpszDomain, // domain of client's account
    LPTSTR lpszPassword, // client's password
    LPTSTR lpCommandLine // command line to execute e.g. L"C:\\windows\\regedit.exe"
    DWORD dwExitCode = 0;
    HANDLE hToken = NULL;
    HANDLE hFullToken = NULL;
    HANDLE hPrimaryFullToken = NULL;
    HANDLE lsa = NULL;
    BOOL bResult = FALSE;
    LUID luid;
    MSV1_0_INTERACTIVE_PROFILE* profile = NULL;
    DWORD err;
    PTOKEN_GROUPS LocalGroups = NULL;
    DWORD dwLength = 0;
    DWORD dwSessionId = 0;
    LPVOID pEnv = NULL;
    DWORD dwCreationFlags = 0;
    PROCESS_INFORMATION pi = {0};
    STARTUPINFO si = {0};
    __try
    if (!LogonUser( lpszUsername,
    lpszDomain,
    lpszPassword,
    LOGON32_LOGON_INTERACTIVE,
    LOGON32_PROVIDER_DEFAULT,
    &hToken))
    LOG_FAILED(L"GetTokenInformation failed!");
    __leave;
    if( !GetTokenInformation(hToken, (TOKEN_INFORMATION_CLASS)19, (VOID*)&hFullToken,
    sizeof(HANDLE), &dwLength))
    LOG_FAILED(L"GetTokenInformation failed!");
    __leave;
    if(!DuplicateTokenEx(hFullToken, MAXIMUM_ALLOWED, NULL,
    SecurityIdentification, TokenPrimary, &hPrimaryFullToken))
    LOG_FAILED(L"DuplicateTokenEx failed!");
    __leave;
    DWORD dwSessionId = 0;
    WTS_SESSION_INFO* sessionInfo = NULL;
    DWORD ndSessionInfoCount;
    bResult = WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1, &sessionInfo, &ndSessionInfoCount);
    if (!bResult)
    dwSessionId = WTSGetActiveConsoleSessionId();
    else
    for(unsigned int i=0; i<ndSessionInfoCount; i++)
    if( sessionInfo[i].State == WTSActive )
    dwSessionId = sessionInfo[i].SessionId;
    if(0 == dwSessionId)
    LOG_FAILED(L"Get active session id failed!");
    __leave;
    if(!SetTokenInformation(hPrimaryFullToken, TokenSessionId, &dwSessionId, sizeof(DWORD)))
    LOG_FAILED(L"SetTokenInformation failed!");
    __leave;
    if(CreateEnvironmentBlock(&pEnv, hPrimaryFullToken, FALSE))
    dwCreationFlags |= CREATE_UNICODE_ENVIRONMENT;
    else
    pEnv=NULL;
    if (! ImpersonateLoggedOnUser(hPrimaryFullToken) )
    LOG_FAILED(L"ImpersonateLoggedOnUser failed!");
    __leave;
    si.cb= sizeof(STARTUPINFO);
    si.lpDesktop = L"winsta0\\default";
    bResult = CreateProcessAsUser(
    hPrimaryFullToken, // client's access token
    NULL, // file to execute
    lpCommandLine, // command line
    NULL, // pointer to process SECURITY_ATTRIBUTES
    NULL, // pointer to thread SECURITY_ATTRIBUTES
    FALSE, // handles are not inheritable
    dwCreationFlags, // creation flags
    pEnv, // pointer to new environment block
    NULL, // name of current directory
    &si, // pointer to STARTUPINFO structure
    &pi // receives information about new process
    RevertToSelf();
    if (bResult && pi.hProcess != INVALID_HANDLE_VALUE)
    WaitForSingleObject(pi.hProcess, INFINITE);
    GetExitCodeProcess(pi.hProcess, &dwExitCode);
    else
    LOG_FAILED(L"CreateProcessAsUser failed!");
    __finally
    if (pi.hProcess != INVALID_HANDLE_VALUE)
    CloseHandle(pi.hProcess);
    if (pi.hThread != INVALID_HANDLE_VALUE)
    CloseHandle(pi.hThread);
    if(LocalGroups)
    LocalFree(LocalGroups);
    if(pEnv)
    DestroyEnvironmentBlock(pEnv);
    if(hToken)
    CloseHandle(hToken);
    if(hFullToken)
    CloseHandle(hFullToken);
    if(hPrimaryFullToken)
    CloseHandle(hPrimaryFullToken);
    return dwExitCode;
    I passed in username and password of account "A" to method "LaunchAppWithElevatedPrivilege", and also the application i want to launch, e.g. "C:\windows\regedit.exe", but when i run the service program, i found it do launch
    "regedit.exe" with elevated account "A", but the content of regedit.exe is pure back. screenshot as below:
    Can anyone help me on this?

    You code is not dealing with the DACL access to Winsta0\Default.  Only the LocalSystem account will have full access and the interactively logged on user which is why regedit is not displaying properly.  You'll need to grant access to your user. 
    You also need to deal with UAC since that code is going to give you a non-elevated token via LogonUser().  You need to get the full token via a call to GetTokenInformation() + TokenLinkedToken.
    thanks
    Frank K [MSFT]
    Follow us on Twitter, www.twitter.com/WindowsSDK.

  • New to Apple products (finally) - can I use my Itunes account with multiple products e.g. Iphone and Ipad?

    New to Apple products (finally) - can I use my Itunes account with multiple products e.g. Iphone and Ipad?

    Oh yes! Apple will be happy for you to buy as many Apple products as you can afford.
    As and when needed, each can be given its own selections of content to sync with.
    tt2

  • I have an iTunes account set up long ago on my home pc. My pc at home is antiquated and I can't interface with my account to edit acc. Info. Now I have other devices, iPhone 4 and iPad. I need to reset email apple Id and pw from iPad. How?

    I have an iTunes account set up long ago on my home pc. My pc at home is antiquated and I can't interface with my account to edit acc. Info. Now I have other devices, iPhone 4 and iPad. I need to reset email apple Id and pw from iPad. How? Should I just create new account? Don't want to lose 1500 songs.

    Hey Frankgates!
    I have an article here that can tell you how to do this:
    Apple ID: If you forget your password
    http://support.apple.com/kb/HT5787
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • I have a product code for my photoshop c6 under a different account that i cant remember. how can i use my software with the product code that i have with the new user i made?

    I have a product code for my photoshop c6 and i used a different account to register this software. how can i use this product that i have with my new account that i just made?
    please advise
    I dont have the serial number so yeah
    i have a product code

    Contact Adobe Customer Service directly by phone or web chat (they don't do email).  They don't do email.  If you can provide proof of purchase to their satisfaction, they may be able to help you.
    These are user forums, so you're not addressing Adobe here.  We can't help you with this type of issue.

  • Java Application interface with MS Excel through DDE

    We have a financial application written in JAVA and have requests from users that want to interface with the application. Meaning, They would like the Java application interface with Excel. For example, if you had a C++ application, you could create a DDE link in Excel that points to the C++ application and receive the data.
    How could I do this with a Java Applictaion ? I was told that there was an application written that lets Java interface with Excel.
    Any ideas or does anyone know ?

    JNI

  • Interface with Xero Accounting Software

    Hi,
    I am looking for anyone who has experience in an API interface with BC and Xero accounting software.
    Regards, Patrick

    Hi Patrick,
    Just wondering if you had any success with your Xero integration? I'm looking to implement the same thing and would love to be pointed in the right direction.
    Onesaas are currently redeveloping their method, so that is not an option at the moment.
    Cheers

  • I can not run any Adobe application (Not responding) with a network account

    HEllo All,
    My First question:
    Which impact will I have if I copy the content of
    /Users/Library/Preferences/
    to:
    HD/Library/Prefernecs/
    Here is my problem related to my first question:
    I installed Illustaror, photoshop, adobe Acrobat Pro, and adobe reader on my iMace runing 10.6.1.
    I installed its with my local admin account and all run fine.
    I also have a X OS Server with network account.
    I joined my iMac on that server and when I log with a network account, all of my a
    Adobe application are not responding (Illustartor, Photoshop, Adobe Pro and Adobe)
    I red That I should copy /users/Library/Preferences/Adobe Illusratot CS4 Setting/ folder to the user home folder within the same path.
    This is work.
    But how can I make sure that all of ALL my Adobe application will work for all Users??
    many than for your help
    Message was edited by: pierrot10

    Hello,
    Someone has an idea to help?
    The problem is for illustrator, adobe reader and adobe pro. For all of them, when I run it with a locl account, it works, but when I run its from the same workstation but with a network account:
    - illustartor freez
    - adobe reader craches and retsat and craches...
    - Adobe Acrobat pro freez.
    Only photoshop works.
    Do you have an idea how can I make it working with a network account but only from the same workstation?
    Many thank for your help
    Pierrot

  • Upgrade applications, with an expired account

    I have an iPhone and I use the Apple Store. During the first year I used an iTunes Account to buy some applicationos, with an account that is disable, know. I had to create another one...
    When there are upgrades to the applications that I bought with my first account, the apple store ask for password of the first account, that is no longer available.
    I can't change the account. I can only insert the password.
    When I insert the passowrd (from the respective account) it appears a message informing the the account is no longer available.
    What can I do to upgrade that applications?
    The others applications, brought with the new account are working fine, when is necessary to make an upgrade, beacuse the iPhone ask for the password's new account that is working fine.

    Apps are DRM protected and tied to the account that was used to originally purchase them. They can only be updated or re-downloaded for free using the account that was used to originally purchase them. To fix this, contact iTunes support and request they transfer the apps in question to your current account. If they agree to do so(most likely they will), they will be added to your pending download queue:
    http://www.apple.com/support/itunes/

  • Error while creating activities from Account application (Activity tab page

    Hi Experts,
                       We are using CRM 5.0 with PCUI ( EP 7.0 version). We are getting  below error when try to create activities from Account application in PCUI ( from activity tab page):
    Error : Activity contains error.
    Diagnosis
    This transaction has errors.
    Procedure
    To correct the errors, go to the maintenance interface of the transaction.
    To navigate to there, use the link to the account application
    Pls suggest how to proceed with this error & helpful solutions would be rewrded generously.
    Regards,
    Basavaraj Patil

    Hi Experts,
    We are getting this error when try to create Activity from Account application in PCUI. But the same thing is working fine in at GUI level & actions profile assigned to Activity transaction is also working fine at GUI level. But in PCUIit is throwing this below error.
    Diagnosis
    You have attempted to create a follow-up transaction for an incorrect transction 2000764. This is not possible. You can only create follow-up transactions for error-free transactions.
    System Response
    The follow-up transaction is not created.
    Procedure
    Correct the errors in the source transaction 2000764. The error messages resulting from processing the error can be read in the application log in the source transaction.
    Pls suggest solution for this.
    Thanks in Advance.
    Regards,
    Basavaraj Patil

  • EDI interface with MM

    Hi Gurus,
    I want to have detailed information on EDI interfaces with MM. A detailed explanation will be highly appreciated.
    thanks,
    Kumar

    Hi
    EDI interface with MM can be anything that may be required as per the scenario needed. Any interface to SAP from legacy using EDI application. The most imagined interface can be Say there is a third party system in which Purchase orders or Req are entered by different Buyers and those need to be interfaced to SAP for creating the orders in SAP.
    Similarly another thing that can be imagined is Material movements posting from a third party warehouse system
    Please let me know if you have any specific question on this.
    Thanks

  • Is it safe to log into websites with my Google account?

    There are a lot of websites that allow users to login with a Google account.
    Is there any way my Google account information could be compromised from someone hacking the website I logged into with my Google account?
    Machine Type: M90z AIO ; Product: 3091CTO (Custom), CPU: i5-650, Video Card: Intel(R) HD Graphics, Memory: 4.00 GB,
    Network Card: Intel(R) WiFi Link 1000 BGN, OS: Windows 7 Professional 64-bit

    I would say, yes, Google's OpenID might be risky depending on what a hacker wants to gain, thus what type of code is used. The website code for that uses a redirect to a page of a website, so it can retrieve your personal data from Google. Should that page become compromised and the redirect go to a malicious page, you may not know. Once there, even if it cannot access your information from Google, an unsuspecting user might be asked to re-login and could be directed to a phishing site.
    I think zb420 may be thinking of IP blocking, as opposed to anti-virus alerts which would notify you if your AV sees malicious code on a webpage that you visit. For IP blocking, the issue has to be reported in order for anti-malware applications to add the information to their database. If it is a legitimate site, and the problem is handled within a few hours, as most are, your anti-virus/anti-malware would not help you with IP blocking, unless the redirect is to a known bad site. If the site is not fixed, it would eventually be reported and added to IP blocking by whatever security you are using for that.  
    ThinkPad: T530 / X1 Gen 2 / Helix - Yoga: Tablet 2 Pro (Win) / Yoga 3 Pro
    If you find a post helpful and it answers your question, please click the "Accept As Solution" button.
    Lenovo Advocate ~ I am not employed by Lenovo or Microsoft. I am a volunteer.
    Microsoft MVP - Consumer Security
    SpywareHammer

  • Warner/superior electric's SS2000PCi motion controller interfacing with LabVIEW 6i

    Sir,
    In our application, we are controlling the movement of X-Y arm on the X-Y table. For this we are using superior electric products:
    (a) Slo-Syn SS2000PCi Programmable Step Motor Controller
    (b) MD808 Motor Drive
    We are using two such controllers and motor drives to drive two 2 Amps Sanyo Denki Stepper motors: one each along X-axis and Y-axis. Along with the arm movement a data acquisition also has to be carried out. So, the motion control and Data Acquisition has to be synchronized by means of software. The problem now is to program the controller. Though MCPI Version 4.41 is there, we want to program the controller in LabVIEW 6i so that we can synch
    ronize both motion control and Data Acquisition.There is no driver which is compatible to LabVIEW 6i.
    Is there any 32-bit DLLs for this controller? If any one has these dll's please let me know. My E-mail ID: [email protected]
    So that i can call these DLLs in LabVIEW 6i and program it.Or else send me at least the detailed low level command sets of the controller in pdf format so that i can develop our own drivers.
    Regards,
    Nagendra

    Nagendra,
    Unfortunately, I was unable to find any helpful resources for you based on a cursory web search. I recommend that you contact the manufacturer of the hardware and ask them if they have a driver (DLL) that you can use to interface with LabVIEW.
    Good luck with your application, and have a good day.
    Sincerely,
    Darren N.
    NI Applications Engineer
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

Maybe you are looking for

  • Error message when trying to use recovery disks

    Hello, My hard drive failed, and I had remembered to create a Recovery Disk (2 DVD) in case this happened.  I wanted to use the same hard drive, to see if I could get it back and running, but I get a message, which is in Norwegian since I am living i

  • Income Tax Depreciation-India

    Hi,   You all might be aware To Evaluate the Income Tax Depreciation in Asset Accounting we have got 2 options:- 1.   By Adopting Addittional Depreciation Area (Depreciation Area 15 (Depreciation as per Income Tax        Act 1961)       But the probl

  • Problem with my Clone Stamp

    Hi,  All of a sudden my clone stamp is acting strange. I now have TWO " problems. 1st problem is that as i enlarge the clone stamp, enlarge the circle, less of it is visible ? 2nd problem, when i open a .jpg and position my mouse over an area i want

  • How to aktivate WS in SOA Manager without WSADMIN/WSconfig

    Hey everybody, we've implemented some new SP's and with them the SOAmanager Tool (adapted at the ABAP Workbench). Unfortunately since we have that tool the old transactions wsadmin and ws confis aren't working any longer. We've generated and configur

  • Web Dynpro for ABAP functionaility for HCM Proceseses & Forms in EhP4

    Dear Gurus, I read in one of the threads that HCM Processes & Forms are now Web Dynpro for ABAP based from EhP4 onwards. Can sameone provide me with any SAP link which corroborates this? Thanks. Regards, sameer Kadam