Rfc_Call_Transaction, AL08

Hi,
In SAP I can see a list of logged on users with transaction AL08.
What I want to do is access this data in a .NET application. I think that the way to do this is by using Rfc_Call_Transaction?
Unfortuanately I haven't been able to find much information on Rfc_Call_Transaction - can anyone advise me on how to do this?
Many thanks,
Colin

Could you elaborate? I still have no idea how to use Rfc_Call_Transaction with AL08? (It is not an issue if I need to use it in conjunction with the GUI)
Or is there a better way to obtain data from AL08 in a .nET application?
Many thanks,
Colin

Similar Messages

  • RFC_CALL_TRANSACTION in 4.6c serching for an alternative in ECC6.0

    Hi there,
    in release 4.6c i use the function RFC_CALL_TRANSACTION in some of my programs.
    In ECC6.0 it seems that this RFC is not there any more.
    Any ideas what RFC i can use instead ?
    Greetings
    H.P:

    Hi,
    Alternate function module RFC_CALL_TRANSACTION_USING
    Satya

  • Not able to see all the users in AL08.

    Hello all,
    We  have SAP ECC 6.0 installed on SOLARIS 10,database as oracle 9.2.0.6
    We have installed and configure solaris cluster 3.2 for our production environment , one node installed with database ( db+ci ) and other node installed with application server.
    In Database server t-code AL08 only shows its user only, while in application server it works fine, Al08 shows users of both the servers.
    same problem with SM51, From application server we are able access database server but from database server we are not able to access application server. Access means we can check work process,user etc.. even though in SM51 both the servers active.
    Chandresh Pranami.

    Hi Chandresh,
    see
    Note 412014 - AL08 does not show all instances
    Note 648255 - Incorrect number of active users with AL08
    SurendraJain
    Edited by: Surendrajain2003 on Jul 31, 2009 12:43 PM
    Edited by: Surendrajain2003 on Jul 31, 2009 12:43 PM

  • RFC_CALL_TRANSACTION

    Hello all,
    Good Day.
    I am using Macro to updated data in to SAP.
    Using "RFC_CALL_TRANSACTION"
    Previous i am using the Below code to Get the SAP MSG.
    If RfcCallTransaction.Call = True Then
                        Set Messages = RfcCallTransaction.imports("MESSG")
                        Cells(i1, 21) = Messages.Value("MSGTX")
    Now I am using the "ABAP4_CALL_TRANSACTION" Code to updated data in sap
    I am not sure what code i want to use to get the Message.
    Please Help Me...

    I find the Solution...
    Set Messages = RfcCallTransaction.Tables("MESS_TAB")
    Cells(i1, 21) = Messages.Value(Messages.ROWCOUNT, "MSGV2") & Messages.Value(Messages.ROWCOUNT, "MSGV3") & Messages.Value(Messages.ROWCOUNT, "MSGV4")
          Cells(i1, 21).Select
    Sources : http://www.facebook.com/topic.php?uid=105737996136882&topic=62

  • Rfc_Call_Transaction parameters

    Hi:
    I'm trying to perform a transaction with the RFC function Rfc_Call_Transaction, I put all the parameters: Transaction, Screen, dynpro, etc. But I'm missing something, I'm reciving 'Start screen does not exist in batch input data'
    ¿Can anyone help me?
    Thanks.

    Yes, it's solved (i can´t mark it, don't know why)
    Ok, I made a funtion to create a record on the DBCDATA structure, simple:
            private BDCDATA FillBDCDATA(string Program,
                                        string Dynbegin,
                                        string Dynpro,
                                        string Fnam,
                                        string Fval)
                BDCDATA st_DATA = new BDCDATA();
                st_DATA.Program = Program;
                st_DATA.Dynbegin = Dynbegin;
                st_DATA.Dynpro = Dynpro;
                st_DATA.Fnam = Fnam;
                st_DATA.Fval = Fval;
                return st_DATA;
    This result will be added in the tblBDCDATA table (this can be done in .NET based languages, thanks to the garbage collector, in other languages something like this could be very dangerous)
    The calling funtion works like this, take special attention on the sequence sended to the above function, this order is exactly the same of a transaction register generated inside SAP, hope is usefull.
            private void button3_Click(object sender, System.EventArgs e)
                SAPProxy proxy = null;
                txtMsg.Text = "";
                try
                    proxy = new SAPProxy("ASHOST="  + txtHost.Text +
                        " SYSNR="  + txtSysnr.Text +
                        " CLIENT=" + txtMand.Text +
                        " LANG="   + txtLang.Text +
                        " USER="   + txtUser.Text +
                        " PASSWD=" + txtPass.Text);
                catch(Exception excpt)
                    txtMsg.Text = excpt.Message;
                if (proxy == null)
                    return;
                BDCDATATable tblBDCDATA = new BDCDATATable();
                MESSAGEINF infMessage = new MESSAGEINF();
                // call to FillBDCDATA(    Program,   Dynbegin, Dynpro, Fnam, Fval)
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA",     "X", "0111", null, null));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BDC_OKCODE", "/00"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPDY-BLDAT", "30.12.2004"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPDY-VERSN", "0"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "FMPS-FIKRS", "ente"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPDY-JAHR",  "2005"));
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA",  "X", "0320", null, null));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BDC_OKCODE", "=PERI"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "ERFA_ZEILE_IN", "1"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPFMPS-FISTL(01)", "GRCOMW"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPFMPS-FIPOS(01)", "G90230615"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPAK-WERT(01)", "2"));
                tblBDCDATA.Add(FillBDCDATA("SAPLKBPP",  "X", "0600", null, null));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BDC_OKCODE", "=CLOS"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPDY-PERI1(01)", "350953.44"));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BPDY-PERI1(02)", "350953.44"));
                tblBDCDATA.Add(FillBDCDATA("SAPMKBUA",  "X", "0320", null, null));
                tblBDCDATA.Add(FillBDCDATA(      null, null,   null, "BDC_OKCODE", "=BUCH"));
                try
                    proxy.Rfc_Call_Transaction("FR33" /"FM9J"/,"", out infMessage, ref tblBDCDATA);
                catch(Exception excpt)
                    txtMsg.Text = excpt.Message;
                /Document 0500106943 posted/
                txtMsg.Text = infMessage.Msgtx;

  • RFC_CALL_TRANSACTION  missing after upgrade

    Hello,
    we had used to remote call the transaction RFC_CALL_TRANSACTION 9SAP R/3 4.4C).
    Aftre upgrade to ECC 6.0 the transaction RFC_CALL_TRANSACTION does not exist.
    Which one can we use instead of it?
    Regards
    Zeno

    Hi Zeno,
    The function group ATSV no more exists in the ECC 6 version of SAP, instead you could use the FM RFC_CALL_TRANSACTION_USING of the function group MRFC.
    Let me know if you need any further information.
    Regards
    Yugandhar

  • RFC_CALL_TRANSACTION missing

    Hello,
    we had used to remote call  the transaction RFC_CALL_TRANSACTION 9SAP R/3 4.4C).
    Aftre upgrade to ECC 6.0 the transaction RFC_CALL_TRANSACTION does not exist.
    Which one can we use instead of it?
    Regards
    Zeno
    Edited by: zeno novak on Jun 18, 2008 1:43 PM

    Hi Zeno,
    The function group ATSV no more exists in the ECC 6 version of SAP, instead you could use the FM RFC_CALL_TRANSACTION_USING of the function group MRFC.
    Let me know if you need any further information.
    Regards
    Yugandhar

  • SM04, AL08 active unknown users getting increased

    Hi All,
    While connecting through SAPGUi, getting an error
    "Application Server is overloaded currently"
    "Maximum no of connections terminals reached"
    If i checked in the sap system in "SMO4 and AL08" the no of unknown users is continually increasing" and these are showing as active users without any name.
    the user name is blank, and it continually increasing like this. we are having only 5 users created in the system.
    If i am terminating the users from SM04 and again its coming after refresh like this its increasing like 200, 3000....etc users.
    Due to this i am getting above mentioned error.
    Please help me on this, why the unknown users are getting increased and those are GUI users not RFC users.
    Please suggest, how t fix it and what may be the root cause
    Thanks in advance.
    Best Regards
    Vamsi

    Can you please paste the trace file dev_w0,dev_disp from the work directory.
    Also check this SAP note
    Note 1040464 - Blank row in SM04
    Try upgrading the kernel .
    Regards
    Ratnajit

  • Function Module RFC_CALL_TRANSACTION not exist in ERP6??

    Hi,
    Does anyone know if this function module has been replaced in ERP6??  We are still running code that calls this Funciton Module, but we get the following error:
    Executing postCommandError with type 'action_log', attribute '10001' and command 'Function module "RFC_CALL_TRANSACTION" not found.'
    tks
    Christiaan
    POINTS WILL BE REWARDED

    Hi Christiaan,
    Check RFC FM ABAP4_CALL_TRANSACTION
    Thanks
    Lakshman

  • Al08 details

    hi.......
                am just working on al08..... for number of users logged on......
    i need to know about...... some of the details abt following topics:
                                                  Active Instances
                                                 Number of Active Users
                                                  Interactive Users
                                                 Number of RFC User
                                                 Ext. Sess
                                                  Int. Sess.
    plz do the needfull........

    hello ...
               in display its showing only how many users r active,interactive,rfc.....
    Number of Active Users    Interactive Users         Number of RFC Users
      4                                             3                         1
    Client User Name    Terminal             Transaction Code     Time     Ext. Sess. Int. S
    800    PRASANNA     pc569                                     14:25:10         1
    800    MOHAMED      pc584                SEU_INT         4:25:07         2
    800    ADMIN             pc665                                     12:09:49         1
    800    PRASANNA     pc569                                     14:25:10         1
    above mentioned is display of al08...
    there is one rfc user .....i need to know which one.....
    like wise 3 Interactive Users  .... possible for getting interactive users alone......

  • What is the equavelent of AL08 at EP7?

    Hi!
    In R/3 (ABAP), we can see the user distribution accross the application servers via t_code AL08.
    We have an EP7 with multiple application servers (Java only). Where to see  the on-line
    user distribution accross the application servers?
    We know we can access this info from Visual Admin. But how to do it via EP7 itself ? Any other
    place to go , e.g. an iView?
    Thanks!

    Portal Activity Report is a good place to find user information
    go to User administration >  Activity Report
    Although remember that this portal activity report can hinder the performance of your portal. deactiviating this can cause an improvement in the performance...
    hope that helps...

  • Conversion process of bidder to supplier in SRM 7.0 through portal?

    Hi,
    Problem: When the bidder is converted to supplier through the portal (working with SRM 7.0), the details are passed to BW. But, when I try to view the same bidder (i.e., the same business partner as bidder) in the bidder list, it could not be found. The object is being converted and is not leaving any trace. I need access those details of business partner (as bidder). For this, I need to track the process of conversion of a bidder to supplier (to look for enhancements).
    please let me know how to debug (web dynpro components) and where to look for exactly to track the critical stages of conversion, if any of you have experienced a similar scenario.
    Thanks in advance!!!!
    -dev.

    Hi ,
             Thanks Iftekhar and Yramki for replying. I checked everything and we have only one server for Development but still I am not able to debug, I checked AL08, it is showing same server we donu2019t have different application server for development. I donu2019t have any idea about that How to activate debugger for specific user id, please suggest me.
             Parameter set with value rdisp/tpda_for_ext = 1 . In the BADI i putted one infinite loop and then try to debug from the SM50 through Menu program/session u2013 Program u2013 Debugging but from GUI new debugger session is not opening and some time after process has been deleted from the SM50 and I got error message in the Portal.
             Do I need or missing some setting in Portal . Please suggest me.
    Regards,
    Abhijeet

  • Report showing the number of active users in the system

    All,
    There is a standard SAP report which shows the number of active users in the system (output same as AL08).
    Does anyone remember this?
    Cheers,
    Bidwan

    Hello Bidwan, 
    Are you talking about the report RSUSR000?
    Regards.
    Ruchit.

  • ST03N shows users accessing transactions even when not logged in

    Hello all...
    We are trying to determine how many times a user executed a transaction during a specific period, and are using ST03N to do this. 
    We get the information fine, but it shows non-system users as having accessed transactions on days they are not logged in or it shows excessive use of a transaction (i.e 8000 times in a 20 day period). 
    We have confirmed that no batch jobs or system jobs are running or have run under their ID's.  Additionally, it shows use of transactions which the users are not authorized to use.
    Please help as we are trying to explain this for SOX purposes.
    Cheers all!
    Joe Johnson

    Thanks for the replies...
    We can use AL08, but it doesn't show any user activity for the specific users that keep popping up in ST03N.
    RFC calls seem to be closest to explaining this, but how can one track the calls made by a user?  Additionally, if the ID is not authorized to perform a transaction shouldn't the RFC call fail?

  • How can we reset the SAP cache for users roaming profile in a d?

    Our active directory is on windows server 2003.
    SAP version 6.40
    users work from different workstations in our company with their roaming profile.
    printouts are defined by assigning a printer to the terminal (usually the closest terminal to theprinter)
    we have some users who have logined to windows, are unable to print to the assigned printer, because the name of the terminal is stuck on another terminal they worked on before.
    we think that the the cache in SAP does not update properly.
    Where is the SAP cache, is it in the server, or the workstation, or the user profile?
    Can anyone help?
    Robyn

    all configurations of the printers are correct.
    I will try and explain the problem differently:
    In general If a user logs on to SAP, we will see in tc al08 the username and terminal the user is working from. (The terminal is the full computer name e.g. WS-KITCHEN).
    When a user with the problem logs on to SAP, we will see in tc al08 the username and the name of a terminal he worked from in the past and not the work station he is at present. Therefore his printouts go to the printer that is allocated to the terminal that he worked on before and not the WS-KITCHEN he is working on now.
    Thanks
    Robyn

Maybe you are looking for

  • Flash Crash Please Help

    I've been using Flash CS4 for some time on two computers (Laptop and Desktop). The installation on the laptop is OK, but recently the Flash program on the Desktop crashes (it worked well before). On my Desktop computer, If I load ANY previously good

  • Tree component problem plz help me

    Hi all, tree component is working perfectly. But according to my requirement i need to sort the date in tree. Iam trying that since 2 days but not able to find any solution. can any one help me plz. Thanks in advance.

  • How do I put together all clips? (MPEG Streamclip)

    I put in a film in my computer from my Sony DCR-SR55E video camera that is in MPG. (It is filmed on a two weeks vacation and is in 1172 files, each clip in one file you know.) I have tried to make all clips into one in MPEG Streamclip but then it get

  • Loading images inside applet JAR

    Hi This is my issue: I have an applet which contains images inside the applet JAR. I want to display these images in my applet, but apparently due to browser access restrictions, I'm not allowed. My first code was like this: //security restrictions o

  • I keep getting an error 9810 message

    Hi I have subscrided to Match. When I click it I get an error message -9810? Ghento