Search Distribution Program

Hello Everybody,
Can someone tell me, how to look for the distribution program using the Segment or the Basic type.
Thanks,
Sneha Singh.

Hi Sneha,
In case of Inbound IDOC's corresponding FM will be attached to the Message Type and Basic Type in transaction WE57. From here you can find the FM related to a message type.
In case of Outbound IDOCs, corresponding FM will be attached to the Message Type in transaction BD60. From BD60, you can find the outbound FM.
As it is a custom IDOC, find out the FM associated from BD60/WE57 and check the where used list for the FM, to know the program name.
Hope this helps you !!!
Regards,
Ganga
Edited by: Ganga Bhavani R on Feb 15, 2010 10:30 PM
Edited by: Ganga Bhavani R on Feb 15, 2010 10:37 PM

Similar Messages

  • Search Indexing Program failed. java.lang.ExceptionInInitializerError

    I have BusinessObjects Edge SP3 installation. Got error with Search Indexing Program. The error says: "The program failed to run and supplied the following information: java.lang.ExceptionInInitializerError".
    Some points I would like to get clearified in the scheduling event:
    1. What is the user name and password for the program logon.
    2. What should we have in the Working Directory and Classpath under Program Parameters
    I suspect that error happens when these fields are empty.

    James,
    While the upgrade of JDeveloper to 10.1.3.4 will take some time, let me clarify the situation.
    We have SOA suite and Oracle application server installed on a server machine and two client machines (one of which I am using) have Jdev installed on them. When I deploy the BPEL from Jdev running on my colleague's machine it works fine but fails when I try the same from Jdev running on my machine.
    The versions of Jdev are exactly the same on the two machines. And versions of SOA suite, Oracle application server etc are naturally same as it is being deployed on same server. Appreciate your valuable guidance.
    Thanks and Regards,
    Dhiraj.

  • How to search a program sapscript launcher

    Hello everybody.
    I have to modify a value that it's filled in a sapscript, but I don't know how to do for search the program that launch my sapscript.
    Can you help me, gurus?
    Thanks a lot!

    Hi Alessio,
    first you should know that what  are the modification you want .than goto nace copy the standard script to your ZZ_script than you can adding or modify the layout.
    in the program fallow the these steps:
    Using the PERFORM SUBROUTINES you can call the extra fields info into the script and print them
    see the sample code and do accordingly
    How to call a subroutine form SAPscripts
    The Form :
    /:PERFORM CDE_CENT IN PROGRAM ZKRPMM_PERFORM_Z1MEDRUCK
    /:USING &EKKO-EBELN&
    /:CHANGING &CDECENT&
    /:ENDPERFORM
    The report :
    REPORT zkrpmm_perform_z1medruck .
    DATA : BEGIN OF it_input_table OCCURS 10.
    INCLUDE STRUCTURE itcsy.
    DATA : END OF it_input_table.
    déclaration de la table output_table contenant les
    variables exportées
    DATA : BEGIN OF it_output_table OCCURS 0.
    INCLUDE STRUCTURE itcsy.
    DATA : END OF it_output_table.
    DATA : w_ebeln LIKE ekko-ebeln,
    w_vbeln LIKE vbak-vbeln,
    w_zcdffa LIKE vbak-zcdffa.
    FORM CDE_CENT
    FORM cde_cent TABLES input output.
    it_input_table[] = input[].
    it_output_table[] = output[].
    READ TABLE it_input_table INDEX 1.
    MOVE it_input_table-value TO w_ebeln.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = w_ebeln
    IMPORTING
    output = w_ebeln.
    SELECT SINGLE zcdffa FROM ekko
    INTO w_zcdffa
    WHERE ebeln = w_ebeln.
    it_output_table-name = 'CDECENT'.
    MOVE w_zcdffa TO it_output_table-value.
    MODIFY it_output_table INDEX 1.
    output[] = it_output_table[].
    ENDFORM.
    REPORT ZMPO1 .
    form get_freight tables in_par structure itcsy out_par structure itcsy.
    tables: ekko,konv,t685t.
    data: begin of itab occurs 0,
    ebeln like ekko-ebeln,
    knumv like ekko-knumv,
    end of itab.
    data: begin of itab1 occurs 0,
    knumv like konv-knumv,
    kposn like konv-kposn,
    kschl like konv-kschl,
    kbetr like konv-kbetr,
    waers like konv-waers,
    kwert like konv-kwert,
    end of itab1.
    data: begin of iout occurs 0,
    kschl like konv-kschl,
    vtext like t685t-vtext,
    kbetr like konv-kbetr,
    kwert like konv-kwert,
    end of iout.
    data v_po like ekko-ebeln.
    read table in_par with key 'EKKO-EBELN'.
    if sy-subrc = 0.
    v_po = in_par-value.
    select
    ebeln
    knumv
    from ekko
    into table itab
    where ebeln = v_po.
    if sy-subrc = 0.
    loop at itab.
    select
    knumv
    kposn
    kschl
    kbetr
    waers
    kwert
    into table itab1
    from konv
    where knumv = itab-knumv and
    kappl = 'M'.
    endloop.
    loop at itab1.
    if itab1-kposn <> 0.
    select single * from t685t
    where kschl = itab1-kschl
    and kappl = 'M'
    and spras = 'EN'.
    iout-vtext = t685t-vtext.
    iout-kschl = itab1-kschl.
    iout-kbetr = itab1-kbetr.
    iout-kwert = itab1-kwert.
    append iout.
    clear iout.
    endif.
    endloop.
    sort itab1 by kposn.
    loop at iout.
    sort iout by kschl.
    if ( iout-kschl eq 'GSDC' OR
    iout-kschl eq 'GSFR' OR
    iout-kschl eq 'GSIR' ).
    at end of kschl.
    read table iout index sy-tabix.
    sum.
    write:/ iout-kschl,iout-vtext,iout-kwert.
    out_par-name = 'A1'.
    out_par-value = iout-vtext.
    append out_par.
    out_par-name = 'A2'.
    out_par-value = iout-kwert.
    append out_par.
    endat.
    endif.
    endloop.
    endif.
    endif.
    endform.
    IN THE FORM I AM WRITING THIS CODE.
    /:DEFINE &A1& = ' '
    /:DEFINE &A2& = ' '
    /:PERFORM GET_FREIGHT IN PROGRAM ZMFORM_PO1
    /:USING &EKKO-EBELN&
    /:CHANGING &A1&
    /:CHANGING &A2&
    /:ENDPERFORM
    &A1&
    &A2&
    This Code is to be written in the PO form under ADDRESS window.
    /:DEFINE &A1& = ' '
    /:DEFINE &A2& = ' '
    /:DEFINE &A3& = ' '
    /:DEFINE &A4& = ' '
    /:DEFINE &A5& = ' '
    /:DEFINE &A6& = ' '
    /:PERFORM GET_VENDOR IN PROGRAM ZMFORM_PO
    /:USING &EKKO-EBELN&
    /:CHANGING &A1&
    /:CHANGING &A2&
    /:CHANGING &A3&
    /:CHANGING &A4&
    /:CHANGING &A5&
    /:CHANGING &A6&
    /:ENDPERFORM
    &A1&
    &A2&
    &A3&
    &A4&
    &A5&
    &A6&
    Reward is usefull

  • Search scan program for Dell C1765NFW

    Search scan program for Dell Laser printer C1765NFW compatible to OSX Mavericks 10.9.2. For Windows come special program with printer, but for OSX come nothing or just driver for minimal function. Who have any idea which scan program I can buy and use with this type of laser (all in one) printer?
    Many thanks for info!

    Try using Image Capture. It's located in your Applications folder.
    Launch Image Capture then connect the printer.
    The printer/scanner should show up under Devices top left side of the Image Capture window.
    Now look at the bottom left side of the window. Click the: Connecting this (device) opens: pop up menu and select an application to import your photos.
    You can also select a folder to import photos from the Import To: pop up menu.
    Selet the photos you want to import then click Import or Import All on the right.
    More help is available from the Image Capture menu bar. Click Help > Image Capture Help
    Mac Basics: Using a scanner

  • How to search print program

    HI FRIENDS.............
    I know the form name then ,How to search its print program  name?

    Hi Sateesh,
    Use the  NACE transaction:
    Please check this link
    search print program and sap script
    with po no how to find script and  print program for that  po.
    Source : https://forums.sdn.sap.com/click.jspa?searchID=15095030&messageID=5629547
    Have A Good Day
    Chaitanya.

  • Searching of programs/includes/tables based on string

    Hi Experts,
    I have a requirement, is there any program or transaction code to search programs/includes/tables based on the fields
    (Eg. company code, sales organization, country, currency) in the selection screen or any other method. 
    Please suggest, if any solution.
    Thanks,
    GR

    Hi,
    You will not find a program for this requirement & that too based on a field.
    I would suggest if you have the package then SE80 will be the best transaction which will give you all the objects like Tables/programs/FM/Enhancement that come under a package.
    Also if you do a whereused list on fields like Company code, Sales organization, Country, you will end up getting a massive list of objects where it is used.
    Regards
    Abhii

  • Searching installed programs

    Hi,
    is it possible to search the installed programs (e.g. MS Word) on a system using Java?
    I am developing a Java application that runs MSExcel in between. I just want to validate whether Excel exists on the user system before I launch the excel in my application.
    Kindly help me to find out the right material for this.
    -Atul

    Hi,
    is it possible to search the installed programs (e.g.
    MS Word) on a system using Java?
    I am developing a Java application that runs MSExcel
    in between. I just want to validate whether Excel
    exists on the user system before I launch the excel
    in my application.
    Kindly help me to find out the right material for
    this.
    -AtulWhy can't you just try to launch it, and catch any exceptions?
    Kaj

  • Making JFileChooser search directory program is in

    Anyone know how to make a JFileChooser search the directory in which the program is running? When the JFileChooser opens, I want it to show me the contents of the directory the application is in. Under NT, JFileChoosers seem to default to the user's home directory.

    This should give you the working directory... At least it does in 2000..
    System.getProperty("user.dir")
    Hope this helps.
    Kirk

  • Searching webdynpro programs

    Hi,
    Is there any functionality by which I can search for a particular string in a webdynpro component.
    Just like RS_ABAP_SOURCE_SCAN searches and finds string in report programs.
    Thanks in advance,
    Aravind

    Hello
    SAP has provided a Class to get the class name of the any Web Dynpro component:
    Class Name: CL_WDY_WB_NAMING_SERVICE
    Use Method: GET_CLASSNAME_FOR_COMPONENT  
    Execute ( ) the method GET_CLASSNAME_FOR_COMPONENT. Also look at the other methods in this class and their purpose.
    /1BCWDY/G0DNP6DCGHZPKYVE15GZ class is a SAP generated one for the Web Dynpro component ZCD0_WD_FORECAST. Searching this class is same as we search in other normal class.  
    Open the class /1BCWDY/G0DNP6DCGHZPKYVE15GZ in SE24 and search (Ctrl+F) the class for the statement u2018S715u2019.  Please find result in below screen shots, it shows all instance where this table is used by providing all details like view name, method.
    Thanks
    Pradeep

  • I need to reverse the command and let the computer use Windows to search the program I want to use t

    I am not sure if you can help me.  I need to command my computer to look for a program that is most suited to open files automatically.  I accidentally check the mannual mode and appointed Adobe Reader x to be the designated program.  Now nothing will open.  How can I undo what I did last night and reverse the process to restore my original setting?

    You made Adobe Reader the default progrm for what: .pdf files, or anything else?
    "Nothing will open" means what, programs, files, any files?
    Try a System Restore to a date before you made the change.

  • Search print program and sap script

    hii , how can i find  trigring print program and sap script  for a particular  purchase order.
            regards  Aditya
    Edited by: aditya shrivastaba on Apr 14, 2008 9:59 AM

    Hey,
    First go with Me22 or 23 with po that you had, and then check with output type for that in the transaction. After that go to TNAPR table and check the corresponding form and print program.
    Or else, go with NAST table in that put PO num in 123456 and put in OBJKY field in nast table. It will give you the output type of it, so that u can find the print program and lay out in TNAPR
    Many thanks,
    Raghu.

  • Searching a program that call a smartform

    Hello guys how are ya'?
    There is a Standard Smartforms called "BBP_OUTPUT_COVER" and inside it a variable called "IV_URL", i need change the content of this variable but i don't know what is the program that call this form.
    How do i find the program that call this form?
    if this form is included in configuration, how do i find it in SPRO?
    Thanks for advance.
    Danilo

    This form is generic and it is called for emails on Bid, CTR, etc. There are BADI's linked to each of them, for eg: BBP_CHANGE_SF_BID, similarly find out the one you are looking for.
    Regards, IA

  • Search for line of code in a program

    I have written a program and from within this program I need to check whether a line of code exists in another program. Anyone tried this before? I need a little help getting it done.

    try using Submit Prg: rpr_abap_source_scan with relevant parameters...
    with rb_code = 'X'
                                with repname = <program name to search>
                                with sstring = <things to search in program>

  • Search Help is not  working in PCUI

    Hi All,
    We are working on CRM 5.0
    we have given Seach help for City depend upon Region
    This search help is working in SAP-GUI System but
    it is not working on PCUI Screen And showing No entry found,
    plz help me...
    i ll give reward points for helpful ans
    Thanks & Regards,
    ganesh

    Hi,
    Is a search help program attached for the field group (to which this PC-UI field belongs) in transaction CRMC_BLUEPRINT?
    Regards,
    Annu

  • Problem with running a program under Labview 8.6

    Hello,
    I am writing you this to ask for your technical support to fix the problem I am facing at our Lab at University of California, Irvine.
    Ms. Vanessa Trujillo has kindly come to our lab a couple of times and tried different things to resolve the issue, but unfortunately the issue is not resolved yet. Here is a summary of the problem:
    We used to use Labview 6.1 for our fatigue testing and data acquisition.
    Our
    program worked just fine under the 6.1 version We recently upgraded our software to Labview 8.6. We have also purchased a new computer that has higher capacity than what your website requires for Labview 8.6. The new computer has Windows Vista We transferred our old program/subprograms from the old computer under Labview
    6.1 to the new computer with labview 8.6. However our program that worked fine with the 6.1 version is not working with the updated version (ver 8.6).
    There
    are 6 errors in the error list. It appears there are six files of my program missing under the new version, even though we transferred all files.
    The software searches for those files but can't find them.
            For example one the box pops up indicates:
            loading:
                        <vlib>:\Daq\lvdaq.dll
            searching:
                        C:\Program Files\National Instrument\LabVIEW 8.6\instr.lib\Agilent34401\public\utility
            I get several message like this. I have to cancel/ignore them all to be able to open the program.
    When we go to VI's under Measurement I/O there is nothing (empty).
    We use a PCI-MIO-16XE-50 for our data acquisition During Labview installation on the new computer, I was asked if I wanted to install the device drivers. I had two options, "Now" or "Later", I picked Now but I didn't have the DVD's/CD's for the device drivers. Therefore I had to select later to complete my software installation Later after Labview 8.6 installation, we installed the device drivers (traditional Ni DAQ and Ni DAQmx) from the two old CD's we had in our lab from a couple of years ago (the CD's were Ni DAQ 7). after installation, the PCI board on the computer was recognized by the device driver. However we still could not run our program under the new version of Labview (same situation and the same messages) I called 1-866-275-6964 on 9/2/08 and talked to Grant (service number:
    1228841). He recommended that I download and install the updated version of device drivers.
    Since I didn't have the DVD/CD for updated device drivers, I contacted Vanessa Trujillo. She gave me the DVD for the updated Ni DAQ (Traditional and mx).
    But
    when I tried to install the updated device drivers I got a message something like "some unsupported filed have been detected,..." so the updated device
    drivers were not installed. It should be noted that up to here we still had the Ni DAQ (traditional and mx) installed on the computer from our old CD's (Ni DAQ 7).
    Vanessa and I talked to Tom at the technical support department. He recommended that we download and install the Beta xx version for Ni DAQ since we were using Windows Vista. Mike put the Beta software on the Ni website/outgoing so I could download and install it. He asked me to uninstall the traditional Ni DAQ that we had on our computer from the older CD's. He
    asked me not to un-install the Ni DAQmx (that we had installed from the old
    CD). I was able to download the Beta software, however I could not install it since I got a similar message that some unsupported files were detected.
    Right now we don't have any version of traditional Ni DAQ installed on the
    computer but the NI DAQmx (from old Ni DAQ 7) is still installed on the computer. Vanessa let me borrow her new Ni DAQ DVD but as I explained I am not able to install the device drivers.
    Vanessa - Did I miss anything?
    Please advise. My cell number is 619-778-2033. I will be at our lab at UC,
    Irvine at 2:00pm (CA/Pacific time). Please call if you have any questions.
    Thank you

    To me, it looks like you are missing some of the drivers and subVI's used in your program.
    Whatever device you are using to measure fatigue or any other device probably came with a driver.
    You need all of these drivers installed on this new computer.
    Also, any subVI's and libraries you use in the program must also be installed on the new computer.
    Whenever you get a message that says you are missing some component (the ones that you said you press 'ignore'),
    see if you can find that library or subVI on the older computer. If so, save it to something so you can transfer them to the new computer. 
    Cory K

Maybe you are looking for