Generating Trace file for ODI Sessions

ODI Gurus
am new to ODI, for one of our integration project am using ODI for transforming data from Source to Target Instance.
Oracle Database is installed on both Source and Target instances. Is there a way to generate Database Trace files for ODI sessions triggered.
If yes can you provide the steps to enable/disable database trace for ODI sessions.
Regards
Uma Shankar

Hi Uma Shankar,
My assumptions:
1.) You want to selectively enable Oracle tracing when only the ODI scenarios are executed and not otherwise.
If that is the case then you will have to add some external steps comprising of OS commands and variables that will control if those steps are to be executed or not. These steps will invoke the OS commands to start Oracle tracing.
2.) You know the steps to create a package and know how to use Interfaces and other ODI utilities in the flow of the package.
3.) You know how to create and execute scenarios
Steps to Selectively enable tracing.
1.) Add a variable named V_START_TRACE to the package. This variable will be passed a value from scenario which will determine if you want to enable to trace or not. This variable type is EVALUATE and can have 2 values - TRUE or FALSE. You will have to check for the condition and depending on the condition you will take a path forward.
2.) Add 2 OS commands to the package - OS_START_TRACE and OS_END_TRACE
3.) Create 2 shell scripts (or bat files) - odi_start_trace.sh and odi_end_trace.sh with the following commands:
odi_start_trace.sh :-
sqlplus session - ALTER SYSTEM SET trace_enabled = TRUE;
odi_end_trace.sh :-
sqlplus session - ALTER SYSTEM SET trace_enabled = FALSE;
You need to invoke SQLPLUS sessions from the above shell scripts to enable/disable the oracle level tracing.
4.) Add the above shell scripts to the OS commands created in Step 2.
5.) Join the steps in the following order in the package :
V_START_TRACE (OK) ->OS_START_TRACE (OK) -> <<+Your Actual Integration Code+>>(OK) -> OS_END_TRACE
V_START_TRACE (KO) -> <<+Your Actual Integration Code+>>(OK)
The above KO variable statement doesnt start the trace if the evaluated value doesnt = TRUE. So this will let you do a selective trace.
6.) Create the scenario from the package and execute the scenario by passing it a value "TRUE" for variable V_START_TRACE.
Check the startscen.sh syntax, something like:
*>startscen.sh ... "GLOBAL.V_START_TRACE=TRUE"*
The above is a general solution for enabling trace for any RDBMS
If you need any more information, feel free to ping back.

Similar Messages

  • How to generate trace file from different session?

    I have a cron job which starts several Oracle stored proc (Oracle 9.2). I want to generate a trace file when the job is running. I know I can use this alter session command before I start this job. But this is my session not the job session. So this command won't generate trace file for job's session.
    ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 8';
    Appreciate any ideas.
    Thanks.
    S.

    Easiest way is to use database control/grid control - click trace session button!
    The 'old fashioned way is'
    begin
    DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION(SID,serial#,TRUE);
    end;
    find sid and serial# in a select from v$session
    There are other ways too but this is probably the easiest.
    You'll need appropriate privileges to run this .
    Cheers,
    Harry

  • Generate trace file for a certain transaction

    Experts,
    I am trying to generate a trace file for a certain transaction for a period of time.
    I used tx st03 > transaction profile > double click on transaction and am able to get a list for the day. How do I set the date to generate for the month for example?
    Thanks,
    Iqbal

    Since you post the question in security forum, not peformance or platform forum, I guess are looking for system auditing function.
    then SM19/SM20 might be the choice, you can read through
    http://help.sap.com/saphelp_nw70/helpdata/EN/c7/69bcb7f36611d3a6510000e835363f/frameset.htm

  • Generate trace file for a certain transaction by dates

    Experts,
    I am trying to generate a trace file for a certain transaction for a period of time.
    I used tx st03 > transaction profile > double click on transaction and am able to get a list for the day. How do I set the date to generate for the month for example?
    Thanks,
    Iqbal

    Hi Iqbal,
    In Tr. ST03 itself, you have three ranges. Day, Week and Month.
    Just select the month. Expand it. Select which month you want.
    Then check Transaction Profile. It should give you the details for the whole month.
    Cheers....,
    Raghu

  • Find out TRACE file of a session

    Hi,
    I'm generating trace file of a session (not the session where I'm login into) by the following command..
    EXEC DBMS_SUPPORT.start_trace(sid=>123, serial=>1234, waits=>TRUE, binds=>FALSE);
    Now, after start tracing I cannot find out the trace file which is generated for SID=123.
    Can you help me to find out the trace file? I mean, is there anyway to find out the trace file name for SID=123?
    Thanks,
    Anjan

    hi,
    Before this user must have sysdba privileges
    SQL> ORADEBUG SETMYPID; -- Debug current session.
    SQL> ORADEBUG SETOSPID 678; -- Debug session with the specified OS process
    SQL > ORADEBUG SETORAPID 6756323; -- Debug session with the specified Oracle process ID.
    SQL> ORADEBUG TRACEFILE_NAME; -- Display the current trace file.
    - Pavan Kumar N

  • Generate trace file with required name

    hi all,
    as a sys user i want to trace a user session. so i am using
    SQL> EXEC DBMS_SYSTEM.set_sql_trace_in_session(sid=>123, serial#=>1234, sql_trace=>TRUE);
    SQL> EXEC DBMS_SYSTEM.set_sql_trace_in_session(sid=>123, serial#=>1234, sql_trace=>FALSE);
    to trace. but this trace file is mixing with another trace files in udump.
    did some google and found that we can use ALTER SESSION SET TRACEFILE_IDENTIFIER = "MY_TEST_SESSION". but this will generate trace file for sys user account not for the desired user session. how we can define trace file name for desired user session trace.
    Please let me...
    thanks

    >but this trace file is mixing with another trace files in udump.
    above is NOT true for any *NIX Operating System.
    The trace file name will contain the OS ProcessID#
    is this application 3-tier/
    does application utilize connection pooling?
    It appears that you post frequently & reply/respond very infrequently.
    How do I ask a question on the forums?
    https://forums.oracle.com/message/9362002#9362002

  • Unable to find trace file for a particular sid

    Hi all,
    I have a oracle 9.2.0.6 on solaris platform.I have to use tkrpof for PT for a particular sid.But when i checked out the trace file for that particular sid, i am not able to find out the same.....
    SQL> select c.value || '\' || lower(d.value) || '_ora_' ||  to_char(a.spid, 'fm0
    0000') || '.trc' "TRACE FILE"
      2  from v$process a, v$session b, v$parameter c, v$parameter d where a.addr =
    b.paddr
      3  and b.audsid = userenv('sessionid') and c.name   = 'user_dump_dest'
      4  and d.name   = 'db_name';
    TRACE FILE
    /arch/dump/udump\icai_ora_02464.trc-rw-r----- 1 oracle dba 2526 Nov 9 04:27 icai12_ora_1314.trc
    -rw-r----- 1 oracle dba 2528 Nov 9 04:41 icai12_ora_1541.trc
    -rw-r----- 1 oracle dba 689 Nov 9 14:26 icai11_ora_14071.trc
    -rw-r----- 1 oracle dba 6414 Nov 9 23:56 icai12_ora_456.trc
    -rw-r----- 1 oracle dba 1427 Nov 10 12:02 icai11_ora_1867.trc
    -rw-r----- 1 oracle dba 613 Nov 10 12:02 icai12_ora_292.trc
    -rw-r----- 1 oracle dba 678 Nov 10 12:07 icai11_ora_2356.trc
    -rw-r----- 1 oracle dba 613 Nov 10 12:12 icai12_ora_490.trc
    -rw-r----- 1 oracle dba 626 Nov 10 12:12 icai11_ora_2275.trc
    -rw-r----- 1 oracle dba 613 Nov 10 12:12 icai12_ora_505.trc
    -rw-r----- 1 oracle dba 626 Nov 10 12:15 icai11_ora_2430.trc
    -rw-r----- 1 oracle dba 613 Nov 10 12:15 icai12_ora_286.trc
    -rw-r----- 1 oracle dba 625 Nov 10 12:42 icai11_ora_2378.trc
    -rw-r----- 1 oracle dba 625 Nov 10 12:45 icai11_ora_2549.trc
    -rw-r----- 1 oracle dba 625 Nov 10 12:46 icai11_ora_2514.trc
    -rw-r----- 1 oracle dba 626 Nov 10 12:48 icai11_ora_2626.trc
    -rw-r----- 1 oracle dba 731 Nov 10 12:49 icai11_ora_2322.trc
    -rw-r----- 1 oracle dba 1312 Nov 10 12:49 icai11_ora_2096.trc
    -rw-r----- 1 oracle dba 625 Nov 10 12:50 icai11_ora_2315.trc
    -rw-r----- 1 oracle dba 625 Nov 10 12:50 icai11_ora_1390.trc
    -rw-r----- 1 oracle dba 729 Nov 10 12:51 icai11_ora_1990.trc
    -rw-r----- 1 oracle dba 626 Nov 10 12:52 icai11_ora_2485.trc
    -rw-r----- 1 oracle dba 626 Nov 10 12:52 icai11_ora_2063.trc
    -rw-r----- 1 oracle dba 644 Nov 10 12:53 icai11_ora_2605.trc
    -rw-r----- 1 oracle dba 626 Nov 10 12:54 icai11_ora_2299.trc
    -rw-r----- 1 oracle dba 625 Nov 10 13:07 icai11_ora_2333.trc
    -rw-r----- 1 oracle dba 626 Nov 10 13:07 icai11_ora_2380.trc
    -rw-r----- 1 oracle dba 729 Nov 10 13:07 icai11_ora_2174.trc
    -rw-r----- 1 oracle dba 625 Nov 10 13:08 icai11_ora_2851.trc
    -rw-r----- 1 oracle dba 613 Nov 10 13:08 icai12_ora_627.trc
    -rw-r----- 1 oracle dba 626 Nov 10 13:11 icai11_ora_2894.trc
    -rw-r----- 1 oracle dba 1365 Nov 10 13:12 icai11_ora_2443.trc
    -rw-r----- 1 oracle dba 1640016 Nov 10 13:42 icai12_ora_427.trc
    -rw-r----- 1 oracle dba 676 Nov 10 13:48 icai11_ora_2183.trc
    -rw-r----- 1 oracle dba 626 Nov 10 13:48 icai11_ora_2230.trc
    -rw-r----- 1 oracle dba 645 Nov 10 13:55 icai11_ora_3220.trc
    -rw-r----- 1 oracle dba 675 Nov 10 13:57 icai12_ora_276.trc
    -rw-r----- 1 oracle dba 625 Nov 10 14:07 icai11_ora_3198.trc
    -rw-r----- 1 oracle dba 1376 Nov 10 14:08 icai11_ora_2935.trc
    -rw-r----- 1 oracle dba 625 Nov 10 14:09 icai11_ora_3273.trc
    -rw-r----- 1 oracle dba 677 Nov 10 14:10 icai11_ora_2465.trc
    -rw-r----- 1 oracle dba 634 Nov 10 14:17 icai12_ora_1137.trc
    -rw-r----- 1 oracle dba 687 Nov 10 14:21 icai11_ora_1971.trc
    -rw-r----- 1 oracle dba 688 Nov 10 14:23 icai11_ora_2973.trc
    -rw-r----- 1 oracle dba 626 Nov 10 14:25 icai11_ora_2144.trc
    -rw-r----- 1 oracle dba 770 Nov 10 14:32 icai12_ora_399.trc
    -rw-r----- 1 oracle dba 718 Nov 10 14:37 icai12_ora_917.trc
    -rw-r----- 1 oracle dba 644 Nov 10 14:48 icai11_ora_3510.trc
    -rw-r----- 1 oracle dba 645 Nov 10 15:31 icai11_ora_2957.trc
    -rw-r----- 1 oracle dba 730 Nov 10 15:33 icai11_ora_1973.trc
    -rw-r----- 1 oracle dba 688 Nov 10 15:56 icai11_ora_3830.trc
    -rw-r----- 1 oracle dba 2527 Nov 10 16:11 icai12_ora_364.trc
    -rw-r----- 1 oracle dba 687 Nov 10 16:34 icai11_ora_4150.trc
    -rw-r----- 1 oracle dba 1332 Nov 10 16:35 icai11_ora_3760.trc
    -rw-r----- 1 oracle dba 715 Nov 10 16:38 icai11_ora_3723.trc
    -rw-r----- 1 oracle dba 687 Nov 10 16:46 icai11_ora_4295.trc
    -rw-r----- 1 oracle dba 714 Nov 10 16:56 icai11_ora_2598.trc
    -rw-r----- 1 oracle dba 615 Nov 10 17:06 icai12_ora_2232.trc
    -rw-r----- 1 oracle dba 615 Nov 10 17:09 icai12_ora_2290.trc
    -rw-r----- 1 oracle dba 2527 Nov 10 17:13 icai12_ora_1875.trc
    -rw-r----- 1 oracle dba 688 Nov 10 17:18 icai11_ora_4473.trc
    -rw-r----- 1 oracle dba 978 Nov 10 17:25 icai12_ora_2265.trc
    -rw-r----- 1 oracle dba 645 Nov 10 17:29 icai11_ora_4582.trc
    -rw-r----- 1 oracle dba 730 Nov 10 17:36 icai11_ora_4084.trc
    -rw-r----- 1 oracle dba 616 Nov 10 17:46 icai12_ora_2281.trc
    -rw-r----- 1 oracle dba 615 Nov 10 17:46 icai12_ora_1811.trc
    -rw-r----- 1 oracle dba 730 Nov 10 17:50 icai11_ora_4225.trc
    -rw-r----- 1 oracle dba 2528 Nov 10 18:08 icai12_ora_2352.trc
    -rw-r----- 1 oracle dba 626 Nov 10 18:10 icai11_ora_2501.trc
    -rw-r----- 1 oracle dba 738 Nov 10 18:10 icai11_ora_2790.trc
    -rw-r----- 1 oracle dba 688 Nov 10 18:28 icai11_ora_3768.trc
    -rw-r----- 1 oracle dba 626 Nov 10 18:33 icai11_ora_4029.trc
    -rw-r----- 1 oracle dba 626 Nov 10 18:33 icai11_ora_3965.trc
    root@ai2 #

    You seem to have RAC with multiple instances.
    Anyhow, lower(d.value) --> icai, doesn't occur in any filename. This is because the instance name is in the trace filename, not the database name.
    You are aware you can set the tracefile_identifier?
    This will be simply appended to the original filename.
    Sybrand Bakker
    Senior Oracle DBA

  • How can reduce generate trace file.

    Hi all,
    how can reduce generate trace file.
    frequently created sql trace file in oracle 10g
    approximate 5g in one day.
    and database size 10gb
    os windows

    If you cannot disable the tracing for some reason, consider setting maximum file size for the dump.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams116.htm#CHDIABEI

  • How to Generate Trace Files in SQL*Plus

    Hi Friends ,
    How to Generate Trace Files in SQL*Plus ?
    i have no idea
    thanks
    raj

    What trace files would you like to generate?
    Are we talking SQL trace files?
    ALTER SESSION SET sql_trace = TRUE;This will be generated in the user_dump_dest on the server.
    show parameter dump

  • How to generate Trace files

    Hi,
    I have a package under which there are some procedures and functions.
    I am supposed to generate the trace files for each run of the procedures in the package.
    How to generate trace files? Pls help me out.
    Thanks in advance
    Regards,
    Vijay

    I dont have access to production server to see the
    trace file. Is there a way to see the content of the
    trace file from client machine?No. At least there isn't one without additional work from your administrator. I remember I've seen somewhere some kind of solution when user_dump_dest is used as oracle directory (specific oracle object) in your db and then use either external tables or utl_file or something like that to read the trace file. Of course this assumes your DBA should do some work before.
    However I'd say that simply getting trace file from server is much easier :)
    Consider, Autotrace option in sqlplus. With the help
    of Autotrace set option, we can see the trace output
    on the sqlplus screen for the anonymous blocks. Different tool, different behaviour.
    Is there a way to see the trace for the stored
    procedures?Explained above.
    Gints Plivna
    http://www.gplivna.eu

  • How to generate xml-file for SAP Fiori (UI add-on) with Solution Manager 7.0.1?

    Hello Guru,
    could you please help with my issue with Fiori Installation.
    We want to install SAP Fiori Front-End (GW+UI) on the Sandbox system with SAP Netweaver 7.3.1. (SP14)
    Gateway component (SAP GW CORE 200 SP10) was installed without any problems.
    But I need to install UI-add-on (NW UI Extensions v1.0) and when I try to install it via SAINT, transaction said me that I need to generate xml-file for it (as in General notes for UI add-on mentioned).
    But I have Solution Manager 7.0.1 and in MOPZ for this version I do not have option  "install Add-on" as it written in Guide for ui add-on installation.
    Could you please help me with advice how to generate xml-file for UI add-on installation on SolMan v.7.0.1?
    If where is no way, but only to upgrade Solution Manager, maybe somebody could give me xml-file for your system (for NW 731) and I will change it to my needs, I will be very grateful!
    Thanks in advance for any help!!!
    Bets regards,
    Natalia.

    Hello Guru,
    could you please help with my issue with Fiori Installation.
    We want to install SAP Fiori Front-End (GW+UI) on the Sandbox system with SAP Netweaver 7.3.1. (SP14)
    Gateway component (SAP GW CORE 200 SP10) was installed without any problems.
    But I need to install UI-add-on (NW UI Extensions v1.0) and when I try to install it via SAINT, transaction said me that I need to generate xml-file for it (as in General notes for UI add-on mentioned).
    But I have Solution Manager 7.0.1 and in MOPZ for this version I do not have option  "install Add-on" as it written in Guide for ui add-on installation.
    Could you please help me with advice how to generate xml-file for UI add-on installation on SolMan v.7.0.1?
    If where is no way, but only to upgrade Solution Manager, maybe somebody could give me xml-file for your system (for NW 731) and I will change it to my needs, I will be very grateful!
    Thanks in advance for any help!!!
    Bets regards,
    Natalia.

  • Generating ard file for addon in 9.1

    Hi,
    I have created an addon and want to generate ard file for it. Most of the documents describe the process for 8.82, whereas the process for 9.1 has changed. I am looking for some documents on packaging and deploying an add-on in 9.1.
    Please share some helpful links or step by step procedure.
    Thanks.

    Hi Rajesh,
    Have you downloaded the SDK Help  Center document...
    In that it is explained step by step process..
    You can use the link to download.
    https://websmp204.sap-ag.de/~sapidb/012002523100002716002015E/B1_91_SDK_HelpCenter.zip
    Regards,
    Kennedy

  • Premiere CS3 Freezes when 'Generating Peak File' for Video Clips

    Well the title explains it all really.
    I'm importing a large 7.5 gb video file (.avi) and in the bottom corner it says 'Generating Peak File for xxxx'.
    Which is fine until the bar is right at the end, and Premiere freezes on me and I have to end the process..
    Thanks for your time!
    George

    Temporary storage.
    You will also find links to many
    free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Generating Peak File for...

    Wow, this has been going on for 3-4 hours already.
    Unacceptable, and I can't find any reference to this process in the Adobe Docs for PP. I have no idea where it is in the process. Is it almost done? Does it have another 12 hours to go? What is the deal with this? I have not touched my computer in hours.
    I have a PP Project with about 10 bins with about 1 hour of video in each.
    Should I break my project down so I have 10 PP files with 1 hour of video per project?
    I was hoping to keep everything in one PP file, but that is looking like a really bad idea right now. I don't remember having to suffer through anything like with when working with Final Cut Pro.
    Will these stupid Peak Files be saved? Is there a chance they will get corrupt and have to regenerate? This took a whole half day, and more, since it's still ongoing. This is on my MBP 2.4GHz. If I want to move the files back and forth between my laptop and my Windows Core i7 920 desktop (I have Production Premium on both platforms), will I have to suffer the Peak File Generation everytime?
    All video was captured in OnLocation, straight from the camera. That part of the process seemed really cool. This part with the Peak File is really lame.
    Any tips on getting to a workable workflow with PP, or should I just bag it, and buy another editor (Final Cut Express would even probably do the simple cut edits I want to do) ? I do most everything in After Effects.

    count_schemula wrote:
    The solution? I'm going to edit on my windows desktop.
    OMG, what have I gotten myself into?
    Same problem on my PC. Premiere Pro 4.2 on Windows 7 64 bit. Freshly installed. All legit software.
    I made a new project, import all the video, and let it generate all peak files.
    It finishes. Close Premeire. Open Premiere... Generating Peak File for...
    My heart sinks so low.
    I delete the .pek files and the database files and in the preferences, I set it to save cache and database files to a folder within my project folder.
    It dutifully generates all new .pek file and database files. I watch it write them one by one. It does not write anything in the original Adobe shared cache folders. It completes. I quickly edit up one segment, just so I have some work to show for my 4 days of messing around with this.
    Close Premiere. Open Premiere.
    Generating Peak File for...
    I'm speechless.
    Footage was captured to disc using OnLocation on a Mac from a Panasonic AG-HVX200a via fireware.
    If you want to call me an idiot, point out where I'm not doing something right.
    If you want to blame my rig(s) just know that I push these systems hard daily with ZERO issues in other apps.
    I'm blaming Premiere at this point. Something about how this program works is just not right. In both cases it writes over already existing .pek files. I have 4 channels per clip, so 4 .pek files for every clip I have. It's towards 1000. pek files.

  • Error : generate war file for iplanet server 6.5

    I use war file that generate from WSAD V.4 and deploy this war file to iPlanet sun one app server V6.5.
    before deploy to iplanet
    I must use command to generate war file for iplanet server (convert J2EE Archive to IAS Archive)
    but i found problem after use this command
    ./deploycmd -j2ee2ias -f xxxx.war
    com.iplanet.ias.tools.buzz.util.ArchiveHandlerException: invalid EXT descriptor signatureat com.iplanet.ias.tools.buzz.util.ArchiveHandler.<init>(Unknown Source)
    at com.iplanet.ias.tools.buzz.common.ArchiveFile.<init>(Unknown Source)
    at com.iplanet.ias.tools.buzz.common.WarArchiveFile.<init>(Unknown Sourc
    e)
    at com.iplanet.ias.tools.buzz.common.WarArchiveFile.<init>(Unknown Sourc
    e)
    at com.iplanet.ias.tools.buzz.common.iascom.processOption(Unknown Source
    at com.iplanet.ias.tools.buzz.common.iascom.main(Unknown Source)
    Any body please help?
    Thanks alot.

    I use war file that generate from WSAD V.4 and deploy this war file to iPlanet sun one app server V6.5.
    before deploy to iplanet
    I must use command to generate war file for iplanet server (convert J2EE Archive to IAS Archive)
    but i found problem after use this command
    ./deploycmd -j2ee2ias -f xxxx.war
    com.iplanet.ias.tools.buzz.util.ArchiveHandlerException: invalid EXT descriptor signatureat com.iplanet.ias.tools.buzz.util.ArchiveHandler.<init>(Unknown Source)
    at com.iplanet.ias.tools.buzz.common.ArchiveFile.<init>(Unknown Source)
    at com.iplanet.ias.tools.buzz.common.WarArchiveFile.<init>(Unknown Sourc
    e)
    at com.iplanet.ias.tools.buzz.common.WarArchiveFile.<init>(Unknown Sourc
    e)
    at com.iplanet.ias.tools.buzz.common.iascom.processOption(Unknown Source
    at com.iplanet.ias.tools.buzz.common.iascom.main(Unknown Source)
    Any body please help?
    Thanks alot.

Maybe you are looking for

  • Not getting PO printed while using bursting pls help

    Hi All, Working on converting PO report to XML. While using bursting to print the pdf file the document is not sent to the printer.. But in the output file of the "XML Publisher Report Bursting Program" getting success. Not sure why report output is

  • I erased some files in my cloud can i have it back ???

    Hi i erased some files in my cloud can i have it back?? thank you ????

  • MP3 sound from mobile phone on Satellite

    Hi, I want to connect my phone with my Satellite with the bluetooth connection and then I want to start the music on the phone and the computer has to work like a headset - the sound has to be heared on the Toshibaspeaker. Any Idea? Thank you and sor

  • How to manually start a WP on OS level

    Hi, does anyone knows how to start a work process on OS level? One of my WP "disappeared" and SM50 shows it as stopped and it cannot be restart from there... Is there a way to restart it on OS level without restarting the whole SAP system? thanks Ant

  • About pe51

    Hi, I am new to developement Of forms in ABAP HR, Using PE51 Tcode. Can anybody help me to make a form using this TCode. Thanks n Regards, LakshmiNarayan