Start Transaction

Hi Experts,
Im New to work flow.
What is the use of Start transaction in Version Independent tab.
Thanks in advance.
Points will be rewarded for all helpful Answers.

Hi padmam and Kiran,
Thanks for your quick Reply.
Actually my doubt is when I create the Start Form, the Start transaction created automatically.
But Its not displayed in "Start transaction" Tab. It displays only at "Start form".
So My Question is what is the Significance of Start transaction Tab?
Thanks.

Similar Messages

  • Problem starting transaction for MDB

              Hello All,
              I have a MDB configured as Container managed transaction.
              Sometimes I rollback a message sent to a Queue.
              The problem is that sometimes the WEBLOGIC log show the follow error and do not
              start a JMS service.
              Anyone had this problem before?
              Thanks.
              <Mar 3, 2004 4:51:13 PM GMT-03:00> <Error> <JTA> <BEA-110424> <An unexpected exception
              was caught during begin: java.lang.NullPointerException
              at java.security.SecureRandom.setSeed(SecureRandom.java:369)
              at weblogic.transaction.internal.XidImpl.seedRandomGenerator(XidImpl.java:378)
              at weblogic.transaction.internal.XidImpl.create(XidImpl.java:266)
              at weblogic.transaction.internal.TransactionManagerImpl.getNewXID(TransactionManagerImpl.java:1719)
              at weblogic.transaction.internal.TransactionManagerImpl.internalBegin(TransactionManagerImpl.java:249)
              at weblogic.transaction.internal.ServerTransactionManagerImpl.internalBegin(ServerTransactionManagerImpl.java:303)
              at weblogic.transaction.internal.ServerTransactionManagerImpl.begin(ServerTransactionManagerImpl.java:259)
              at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:253)
              at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
              at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              >
              <Mar 3, 2004 4:51:13 PM GMT-03:00> <Error> <JMS> <BEA-040368> <The following exception
              has occurred:
              java.lang.RuntimeException: [EJB:010166]Error occurred while starting transaction:
              javax.transaction.SystemException: java.lang.NullPointerException.
              at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:277)
              at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
              at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              >
              

    Thanks for ur help!
              WLS 8.1
              <JDBCTxDataSource EnableTwoPhaseCommit="true"
              JNDIName="JDBCDataSource" Name="JDBCDataSource"
              PoolName="JDBCConnectionPool" Targets="myserver"/>
              WLS 7.0
              <JDBCDataSource JNDIName="JDBCDataSource" Name="JDBCDataSource" PoolName="JDBCConnectionPool"/>
              Because JDBCDataSource is the default datasource when you create a new datasource in WLS7.0, JDBCTXDataSource is the default datasource in WLS8.1.
              After I changed the config.xml, it's ok!
              > Can u please post the DB Connection Pool & DataSource
              > part of config.xml from both (7 & 8.1) your
              > environments ?
              >
              >
              > Cheers!
              > Dips

  • Attempt to start transaction on SQL server

    I have managed to successfully configure Oracle 8.1.7 on NT to retrieve data from a MS
    SQL Server (version 6.5)
    However, one of the databases we are accessing is set up as read only; Oracle is
    attempting a start transaction, as it recognises that the SQL server can take
    part in distributed transaction. I am doing something like
    insert into mytable (a, b, c) select a, b, c from remote_table@sql_server
    Because the SQL Server is in read-only mode, the 'start transaction' fails,
    and the insert statement fails as a whole (I've examined the trace file, and the
    error I'm getting is reproducable on the SQL server if I type it in)
    I've tried looking at the data dictionary, and sure enough it is set up for
    2 phase commit as per the documentation.
    My question is, can I tell Oracle to not attempt the 'start transaction' on the
    remote system? I've tried various DBMS_HS calls but to no avail (from the
    documentation I believe the agent overrides the data dictionary entries anyway)
    Thanks,
    Colin McPherson

    Colin,
    This looks like bug 1622021. This bug has been fixed in v9.0.1 of the gateway.

  • MSS:  Cannot Start Transaction HRWPC_FC_EXEC

    We have three custom ABAP reports setup for the 'Reports' tab in MSS.  Two of them work fine, but one of them is giving this error message:
    Cannot Start Transaction
    The Internet Transaction Server could not start the transaction "HRWPC_FC_EXEC" because of the following error: .
    It doesn't give an error message, so I have no idea what the error is.  Any ideas?

    I would check/try the following:
    1)Does the transaction exist and does it need to be published to the ITS?
    2)Does the user have the appropriate security profile to run the report - try with SAP_ALL and SAP_NEW as a test?
    3)Run the transaction directly in R/3 SAPGui with your test user ID, what happens?
    4)Is your test user appropriately integrated into your org chart (does the MSS report rely on this?)
    Just some ideas.... hope something gives you a clue

  • Starting transaction in SAPGUI via JCo

    Hello,
    I'm trying to start SAPGUI for Windows using parameter
    setSapGui(1), but the GUI Window does not show. When I'm using setAbapDebug(true)than the GUI window starts in debug mode.
    What can be wrong? Does anyone have any ideas?
    I'm trying to start transaction se11 using BAPI RFC_CALL_TRANSACTION.
    Code looks like this:
    // Obtain parameter list for function
          JCO.ParameterList input = function.getImportParameterList();
           // Obtain table for function
           JCO.Table BDCtable = function.getTableParameterList().getTable("BDCTABLE");     
          //BDCtable.setRow(0);
          BDCtable.appendRows(4);
          BDCtable.setValue("SAPMSRD0", "PROGRAM");
          BDCtable.setValue("0102", "DYNPRO");
          BDCtable.setValue("X", "DYNBEGIN");
          BDCtable.nextRow();
          BDCtable.setValue("BDC_CURSOR", "FNAM");
          BDCtable.setValue("RSRD1-TBMA_VAL", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("BDC_OKCODE", "FNAM");
          BDCtable.setValue("=SHOW", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("RSRD1-TBMA", "FNAM");
          BDCtable.setValue("X", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("RSRD1-TBMA_VAL", "FNAM");
          BDCtable.setValue("BUKRS", "FVAL");
          BDCtable.nextRow();
          BDCtable.setValue("SAPMSRD0", "PROGRAM");
          BDCtable.setValue("0102", "DYNPRO");
          BDCtable.setValue("X", "DYNBEGIN");
          // Pass function parameters
          input.setValue(transactionName, "TRANCODE");
          //input.setValue(daneKlienta, "DANE_KLIENTA");
          conn.execute(function, conn.createTID());
    Regards Artur
    Message was edited by: Artur Welke

    Hi Artur,
    This answer is in relation to BSP but i think concept is same, it will give you an idea. This answer is taken from
    Brain's <a href="/people/brian.mckellar/blog/2003/10/23/bsp-trouble-shooting-frequently-asked-short-questions weblog.
    <i>Typical question: "We have developed a BSP application and we're trying to call some function. It doesn't work. However, if we execute the BSP application in debug mode, everything works fine. Why?"
    When you log onto a WebAS system the Dynpro engine is started that contains all the logic to handle interaction with the SAPGUI. For example, things such as rendering controls and doing file upload/download are all available.
    When you run an HTTP request into Web AS, a very special "dark" (or background) Dynpro is started. A minimal Dynpro is required to get ABAP up and running. But now there is no SAPGUI available, so no SAPGUI-based service will work. Also little things such as popup windows do not work.
    So why does the code work in the debugger? Because, once the debugger is triggered,it realizes that a normal Dynpro is required for the debugger and not the "dark" one. So the full-blown Dynpro engine is started, making all SAPGUI services available.
    You can consider finding the code that causes the error and bracket it with IF-statements in this function, so that no SAPGUI interaction is required in the context of a HTTP call.</i>
    Also visit this <a href="https://www.sdn.sap.com/sdn/collaboration.sdn?contenttype=url&content=https%3A//forums.sdn.sap.com/thread.jspa%3FthreadID%3D35880%26tstart%3D60">thread</a>, this will certainly help you.
    Regards,
    Narinder Hartala

  • Error HRWPC_FC_EXEC - could not start transaction

    Hi, am getting error when access MSS ePortal a particular transaction give me the error HRWPC_FC_EXEC - could not start transaction, and other transactions are working fine. Any one pls advise how to check and we miss anything? 
    thanks in advance.
    Regds

    Hello,
    Please set parameter  ~webgui_theme with value "sl" in the HRWPC_FC_EXEC service under GUI configuration. That you will find in the interactive options of service data.  After saving this service please also run the transaction SITSPMON -> Templates and Mimes -> go to "Invalidate cache" and select System wide/Application server.
    Hope it helps,
    Christine

  • TPETRAN - error starting transaction" gwerrno(402017)

    I'm making a TPCALL(TOUPPER, TypedString, 0) to tuxedo through WTC on WebLogicServer8.1.
    Below is the error from ULOG on Tuxedo side.
    LIBGW_CAT:1029: ERROR: Service request not forwarded to remote site:"TPETRAN -
    error starting transaction" gwerrno(402017)
    Error on WebLogic Server side:
    tperrno encountered: TPETRAN(14):0:0:Unknown(17259):QMNONE(0):0
    Both WLS8.1 and Tuxedo are on the same BOX.
    CONFIGURATION Info:
    DMCONFIG.UBB
    *DM_LOCAL_DOMAINS
    DEFAULT:
    DOM1 GWGRP = CHEVELLE_GRP
    TYPE = TDOMAIN
    DOMAINID = "oonst1_domain"
    DMTLOGDEV = "/apptest/obsoon/oonst1/bin/DMTLOG"
    DMTLOGNAME= "DMTLG_DOM1"
    *DM_REMOTE_DOMAINS
    RDOM5 TYPE = TDOMAIN
    DOMAINID = "websvc1"
    *DM_TDOMAIN
    DOM1 NWADDR = "\\localhost:19217"
    RDOM5 NWADDR = "\\localhost:7004"
    *DM_LOCAL_SERVICES
    TOUPPER
    CONFIG.XML on WLS8.1
    <WTCServer Name="WTCsimpapp" Targets="ObsoonServer">
    <WTCLocalTuxDom AccessPoint="MyLclAccessPt"
    AccessPointId="websvc1" NWAddr="//local:7004" Name="myLoclTuxDom"/>
    <WTCRemoteTuxDom AccessPoint="MyRemoteAccessPt"
    AccessPointId="oonst1_domain"
    LocalAccessPoint="MyLclAccessPt"
    NWAddr="//localhost:19217" Name="myRTuxDom"/>
    <WTCImport LocalAccessPoint="MyLclAccessPt"
    Name="myImportedResources"
    RemoteAccessPointList="MyRemoteAccessPt" ResourceName="TOUPPER"/>
    <WTCExport EJBName="tuxedo.services.OBSStructRetrievalHome"
    LocalAccessPoint="MyLclAccessPt" Name="myExportedResources" ResourceName="changeCase"/>
    <WTCtBridgeGlobal JmsFactory="weblogic.jms.ConnectionFactory"
    JndiFactory="weblogic.jndi.WLInitialContextFactory"
    Name="tBridge" TuxFactory="tuxedo.services.TuxedoConnection" WlsErrorDestination="weblogic.jms.tBerrorQueue"/>
    <WTCtBridgeRedirect Direction="JmsQ2TuxS" Name="JMSQ2TuxS"
    ReplyQ="weblogic.jms.Tux2JmsQueue"
    SourceName="weblogic.jms.Jms2TuxQueue"
    TargetAccessPoint="MyRemoteAccessPt" TargetName="TOUPPER"/>
    </WTCServer>
    Looking forward to ur response!
    Thanks * Regards
    Jay

    Please see my responses in the WTC newsgroup.
    Regards,
    Todd

  • Bea.jolt.pool.ServiceException: TPETRAN - error starting transaction

    I am ctreating the transaction object and try to operate PoolManager.call()
    with the transaction object as parameter. The call fails with the following
    exception:
    bea.jolt.pool.ServiceException: TPETRAN - error starting transaction
    at bea.jolt.pool.Connection.call(Connection.java, Compiled Code)
    at bea.jolt.pool.SessionPool.call(SessionPool.java:412)
    at bea.jolt.pool.SessionPool.call(SessionPool.java:211)
    at
    mcs.connectjolt.bandetails.BanDetailesDAO.getBanDetailes(BanDetailesDAO.java
    :87)
    at
    mcs.connectjolt.bandetails.BanDetailsBean.getBanDetailes(BanDetailsBean.java
    :68)
    at
    mcs.connectjolt.bandetails.BanDetailsBeanEOImpl.getBanDetailes(BanDetailsBea
    nEOImpl.java:105)
    at
    mcs.connectjolt.bandetails.BanDetailsBeanEOImpl_WLSkel.invoke(BanDetailsBean
    EOImpl_WLSkel.java:83)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java, Compiled Code)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java:69)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
    Code)
    My configuration: WebLogic 5.1, Jolt 1.2, Tuxedo 6.4.

    I am ctreating the transaction object and try to operate PoolManager.call()
    with the transaction object as parameter. The call fails with the following
    exception:
    bea.jolt.pool.ServiceException: TPETRAN - error starting transaction
    at bea.jolt.pool.Connection.call(Connection.java, Compiled Code)
    at bea.jolt.pool.SessionPool.call(SessionPool.java:412)
    at bea.jolt.pool.SessionPool.call(SessionPool.java:211)
    at
    mcs.connectjolt.bandetails.BanDetailesDAO.getBanDetailes(BanDetailesDAO.java
    :87)
    at
    mcs.connectjolt.bandetails.BanDetailsBean.getBanDetailes(BanDetailsBean.java
    :68)
    at
    mcs.connectjolt.bandetails.BanDetailsBeanEOImpl.getBanDetailes(BanDetailsBea
    nEOImpl.java:105)
    at
    mcs.connectjolt.bandetails.BanDetailsBeanEOImpl_WLSkel.invoke(BanDetailsBean
    EOImpl_WLSkel.java:83)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java, Compiled Code)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java:69)
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
    Code)
    My configuration: WebLogic 5.1, Jolt 1.2, Tuxedo 6.4.

  • Multiple Start Transactions

    This may be a long shot, but I'm aware that you can set your start transaction in the first screen (Extras >> Set start transaction) so that when you log on you are automatically in the required screen instead of the SAP Easy Access screen.
    But if there are 2 transactions you always use, is it possible to get SAP to load up one transaction and open up a new session in another transaction as soon as you log on?
    Any feedback would be greatly appreciated.

    Hi Kellis
    We cant have multiple sessions to be triggered during login. I would suggest you to set one of the transation as the 'Start transaction' and add the other one to your Favourites (right click on favouties icon, choose Insert transaction).
    Once you login to the start transaction, press Ctrl+ and a new session will be created. Double clcik on the other tcode in favourites.
    Sorry, couldnt think of any other options with less keystrokes and clicks
    Best Regards
    Sathees Gopalan

  • BTM SLA Alert - Completed Started Transactions

    I'm looking for a way to setup an BTM Alert when Completed Transactions is less than Started Transactions.
    SLA Alerts provide instrumentation for both Completed and Started transactions/as well as rates, but there does not appear to be a way to compare Completed vs Started.
    Does anyone know of a way to do this?
    thanks!
    -Javier

    When connect to the BTM main console as Administrator you can navigate to Explorer ---> SLA Policies
    Next, from the 'Create' menu you can create a SLA Policy --> Transaction SLA
    Is that what you are looking for?
    Regards
    Rob
    http://oemgc.wordpress.com

  • ESS - Cannot Start Transaction

    Hi,
    After maintaining infotyp 0105 and subtyp 0001, I'm getting and error message as folows (after clicking on almost all the functions, e.g. Personal Data):
    Cannot Start Transaction
    The Internet Transaction Server could not start the Transaction "pzxx" because of the following error. You are not authorized to use Transaction PZXX.
    Appreciate if someone could help me on this. Thank you.
    Best Regards,
    Hapizorr Rozi Alias

    Dear Srinivasa,
    I found your blog "What is UDDI?". I liked!
    I have a question about UDDI.
    I had configured the UDDI on server host XXXXX and can access it though
    the links (the UDDI works):
    - http://<host>:50100/uddiclient
    - http://<host>:50100/uddi/api/inquiry
    - http://<host>:50100/uddi/api/publish
    But when I try to enter virtual URL http://uddi.<domain>.net/publish I
    receive the message error "HTTP 404 - File not found Internet
    Information Services"
    Could you help me?
    Thanks a lot!
    Luciana
    Brazil

  • Cannot start transaction SMEN

    Hi ,
       When we try to execute any transaction after loggging in to our system we are getting a message "    Cannot start transaction SMEN".Any idea to what may be wrong .Please help.
    Max

    This is normal. SMEN cannot be started by giving transaction code in CMD field. When you execute it you will a pop up with message. There is question mark icon in the pop up which explains the same. Only if you check it !!
    Regards.
    Ruchit.

  • SRM portal: Cannot start transaction for shopping cart -wizard

    Hello All,
    User is not able to access the Shopping cart-wizard in EB portal, user has updated the internet  explorer to internet explorer V7 still he is not able to access.
    When user clicks on Shopping cart-wizard he gets the following error "Cannot Start Transaction**
    *The internet transaction server could not start the transaction "BBPSC02"* .
    Please let me know how can I resolve this issue.
    Have checked the attributes for this user it is maintained to access portal, all roles are properly assigned.
    Thanks.

    Hello,
    Service BBPSC02 is only not started from portal or you cannot start it as well when using the ITS link?
    Are you able to test the service via transaction SICF?
    Regards,
    Ricardo

  • Start forms and start transaction?

    Hi friends,
    I am new to workflow, and can anybody just explain me the concept of start transaction and start forms in the basic data of the workflow definition?
    Thank u,
    PoOrAnI

    hi  Poorani Davidraj    .
    start form mean , whenever form( eg : absence form ) as has been accessed workflow will be triggered .
    forms can be created on u r own .
    steps for creating forms.
    1) define a wf container element withe a structure for which u want to create  eg: ekko.
    2) goto basic data > start forms complete the form wizard .
    3) when ever the form will be accessed   , wf will be triggered .

  • IE HTTP Plugin - no response after click on "Start Transaction"

    Hello,
    I try to record some portal performance traces with the E2E Trace Tool and IE HTTP Plugin. I'm able to start the plugin (using latest version) but when I click on "Start Transaction" the IE or the plugin window is no longer responding to further input. The process is also busy with 100 %.
    Looks like a classic app crash.
    Has someony successfully used the IE Plugin for E2E trace and a solution for my problem?
    Best regards,
    Frank

    Hi Frank,
    I am also facing same issue. Did you got solution for this issue? I tried HTTP plugin with SP18 from my laptop but even that is also not working.
    Do we need to start this plug in from remote terminals (like Jump server so there wont be firewall in-between SAP server and remote desktop). Please let me know about this.
    Thanks

Maybe you are looking for

  • Cannot open iTunes

    When I try to open iTunes, it immediately freezes. I have uninstalled it and reinstalled it several times.

  • Error when filling setup table

    Hi! I'm trying to fill the set-up table in R3 for SD Billing Documents. SBIW (Display IMG (Settings for App Specific Datasources --> Logistics --> Managing Extract Structures --> Initialization --> Filling in the Setup Table --> App. specific setup o

  • Advice on IMPORTING wedding footage (DV TAPE) 5~6 hours.

    Borrowed a friends camera and shot some wedding stuff, (ours) and wanted opinion on how to do this. Is it best to import as one full TAPE (1 hour) and let it run and then have 5, 6 large files? What is the best way? If I import to iMovie instead of F

  • IPhoto albums vs events

    I am having trouble understanding what to use the events for. Lets say the family traveled the East Coast last year and went to around 4 different states. Do I make an album for the trip and events for each state or activity? How does it work? What s

  • Can I update memory flash on mac book pro 15.4 inches from 256 to 500 gbs

    can I update memory flash on mac book pro 15.4 inches from 256 to 500 gb