To find the processing Func. module

hi,
can anyone tell me how to find the processing Func. module(outbound) if i know the message type, basic type and extension.
i tried with we57 but coudnt find the one(outbound) needed.

Hi Pawan,
From the link
http://www.intelligententerprise.com/channels/applications/feature/archive/kasturi.jhtml
  For more inf. you can check this link.
From WEDI got to Control -> Inbound process codes -> Inbound with ALE service -> Processing by function module (transaction WE42), or from WEDI go to Control -> Outbound process codes -> Outbound with ALE service -> With function module (transaction WE41). There will be function modules associated with the process codes. For inbound, the function modules usually follow this pattern: IDOC_INPUT_messagetype: for example, IDOC_INPUT_CHRMAS for inbound characteristics master.
*Use transaction WE57 or from WEDI go to Development -> Message/Application Object. The entries list the function module, Business Object, message type, and IDOC type that are used for inbound ALE/EDI interfaces.
Hope you will clear now, if yes please close this thread with rewarding appropriate points to the helpful answers.
Cheers
Sunny

Similar Messages

  • Deactivating the standard func. module in FQEVENTS

    Hi,
    I have a requirement to add a z func. module to a event and there are standard func. modules already activated to this event could anyone please help me out how to deactivate the standard FM.
    My requirement in detail is i have 9 standard func. modules assigned for an event which are in active status now i need to copy the standard func. module to a zfunc. module.
    i have copied standard func. module no. 8 to a zfunc. module and have assigned the same no. 8 to my Zfunc. module from the change customizing, but the problem here is both the standard and zfunc. modules are in active state which in turn calling the standard func module first and not serving my purpose so i need to deactivate the standard func. module ..
    Thanks in advance,
    Venkat Mahesh Addanki.

    Hi Rajendra,
    Thanks for the reply.. but one small problem the change customizing button is only available for IS specific fm modules whn u click that it showing the zfunc.module in tabstrips i cannot find the standard fm here to delete.
    I think we can do the table maintenance for the below tables will serve the purpose right??
    TFKFBS - Table for STANDARD FMs
    TFKFBC - Table for CUSTOM FMs
    thanks in advance,
    Venkat Mahesh Addanki

  • How to find the Obsolete function module in ECC 6.0

    Hi Guys,
    How we can find the all obsolete function in ECC 6.0, is any T-code to finding the obsolete function modules, or any other way to find.
    Could you please help me.
    Thanks,
    Gourisankar.

    Hi Gouri,
    If you are looking at determining whether a single FM is obsolete or not is by this method:
    Go to FM in SE37 -> Goto Attributes Tab -> General Data section -> look above the Edit Lock field ... where SAP places the release status and date of the FM, if the FM is obsolete, the text Function Obsolete appears
    This is one way of finding out one FM @ a time
    However if you want to check on a mass scale, I dont have a SAP system here hence cant confirm, however, all FMs are stored in TFDIR database table. Please scroll through the fields of the DB table to check whether any field relates to release status or the like. If it does, then from SE16, you can put the value corresponding to "Obsolete" in the field and run to check all FMs.
    Cheers,
    Aditya

  • How to find the processing time of any query?

    im using oracle express edition, can anyone help me, how to find the processing time of any query?

    Trace the query and tkprof the generated trace file.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/sqltrace.htm#PFGRF01010

  • How to find the process running for a specific cube on WINDOWS?

    Hi,
    how do we find the process of a cube and kill it if the server is a win 2003 server...
    when i go to the task manaer and search I only see then as esssvr ? but how do I match them to the specif cubes??
    in UNIX we can see them clearly as they have the cube name along with the pid and evertything else...
    please let me know.
    Thanks in advance.

    you actually have to go into the Essbase server log. When the application starts its pid is put in the log. I don't remember the mesage number, but it's in the log somewhere around a message started. Make sure you get the last started pid for an application. since the log can be for a long period, the application could have started multiple times
    Message was edited by:
    GlennS

  • HOw to find the BAPI function module

    Hi all,
    I have a field called IEVER in table EIKP.
    How to find the related BAPI function module and BAPI structure for this filed.
    Thanks in advance
    KP

    Hi KP,
       can you tell us the name of the transaction in which you saw this field?
    If it is in PO Creation or Change you can probably look at the bapis
    BAPI_PO_CREATE or BAPI_PO_CHANGE
    Regards,
    Ravi

  • How to find the existing function module is used in another function module

    Hi all,
    I created a function module and the same one is called from another function module.
    When I tried to find where the  first function module is used  using  Where-used List , I am getting the message "function module not found in selected areas" .
    Please  guide me what is other method to find whether the function module is used in another one.
    Thanks,
    Vengal Rao.

    hi,
    Go to UTILITIES-> Update Navigation index.
    or go to fucntion group and Generate the Funtion group once.
    it will detect all fucntion modules under that function group.
    regards,
    Rama

  • How to find the process responsible for deleting files

    Hi,
    We have a process which stores a file in a particular location say /tmp/mydir/. The files getting stored in this directory are getting deleted. Is there any way to find which process is responsible for deleting the file. Is there any way we can truss on the directory/file and check which process accessed it or deleted it.

    solquestions wrote:
    I tried: dtrace -n syscall::unlink:entryThat one looks good to me.
    While it picks up the unlinking(I tested by doing a rm of some files), I could not get the pid of the process doing such rm.....(or maybe the process exited...)You haven't asked it to print that information. Try:
    dtrace -n 'syscall::unlink:entry {trace(pid);trace(execname)}'
    I'd like to see the process/adpp/program, calling a particular system call....unlink, close, open etc etc...The above should do that.
    I wonder if dtrace can capture both library calls and system calls......Dtrace doesn't capture so much as it fires on probes. But yes, both libraries and system calls can have probes available.
    It seems functionality for capturing system calls from a process are more documrnte, and with examples, than, those asking for finding which system calls get opened by whom....
    I think all you're missing is adding some information to the trace output.
    Is getting unlink enough to find "what is removing files?"You might want to check rename as well.
    How do I drrace for "anything that touched taht file" or, "anything that touches files in a directory"That's actually a somewhat difficult task for dtrace. First, you might download the "Dtrace toolkit". One of the tools in there is "opensnoop". It reports on file opens and you can examine the script to see how it does it. You can even give a filename and it only reports when that filename is accessed.
    But the main problem is that files can have many names, and dtrace is just looking at the name in many cases. So "/etc/passwd" can be called "/etc/passwd", or if you're in /usr it could be called "../etc/passwd", or any of a variety of names. It's not too hard to set a probe predicate to fire only on a pattern match, so you could set it to only fire when the filename is matched.
    Good luck, and see if any of the existing tools in the toolkit are close enough that you can use them directly or modify them slightly.
    Darren

  • How to specify the Process Flow Module with SQLPLUS_EXEC_TEMPLATE.SQL ?

    Hi, we have a couple of process flow modules that have PF Packages and Process Flows with the same name.
    E.g
    PFMOD1 (Module)
    FILELOAD (Package)
    PF1 (Pf)
    PFMOD2 (Module)
    FILELOAD (Package)
    PF1 (Pf)
    Normally we can specify "FILELOAD/PF1" as a paramater to the procedure SQLPLUS_EXEC_TEMPLATE.SQL in order to initiate the running of an OWB process flow but how can the system distinguish between modules ?
    Anyone done this ?
    Thanks
    Paul

    If you deployed the packages to the same location then the second deployment replaced the result of the first one (actually a new version of the process flow was created). You can execute only the latest version...
    Regards,
    Robert

  • Help me to find the right function Module

    Hi
    Can anybody help me out to find the function module that creates the public ABAPlogon group
    I have to do a task which is as mentioned below:
    Our BI configuration assumes that an ABAP logon group with the name “PUBLIC” exists. However,after A1S installation no such logon group is present. So, my  task is to find out, how we can create such a logon group (this means finding the right ABAP Function Module or BAPI)
    Kindly reply as soon as possible
    Thanks and Regards
    Neeta

    Hi san
    I have gone to se38 then typed LogonGroup* and pressed f4,then I got a Transaction INST_LOGONGROUP but that sets a logon value ALL-IN-ONE <sid> as the name of the logon group .its hard coded in it.
    What I need is a generalized function module that accepta the logon name as parameter and sets the value
    When we go to the transaction smlg we can see a screen where we set the logon group value.Whatever value we give it sets that value.How to find out what is the function module corresponding to that?
    I have debugged it but unable to track the function module.:-((
    Kindly help me out if you can..

  • Made a DVD fine, but can't find the processed iMovie

    Hi,
    I just processed a good-looking 20 minute iMovie. And the DVD looks really good.
    But where is the processed iMovie, that showed up in iDVD as "large.m4v? Hmm. Is it gone, because I now have the dvdproject, and I don't need it anymore? Am I getting upset over nothing? I suppose that's it.
    Anyone who reads this, the combination of a Sony HDR-CX12 consumer Hi-Def camcorder, iMovie, and "large" processing with I think any of the 3 quality choices in iDVD preferences, makes for some great-looking video on an HDTV.

    If you Shared to iDVD, the resulting file is a very large temporary file that goes away after you have finished with iDVD. You might find it in your trash.
    If you shared to the Media Browser, you can find your Large file in the Project file. Go to Movies/iMovie Projects and locate your project. Right click on the project and select "Show Package Contents". The Project folder will now be visible and your movie will be stored in the Movies folder. This copy is available when you use the Media Browser in any iLife app.
    If you shared to iTunes, your movie will be in iTunes and the Project file.

  • Unable to find the RFC function module in the impoting list in IR

    HI
    I am trying to import a RFC function module from the R/3 system.
    I am not able to find the RFC in the list that comes for the RFC  function modules that can be imported.
    The RFC is present in the destination system and is actiated too
    If anyone has and idea why is such a thing happning
    Regards
    Nikhil

    Hi Nikhil,
    The Checklist,
    1. Check the connection parameter at XI
    2. Make sure ur function module is remote enabled
    3. Make sure ur RFC exists for the same user, client credentials
    Regards,
    Prateek

  • Unable to find the processed message

    Hi
    I am testing my vendor master upload for file to idoc scenario, I am keeping the file in FTP server and made processing mode as delete , the adpater is deleting the file but i am unable to the processed message in TC SXMB_MONI . any clues????????
    Regards
    Swatantra

    Hi,
    1. Check Adapter Monitoring as Divija said
    2. Check in MDT and see what is the problem?
       http://<host>:<port>/mdt
    Message flow is like Adapter Monitoring>MDT>SXMB_MONI
    Thanks,
    Prakash

  • How can I find the "process code" in a Service Notification

    Hi folks,
    In the Transaction IW52 I am trying to enter the values for "Fault code" and "sub-header". Now I need to know how to find out which "process code" is my notification is assigned to. This entry is needed in the tab object data in the section additional information when pressing in the field fault code.
    Thanks for your feedback
    Kami

    Kami,
    I'm guessing that you notification type is non-standard...
    Can you post images of the issue?
    PeteA

  • How to find out the inbound function module in the extended idoc

    Hi,
    how to find out the inbound function module in the extended idocs
    Thanks .

    through we41/we42 you can find the inbound function module.......
    or
    thorough we19(idoc test tool) ....
    give the input as message type or basic idoc..
    press exec...
    then you can find th button on application tool bar as inbound funtion module....
    from here also you can find..........
    <REMOVED BY MODERATOR>
    Khasimsa
    Edited by: Alvaro Tejada Galindo on Apr 14, 2008 1:34 PM

Maybe you are looking for