One Unix process and multiple Oracle sessions

Hi All,
When I checked one particular Unix process, I have seen that in the database there are 3 different Oracle sessions spanning days between them. Can you please tell me how this is possible.
Regards
Satish

Hi Yas,
The query I ran is tghe following.
SELECT Substr(a.username,1,15) "Username",
a.osuser "OS User",
a.sid "Session ID",
a.serial# "Serial No",
d.spid "Process ID",
a.lockwait "LockWait",
a.status "Status",
Trunc(b.value/1024) "PGA (Kb)",
Trunc(e.value/1024) "UGA (Kb)",
a.module "Module",
Substr(a.machine,1,15) "Machine",
a.program "Program",
Substr(To_Char(a.logon_Time,'DD-Mon-YYYY HH24:MI:SS'),1,20) "Time"
FROM v$session a,
v$sesstat b,
v$statname c,
v$process d,
v$sesstat e,
v$statname f
WHERE d.spid=29789 and
a.paddr = d.addr
AND a.sid = b.sid
AND b.statistic# = c.statistic#
AND c.name = 'session pga memory'
AND a.sid = e.sid
AND e.statistic# = f.statistic#
AND f.name = 'session uga memory'
ORDER BY 1,2;
I passed spid to it.
Regards
Satish

Similar Messages

  • One Java-Process over multiple CPUs on Solaris 8

    Hello,
    sorry if this question is trivial. I have a java server software (BEA Weblogic) and use it on a multiple CPU machine (e.g. 4 CPUs) with Solaris 8. This Server runs as one system process and creates some threads. Are these threads spread over multiple CPUs or do they stick on the same CPU as their parent process.
    So the question is: Am I using the full power of my machine with the 4 CPUs when I'm only starting one of these software servers or do I have to start multiple instances for to use all the CPU power.
    I'm using JDK 1.3.1_07 an can make use of the alternate threading library "/usr/lib/lwp" on the solaris 8. This will activate the one-to-one threading for the JVM.
    Thanks and kind regards
    Falko

    Sound like you figured it out ;-)
    Keep in mind that you'll probably get better performance, depending on your application, by tuning the heap and the garbage collector. We run on four processor machines, but I could make good use of all four processors until I adjusted the heap size, old/new heap rations, turn on the concurrent gc, and increased the RMI GC interval.
    Good luck,
    Michael

  • I have one apple ID and multiple family members share this with their devices.  How do we keep pics and messages separate?

    I have one apple ID and multiple family members share this with their individual devices.  How do we keep pics and messages separate for each device?

    For messages
    MacMost Now 653: Setting Up Multiple iOS Devices For Messages and FaceTime
    For other issue:
    How to use multiple iPods, iPads, or iPhones with one computer
    What is the best way to manage multiple...: Apple Support Communities

  • One premium account and multiple Skype HD devices

    Will one Premium account and multiple non premium HD accounts work for video calling? Basically the idea is 10 HD skype devices, the set top boxes connected to tvs will dial into one Premium Mac or PC account for multiple video conferencing.

    Yes, one user needs to have a Group Video Calling subscription.
    Unfortunately, not all devices support Group Video calling (TV's for example, do not).
    Please see our website for more information: http://www.skype.com/en/features/group-video-chat/.

  • HT4137 iCloud setup with one Apple ID and multiple devices

    iCloud setup with one Apple ID and multiple devices

    What, exactly, are you trying to do? You can use the same iCloud account on as many devices as you want, as long as you don't turn on iTunes Match. Once you turn on Match, you're limited to 10 devices total.
    Is this what you want to do...same iCloud account, but different iTunes/App store accounts on each device? If so, you can do that also.

  • One service order and multiple services  ??????????

    Hello All
    I am working on CRM 5.0 service module
    Can I create a service order with more than one service I mean one document but contains multiple services and assign each service to a person responsible? And how?
    Thanks in advance
    Regards
    Jacopo Françoise

    You can create one service order with multiple service products,
    the document will have both header and item level in both u need to assign the partner processing (emp responsible including) if there r different line items with different emp responsible u can satisfy ur issue.
    abt theheader and item level some information:
    understand what is transaction type? and the structure of the Transaction type.
    The Transaction type determines the characteristics and attributes( what is the document category ,which Organizational data profile is allowed, which status profile is allowed, which action profile is allowed, which date profile is allowed, which Subject profile is allowed,which text determination profile is allowed, which partner determination profile is allowed and the number ranges for that particular transaction) of a particular transaction.
    For example it says whethere the corresponding transaction is used for Lead, Opportunity or Sales order.
    When it comes to Structure of a Transaction
    it contains Header level data, Item level data and Schedule line data.
    So Header level data is controlled by Transaction type.
    Next comes Item level data The Item level data is controlled by Item category.
    The Item category determines the characteristics and attributes of a line Item.
    for example( it says whether the item is relevant for pricing or not, whether the item is relevant for billing or not, whether the item is relevant for shipping or not etc.)
    The Item category will be determined automatically by the system at the run time depending upon the following key factors
    Sales doc typeItem categoryHigher level Item+Item Usage
    Hope this will help you in understanding Header level data and Item level data of a transaction.
    Reward me points if helpful.
    Regards
    Manohar

  • Finding PeopleSoft Process Instance using Oracle session info

    Hi:
    I'm on Oracle 10.2.0.3 and PeopleSoft Financials 8.9.
    Does anybody know how to get PeopleSoft Process Instance using v$session, v$process and other info?
    TIA.

    Hey Sybrand,
    Thanks for your reply.
    I am actually a dba trying to help PeopleSoft developers. The question is on the edge between Oracle & PeopleSoft. And yes, I took a close look at v$session. It shows Oracle Session info while Process Instance is a PeopleSoft identifier sitting in PSPRCSRQST table. I intuitively feel that there should be a database-level connection between the two.
    All ideas appreciated.
    I hope they will show PI in v$session in subsequent versions of Oracle...

  • Multiple Oracle home and multiple Oracle database versions on same server?

    Hi all,
    I want to setup a test environment on single Windows XP server with an instance
    of Oracle 10g and Oracle 11g. How can I install both versions without problems?
    Thanks

    Hi,
    I am facing a problem on the same..
    below is the link to my thread.
    Multiple Oracle Home in Windows
    Please reply me how to solve this problem
    Thanks
    Bhavik Fuletra

  • Multiple oracle session with one select

    Hi,
    When i run simple select statment oracle OPENS 5 different sessions and each session run same select .
    any body know what is wrong with it ,is there any parameter problem.
    HERE is a programe :
    ORACLE.EXE (P000)
    ORACLE.EXE (P001)
    ORACLE.EXE (P002)
    ORACLE.EXE (P003)
    ORACLE.EXE (P004)

    Basically my problem is that i am running an INSERT statement based on a SELECT statement on different tables.
    Now the problem is at times Oracle stops responding and my application hangs.
    I cannot find any other clue than the parrallel execution of INSERT statement by ORACLE.
    The reason i am considering this as an issue is when i check the status of my table on which i am running INSERT statement, they are locked.
    Below is sample peusdocode of my task.
    For each file
    begin
    open oracle connection
    read data from file using sql loader;
    insert into my tables based on select; ///// here after reading 1 or 2 files oracle hangs
    close oracle connection;
    end

  • Relinking Oracle binaries and multiple Oracle Homes

    Hello,
    My question is related to relinking Oracle binaries in the following scenario:
    As part of larger migration project we are moving all the databases from one server to another. Both on old and on new server the OS is the same: HP-UX 11.23i. There are 5 databases on the source server, each with it's own Oracle Home (and Oracle binaries). All Oracle binaries for all the databases are version 10.2.0.3.
    On the new server we have some of the migrated databases already in production. Now our DBA wants to move another database and, because for each database binaries are moved also from source to destination server, he has to relink the binaries on target server. Is it required to stop all the databases on the target server to perform the relink for this one DB, even if they all have separate Oracle Homes (binaries)?
    Thanks for your answers
    Maciej

    883072 wrote:
    Hello,
    My question is related to relinking Oracle binaries in the following scenario:
    As part of larger migration project we are moving all the databases from one server to another. Both on old and on new server the OS is the same: HP-UX 11.23i. There are 5 databases on the source server, each with it's own Oracle Home (and Oracle binaries). All Oracle binaries for all the databases are version 10.2.0.3.
    On the new server we have some of the migrated databases already in production. Now our DBA wants to move another database and, because for each database binaries are moved also from source to destination server, he has to relink the binaries on target server. Is it required to stop all the databases on the target server to perform the relink for this one DB, even if they all have separate Oracle Homes (binaries)?
    NO!

  • OraOps.dll and Multiple Oracle Homes

    Hi All,
    I am writing a simple Windows Forms client app that is trying to connect to an Oracle 8.1.7 database. I am having a problem connecting with ODP.NET. The error I get is as follows:
    "An unhandled exception of type 'System.DllNotFoundException' occurred in oracle.dataaccess.dll
    Additional information: Unable to load DLL (OraOps.dll)."
    I have gone through these forums and tried everything that the various people suggested:
    1) I have made sure that process can access the OraOps.dll file (In my program I opened the dll and read a couple of bytes out of it.)
    2) I have installed the 8.1 client into a seperate home from ODP.NET (8 client and OraOLEDB is in D:\Oracle\Ora81, 9 client and ODP.NET is in D:\Oracle\Ora92) I intalled the 8 client first, then the 9 client with ODP.NET.
    3) I have used the Oracle Home Selector to ensure that the Oracle 9 home is current.
    4) I have checked the path that the process is using to ensure that the Oracle 9 home is first in the path, which it is.
    Can anyone think of any other things that might cause this problem? I'm out of ideas. :-(
    Jeremy

    Absolutely...make sure that you use OUI to install the additional Oracle_Homes so that the inventory would be updated (instead of copying over from the existing OHs).
    We have a cluster, wherein we have about 6 different ORACLE_HOMEs (whether it's good idea to have so many OHs is a totally different question though)...and it works fine and it well supported by Oracle. As such, you can both NON-RAC and RAC OHs as well, if you prefer.
    Thanks
    Chandra

  • AIX and multiple oracle homes

    Currently we are running AIX 4.3.3 and Oracle 8.06 with about 13 instances on one box. We need to upgrade one of the 13 instances to Oracle 8.1.7.2. Is it possible to have two different versions of Oracle residing on one server with 12 databases on version 8.06 and one on 8.1.7.2???

    Absolutely...make sure that you use OUI to install the additional Oracle_Homes so that the inventory would be updated (instead of copying over from the existing OHs).
    We have a cluster, wherein we have about 6 different ORACLE_HOMEs (whether it's good idea to have so many OHs is a totally different question though)...and it works fine and it well supported by Oracle. As such, you can both NON-RAC and RAC OHs as well, if you prefer.
    Thanks
    Chandra

  • One SSIS pacakge and Multiple Jobs

     Hello,
    Project :  Creating One parameteried SSIS package and running it thorugh Multiple jobs. Based on a varaible value, source and destanation tables are read into SSIS Pacakge. Metadata across all the tables are same.
    1Q : want to know limitation on number Jobs we can create on one SSIS pacakge.
    2Q : Pros and Cons.
    3Q: Will this be a good idea.
    Please share your ideas....
    Thank you

    Are you talking about the SQL Server Agent job? Same package running multiple times in a given point on time?
    Since the Agent runs them asynchronously you may run into locking issues very soon (metadata the same?).
    So the verdict is not good based on my impression so far, not advocated.
    Arthur My Blog

  • Pulseaudio and multiple X11 sessions

    I wanted to create a second X11 server for a game that I can't tab out of.  I'm using gnome-shell.  Pulseaudio only plays audio when on display :0, anyway for it to play audio no matter what term/display you are on?
    Thanks

    Oh, right in the face. I have wasted so much time, trying to get pulseaudio even close to outputting sound from different users over different X sessions at the same time. This gets gradually worse, the closer you come to trying to pull that off over HDMI.
    You should read this explanation: http://lists.freedesktop.org/archives/p … 12094.html
    It will tell you, how your use case is too uncommon to be within the scope of PA. It will tell you, how annoying it would be, if more than one user could output sound at the same time and how wrong people are, when they misinterpret the term "multi-user". I could, but will not, rage all night about how people really think, audio and video can be compared in a meaningful way. *makes weird noises*
    However, reading the post, you will notice, that the guy talks about running pulseaudio system-wide. This should be your query on your favorite crawler. I have stopped using PA, because it brought more abstraction for no effects.

  • What are the process and updations in session and calltransaction?flow

    hi
    experts
    can u help me plzzzzzzzzzzzzzzzzzzzzzz
    for this

    See the Sample BDc Code for Vendor Master Upload:
    Look at the Include BDCRECX1 for Seesion and Call Transaction types:
    REPORT zmm_vendor_master_upload
    NO STANDARD PAGE HEADING
    LINE-SIZE 255.
    ABAP Name : ZMM_VENDOR_MASTER_UPLOAD
    Description : This Program is used to Upload the Vendor Master.
    Modification Log:
    Date Programmer Correction Description
    Standard Include for Selection Screen
    INCLUDE bdcrecx1.
    Internal Table for Upload Data
    DATA: BEGIN OF i_vendor OCCURS 0,
    bukrs(004), " Company Code
    ekorg(004), " Purchase Orgn
    ktokk(004), " Account Group
    Address Screen
    anred(015), " Title
    name1(035), " Name1
    sortl(010), " Sort Field
    name2(035), " Name2
    name3(035), " Contact Person1
    name4(035), " Contact Person 2
    stras(035), " Street
    pfach(010), " PO Box
    ort01(035), " City
    pstlz(010), " Postal Code
    land1(003), " Country
    spras(002), " Language
    telf1(016), " Telephone No
    telfx(031), " Fax Number
    lfurl(132), " URL-Mail Id
    Material Group Characteristics
    klart(003), " Class Type '010'
    class(018), " Class 'Vendor'
    mname_01(030), " Characteristic
    mname_02(030), " Characteristic
    mname_03(030), " Characteristic
    mwert_01(030), " Charct.Value
    mwert_02(030), " Charct.Value
    mwert_03(030), " Charct.Value
    Control Data
    emnfr(010), " Manufact.Part No
    Bank Details
    banks_01(003), " Country of Bank1
    banks_02(003), " Country of Bank2
    bankl_01(015), " Bank Key of 1
    bankl_02(015), " Bank Key of 2
    bankn_01(018), " Account No Bank1
    bankn_02(018), " Account No Bank2
    Accounting Info
    akont(010), " Reconcillation Account
    zuawa(003), " Sort Key
    fdgrv(010), " Cash Management Group
    Payment Transactions
    zterm(004), " Payment terms
    reprf(001), " Check Double Inv.
    zwels(010), " Payment Method
    hbkid(005), " House Bank
    xpore(001), " Individ.Payment
    Correspondence
    mahns(001), " Dunning Level
    xausz(001), " Account Statement
    Withholding Tax Details
    qland(003), " Withholding Tax Country
    witht_01(002), " WH tax Type
    wt_withcd(002), " WH Tax Code
    wt_subjct(001), " Indicator:WH Tax
    Purchasing Data
    waers(005), " Currency
    zterm1(004), " Payment Terms
    END OF i_vendor.
    Data Variables & Constants
    CONSTANTS : c_x VALUE 'X'. " Flag
    Paramters
    PARAMETERS: p_file LIKE ibipparms-path. " Filename
    At selection-screen on Value Request for file Name
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Get the F4 Values for the File
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    IMPORTING
    file_name = p_file.
    Start of Selection
    START-OF-SELECTION.
    Open the BDC Session
    PERFORM open_group.
    Upload the File into internal Table
    CALL FUNCTION 'UPLOAD'
    EXPORTING
    filename = p_file
    filetype = 'DAT'
    TABLES
    data_tab = i_vendor
    EXCEPTIONS
    conversion_error = 1
    invalid_table_width = 2
    invalid_type = 3
    no_batch = 4
    unknown_error = 5
    gui_refuse_filetransfer = 6
    OTHERS = 7.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Upload the Data from Internal Table
    LOOP AT i_vendor.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0100'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-KTOKK'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RF02K-BUKRS'
    i_vendor-bukrs.
    PERFORM bdc_field USING 'RF02K-EKORG'
    i_vendor-ekorg.
    PERFORM bdc_field USING 'RF02K-KTOKK'
    i_vendor-ktokk.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-SPRAS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=KLAS'.
    PERFORM bdc_field USING 'LFA1-ANRED'
    i_vendor-anred.
    PERFORM bdc_field USING 'LFA1-NAME1'
    i_vendor-name1.
    PERFORM bdc_field USING 'LFA1-SORTL'
    i_vendor-sortl.
    PERFORM bdc_field USING 'LFA1-NAME2'
    i_vendor-name2.
    PERFORM bdc_field USING 'LFA1-NAME3'
    i_vendor-name3.
    PERFORM bdc_field USING 'LFA1-NAME4'
    i_vendor-name4.
    PERFORM bdc_field USING 'LFA1-STRAS'
    i_vendor-stras.
    PERFORM bdc_field USING 'LFA1-PFACH'
    i_vendor-pfach.
    PERFORM bdc_field USING 'LFA1-ORT01'
    i_vendor-ort01.
    PERFORM bdc_field USING 'LFA1-PSTLZ'
    i_vendor-pstlz.
    PERFORM bdc_field USING 'LFA1-LAND1'
    i_vendor-land1.
    PERFORM bdc_field USING 'LFA1-SPRAS'
    i_vendor-spras.
    PERFORM bdc_field USING 'LFA1-TELF1'
    i_vendor-telf1.
    PERFORM bdc_field USING 'LFA1-TELFX'
    i_vendor-telfx.
    PERFORM bdc_field USING 'LFA1-LFURL'
    i_vendor-lfurl.
    PERFORM bdc_dynpro USING 'SAPLCLCA' '0602'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RMCLF-KLART'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENTE'.
    PERFORM bdc_field USING 'RMCLF-KLART'
    '010'. "i_vendor-klart.
    PERFORM bdc_dynpro USING 'SAPLCLFM' '0500'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RMCLF-CLASS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=AUSW'.
    PERFORM bdc_field USING 'RMCLF-CLASS(01)'
    'Vendor'."i_vendor-class.
    PERFORM bdc_dynpro USING 'SAPLCTMS' '0109'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RCTMS-MWERT(03)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=BACK'.
    PERFORM bdc_field USING 'RCTMS-MNAME(01)'
    'MATERIALGROUP'." i_vendor-mname_01.
    PERFORM bdc_field USING 'RCTMS-MNAME(02)'
    'MATERIALGROUP'." i_vendor-mname_02.
    PERFORM bdc_field USING 'RCTMS-MNAME(03)'
    'MATERIALGROUP'." i_vendor-mname_03.
    PERFORM bdc_field USING 'RCTMS-MWERT(01)'
    i_vendor-mwert_01.
    PERFORM bdc_field USING 'RCTMS-MWERT(02)'
    i_vendor-mwert_02.
    PERFORM bdc_field USING 'RCTMS-MWERT(03)'
    i_vendor-mwert_03.
    PERFORM bdc_dynpro USING 'SAPLCLFM' '0500'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RMCLF-CLASS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=ENDE'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-ANRED'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0120'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFA1-EMNFR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFA1-EMNFR'
    i_vendor-emnfr.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKN(02)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFBK-BANKS(01)'
    i_vendor-banks_01.
    PERFORM bdc_field USING 'LFBK-BANKS(02)'
    i_vendor-banks_02.
    PERFORM bdc_field USING 'LFBK-BANKL(01)'
    i_vendor-bankl_01.
    PERFORM bdc_field USING 'LFBK-BANKL(02)'
    i_vendor-bankl_02.
    PERFORM bdc_field USING 'LFBK-BANKN(01)'
    i_vendor-bankn_01.
    PERFORM bdc_field USING 'LFBK-BANKN(02)'
    i_vendor-bankn_02.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0130'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBK-BANKS(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0210'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-FDGRV'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFB1-AKONT'
    i_vendor-akont.
    PERFORM bdc_field USING 'LFB1-ZUAWA'
    i_vendor-zuawa.
    PERFORM bdc_field USING 'LFB1-FDGRV'
    i_vendor-fdgrv.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0215'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB1-XPORE'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFB1-ZTERM'
    i_vendor-zterm.
    PERFORM bdc_field USING 'LFB1-REPRF'
    c_x. "i_vendor-reprf.
    PERFORM bdc_field USING 'LFB1-ZWELS'
    i_vendor-zwels.
    PERFORM bdc_field USING 'LFB1-HBKID'
    i_vendor-hbkid.
    PERFORM bdc_field USING 'LFB1-XPORE'
    c_x. "i_vendor-xpore.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0220'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFB5-MAHNS'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFB5-MAHNS'
    i_vendor-mahns.
    PERFORM bdc_field USING 'LFB1-XAUSZ'
    i_vendor-xausz.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0610'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFBW-WT_SUBJCT(01)'.
    PERFORM bdc_field USING 'LFB1-QLAND'
    i_vendor-qland.
    PERFORM bdc_field USING 'LFBW-WITHT(01)'
    i_vendor-witht_01.
    PERFORM bdc_field USING 'LFBW-WT_WITHCD(01)'
    i_vendor-wt_withcd.
    PERFORM bdc_field USING 'LFBW-WT_SUBJCT(01)'
    c_x.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0310'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'LFM1-ZTERM'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_field USING 'LFM1-WAERS'
    i_vendor-waers.
    PERFORM bdc_field USING 'LFM1-ZTERM'
    i_vendor-zterm1.
    PERFORM bdc_dynpro USING 'SAPMF02K' '0320'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RF02K-LIFNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=VW'.
    PERFORM bdc_dynpro USING 'SAPLSPO1' '0300'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=YES'.
    Call the Transaction
    PERFORM bdc_transaction USING 'XK01'.
    ENDLOOP.
    Close the BDc Session
    PERFORM close_group.

Maybe you are looking for

  • E-Commerce create order runtime error because of user-exit

    Hi all, we face the following problem in our e-Commerce 5.0 R3 B2B application: In our R3 system, we have implemented the userexit_save_document_prepare when creating sales order (VA01) because we do not want an order to be created (saving is cancell

  • Active X and script

    This may sound like the rookie that I am but is there any way to set up a flash insert in Dreamweaver that eliminates the viewer from accepting active x in their browser. Great that one can use Flash inserts but not so good that the viewer may not ac

  • Error: NoClassDeffound: COM/Nombas/jse/lsdk/jse

    On Sun Solaris 2.7, with java1.2.2_05a, on running aparticular application, i am getting "NoClassDef Found Error: COM/Nombas/jse/lsdk/jse". Any idea that whether it's some java error or I need some Sun Patches??

  • Oracle Feedback

    Is there a way to feedback broken links or web site issues with oracle without purchasing a support account with oracle? i.e. Latest Oracle's Java Developer Newsletter has broken links to email addresses instead of articles...

  • I see a message in notification center but can't read it in the message app because it is not here.

    Just "received" a message from a friend but i can't see it in the message application. There is the red "1" digit upon the message icon and i see the message in the notification center so i don't understand how to solve the problem. Cheers.