Smartform in M706 MIGO

Hi gurus,
in transaction M706 "Processing Routines" configuration MIGO message (e.g. WE03)  there is a field called "PDF/Smartform Form". We would like  assign a smartform, not a sapscript, ¿Does exist an smartform standar in system?
Thank you!

Hi Daniel
There is no standrad smartform for this to use as of now.
SAP did not develop any. So if you want to assign a Smartform there, then you need to write a new custom form(smartform) and then you can assign there.
Here when writing or developing your own form, you can select format, design and req. fields and develop the form.
I think this is clear.
Post the points if this is Ok
Thanks Prasad

Similar Messages

  • Print Prog-Auto Print Barcode Label for Goods Receipt(MIGO) using Smartform

    Hi Guru's
    I have created a smartform that prints barcodes on a label.
    My tests print successfully to the Printronix thermal label printer.
    Is there perhaps a SAP Standard print program that i can use in my output type that will call my smartform upon goods receipt(MIGO)?
    please bear in mind that i am looking for a print program that calls a SMARTFORM. not a sapscript.
    /SMB40/M07DR does not exist on my system. and I am going to use output type WEE1 - for LABEL Printing
    Awaiting your feedback.
    Thanks in advance geniuses!

    Good luck dude,
    In that same program I noticed We01 that will print a smartform GR. I think if you use form entry_we01 in your output control you should do well.

  • MIGO creating New Smartform for BARCODE label

    Hi ,
    Creating a new smartforms form MIGO Tcode --- i.e. BARCODE LABEL. - From scrach
    Input is P.O No. but while writing program from where I have to take input for this ....?
    After writing logic where to attach driver program in NACE. ?
    Tks:
    Maddy

    HI ,
    As suggested you  can use the standard smartform , by downloading  the package or else you can go for  your own smartform  and print program do it as follows :
    for Po  the standrd program uses the form entry_neu  . you call this form in your custom driver program . say in ZPOUCHASE ORDER
    form entry_neu using ent_retco type sy-subrc
                                   ent_screen type c.
    perform get_data.
    *****" here get the po number from  nast table  like this  " move nast-objky(10) to g_ebeln." ******
    perform get_formname.
    get it like this : select single sform
        from tnapr
        into tnapr-sform
       where kschl = nast-kschl " Output Type
         and nacha = nast-nacha " Message transmission
         and kappl = nast-kappl." Application
      if sy-subrc = 0.
        g_formname = tnapr-sform.
    endif.*********************************
    perform zcallform.
    use call function 'SSF_FUNCTION_MODULE_NAME' **************
    perform zupdatenakt.
    do it like this  **********
    nast-vstat = 1.
      nast-usnam = sy-uname.
      nast-datvr = sy-datum.
      nast-uhrvr = sy-uzeit.
      call function 'RV_MESSAGE_UPDATE_SINGLE'
        exporting
          msg_nast = nast.
    endform.
    assign this driver program in NACE transaction  along with the smartform  name
    *****Please use the proper    condition type. NEU in this case "
    and since you are getting the value of PO number  from nast  you  can pass this as importing parameter to your custom smart form
    and once the po number is known the other values can be easily extracted

  • Create barcode labels in the background, immediately creating the MIGO

    Dear all
    I'm interested to create barcode labels in the background, immediately after creating the MIGO.
    1. Is there any standard program that I can integrate my code that sends data to SMARTFORM?
    2. Is there a BAPI that gets, in the background, the data created in MIGO? Without knowing the number of document?
    3. Is it possible to print the barcode labels as print the document? But another special printer?
    4. What program and routine form I write transaction M706?
    I'd appriciate to get some help.
    Thank you.
    Best Regards
    judee.
    Edited by: judeeo on Dec 22, 2011 5:59 PM

    judeeo
    You can create an output record to generate labels immediately after a MIGO transaction has posted. Your ABAP team can copy the standard program and may be able to use the same routine that is curretnly asssigned to output type WE01, WE02, or WE03 (for Receipts), or WA01 - WA03 (for Issues). You can also identify a smart-form label in the processing routine for the movement type in config. because the output record is created automatically <B>after</B> the MIGO is posted, and contains all of the MIGO data, including material doc number.
    <B><I>SPRO path:</B> Materials Management > Inventory Management and Physical Inventory > Output Determination
    - Maintain Output Types
    - Maintain Output Determination Procedures</I><BR>
    You can also have that output print to a specific printer via <B><I>SPRO path:</B> Materials Management > Inventory Management and Physical Inventory > Printer Determination</I>

  • POSTING_ILLEGAL_STATEMENT in MIGO for collective slip

    Hi all.
    I am using smartforms for printing GI slips in MIGO. The problem is that when i want to print the document for collective slip i get a short dump with error: POSTING_ILLEGAL_STATEMENT. I have looked over the internet for a solution but i could not find one.
    Any ideas ?
    Regards,
    Cristian.

    Hi,
    For correct and quick response, Try posting your question in this forum -  
    SAP Community Network Forums » SAP Solutions » ERP SD Sales
    Thanks,
    Shambhu.

  • Finding Program for triggering Print Program (MIGO - Goods Receipt)

    Hi all,
    Currently, I have developed customized print program and SMARTFORMS for Goods Receipt via MIGO, with output type ZZGR.
    Typically, this is a inter-plant transfer, where Plant A will issue a Delivery Order to Plant B, and Plant B will post goods receipt via MIGO (Movement Type 101), using Delivery Order number. As soon as the Material Document is posted, the SMARTFORMS shall be triggered by customized print program, in order to print out the goods receipt document upon material doc posted.
    The config for output determination (via TCODE NACE) for goods receipt is configured. I have tested post a goods receipt using Delivery Order, and Material Document is posted successfully. However, I got a message from SAP Inbox (Businees Area), saying that my Material Document having an update error, and the root cause is specifically from calling Function Module to trigger Smartforms in the print program. From tcode ST22, I realized that the error is due to empty parameter being passed to the function module (where the parameter is required field for further processing in Smartform).
    In order to rectify why empty parameter is bieng passed, I will have to debug the print program, after GR posted from MIGO. Therefore, can someone shed some lights on how to perform a debugging process, or any standard sap program involved, as I understand that the print program is triggered (in background) after GR posted?
    Also, can I know why the Material Document will not be committed to MKPF table after GR posted, is it due to the update error from the above mentioned?
    Many thanks.
    Best regards,
    Patrick
    P/S: I'm using SAP ECC6.

    Actually, this print program is being triggered in the update processing.
    Put a breakpoint in your driver program.
    In MIGO, before pressing the SAVE button start debugging.
    Press the SAVE button.
    Start the update debugging by Settings > Update Debugging.
    As soon as you continue in debugging, it would open another debugging session for the Update debugging. You can press continue and it would stop at your breakpoint.
    Regards,
    Naimesh Patel

  • Print migo - output device

    Hi everybody,
    when posting a gr with a migo (NDR=X and 3-collective slip) a new spool request is created. The problem is that it should be printed inmediately and with output device X01. (in su3 it is configured this way and also in the condition record - nace with we03) but when I enter into the spool and double click a request it says that the output device is LP01, and it is not configured for my conection, so it does not print it.
    I wanted to know why is it taking that output device and from where is it taken, because I have done the configuration with the other one.
    Thanks in advance,
    Rubé

    Hi,
    It seems that the system is still reading the default data for the output type M706. Please recheck the paramerets and maintain the condition records again , either in NACE or in MN22, thsi should help, also change the communication method and assign your printer.
    Regards

  • MIGO printing material document when saving.

    Hi,
    how enabling automatically the printing of materials document in MIGO when saving ?
    Best regards

    The steps are the following:
    trx M706 or SPRO->Matl Mgmt->Inv Mgmt and Phy Inv->Output Determination->Maintain Output Types, for the Output types WE01, WE02 and WE03;
    Default Values: Dispatch Time is 3 or 4 as per reqmt. and Tr medium is 1, Print Parameter is 7;
    trx MN21, for output type WE01, WE02, WE03 select Tr Type WE, Print Version 1, 2, 3, maintain Print Item       as 1.
    For enabling printing when user post a goods receipt is necessary set in trx SU01 for the users the parameter NDR and activate it with an X.
    This will set the tick in the field XNAPR in MIGO.
    At every logon system will propose the field checked
    If the user will remove the tick or will put again the tick during a session system will remember
    the last setting.
    At the following logon system will propose again the above field checked
    System will also remember if user has set in MIGO "GR Note Vers1 or GR Note Vers 2 or GR Note Vers3" for the entire session and furthers logons.

  • SMARTFORMS number of copies

    Hello.
    I'm producing a simple smartform from MIGO (good receipt).
    In the initialization of the smartform I'm setting the fields output_options-tdcopies to 2 in some cases.
    I can see in debug mode that this value is being perfomed correctly.
    Although - when the print windows appears, it shows the default value for number of copies "1".
    How come ?
    Thanks.

    Hi,
    Do you use Frontend printing?
    If so, ensure that the option "use_copies" is set to '0' in the resgistry of the Frontend PC as described in SAP Note #1149136.
    Regards,
    Aidan

  • Document printing in 101 MIGO automatic

    Hi experts,
    I have two messages on 101 movement in MIGO: entry document WE01, and labelling ET01.
    Now: I wanna set the automatic printing when saving the 101 movement. Today only the first item has a automatic printed document when saving and for WE01.
    After saving if I go to MB03 only the first item has the message line with 'WE01'.
    Can you help? I've set some standards in M706, MN21 and other transactions.
    Thanks,
    Garcia.

    Hi Garcia,
    In Mantain Output types for the Lable ET01 in the default value tab see that the option "send immediaetly(While saving) against Dispatch Time is mantained to get the printout immediately.
    DBehera

  • MIGO print out debugging

    Hi Folks,
    I have a requirement in MIGO and I have to debug the smartforms called, do you have any idea how I can make it? the setting is 4 printed immediately. I had set a breakpoint in the smartforms but nothing happens when I execute.
    Appreciate your quick response.
    thanks.
    Regards,
    John

    Hi Jb,
    Please try to use update debugger using below steps,
    Put a breakpoint in your driver program.
    In MIGO, before pressing the SAVE button start debugging.
    Press the SAVE button.
    Start the update debugging by Settings > Update Debugging.
    As soon as you continue in debugging, it would open another debugging session for the Update debugging. You can press continue and it would stop at your breakpoint.
    Regards,
    Prasenjit

  • Smart form with Migo

    Hi ...
    I want to attach a smart form out put type with migo .. when we print that out form should displayed ... kindly help that for which program i make a Z copy and where should i attach that Zprogram and Smartform in SPRO .....
    Regards
    Ammad

    Hi,
        The Developed Zsmartform is to be placed in the Smartform name and the Driver program need to be copied to Z with all includes.
    The following link shows how to copy a std program to ZProgram.
    [Re: Printing Purchase Order from ME9F using custom program and smartform]
    Regards,
    Vijaya Lakshmi.T

  • How to print the GR tag using customised output in TCode MIGO?

    Hi All,
    I created one customized output type for transaction MB90, it working fine for this transaction. So now my client want same smartform to be used in MIGO transaction. I confirgured same, whenever we post the document in MIGO it should the print the GR tag automatically, its not happening i.e its not prininting the GR tag.
    I want to print the GR tag from migo using z-output type. Pls let me know the solution.

    Hi,
       Please chek the following.
    1. Txn. NACE... Choose "ME" and click on "Output Types" ... check in you output types did you maintained the Form (WE01, WE02,WE03)
    2. Txn. NACE....Choose "ME" and click on "condition Records"... here maintain the details
    Trans./Event Type: WE
    Print Version: 1/2/3
    Print iten: 6
    Med: 1
    Dat: 4
    Lang: EN
    Under Communication maintain the "output Device" and flag "print immedi" and "release output"
    SPRO>MM>Inventory Management and Physical Inventory-->Output Determination..
    Here maintain the details
    1. Maintain Conditions
    2. Assign forms and Program
    Regards
    GK.
    Edited by: Gnana Kumar on Nov 11, 2010 11:46 AM

  • Standard smartform for Goods receipt slip version 3

    Hi all,
    I need to copy and modify a smartform for Goods receipt slip.
    How do we find out the main program(driver program) for a smartform.
    <b>In my case the smartform name is /SMB11/MMGR3_A</b>
    Regards,
    Kaushal

    I used /SMB11/BL_MMGR1_L in my choice and I then searched programs using /SMB11* until I found something that looked like a match in it's text. 
    I can only tell you that after configuring via tcode NACE application ME and output type WE03 (because again the text matched what I was wanting to do) with program /SMB40/M07DR it did give me the results I wanted.  This is a specific answer and NOT the more general answer you might have really wanted.  There is much discussion in forum for that more general question.  Personally until SAP sees the wisdom of maintaining a table to make a more direct search key more possible rather than a full SAPSCRIPT, SMARTFORM, PDF search we have some agony to endure.
    Now if can you tell me where (table & fields) number of containers found on tabstrip Quantity of tcode MIGO is stored and we can call this even.
    GOITEM-ANZGEB is NOT the answer I want to hear as structure names do not count and it is not defined in any structures of the global  settings.
    Good Luck!!!

  • Modify MIGO print label

    I am using the following for printing the label.
    I am using output type wee1
    Program SAPM07DR
    FORM routine ENTRY_ETIE
    Form MM07ET , output type WEE3, WE03
    procedure ME0001
    I have 2 barcode and 3 lines,
    I need to add more barcode in this label
    how can I do it.

    Hi Shuva,
    I have never dealt with label printing and in an urgent issue I have to visit client to do config for label form output determination at MIGO. Can you please let me know where its config is done. Is it same NACE and WE01 etc with smartform name and program name. If yes then what program name is taken from the list. if you reply bit early it will be appreciated.
    REQUIREMENT is - smartform for label is ready by some third party and I have to attach that for MIGO and LT06 Transfer Order printing? How can I do and what do I need to do for that.
    Thanks and Kind regards

Maybe you are looking for

  • Desktop software 7.1

    Is it necessary to download desktop software 7.1 on a PC in order to transfers and/or sync files from a PC onto a BB Playbook? Is it necessary to use HDMI cable to transfer/sync movies, videos and songs from a PC to a BB Playbook, or USB cable and WI

  • Summarizing Three (3) Formulas (When Using "Sum" Within Each Formula)

    I'm getting an error (i.e. 'This field cannot be summarized.") when trying to summarize three (3) formulas.  I figured out that it is probably because that there is a "Sum" in each formula.  I need totals only for specific officers (not all officers)

  • Siebel EAI Adapter

    Hi, I am configuring Siebel 7.8 for my Oracle 10g adapter(10.1.2.0.2). I am a starter so please help me out.. I have downloaded the base applications files for Siebel (7.8.2) (6 parts) from the edelivery.oracle.com site.. Also, i have downloaded the

  • How we differ the different clients data in datasource?

    Hi,      Im in confussion please anyone clarify it...        My confussion is My Company have two clients A and B and both are RETAIL based. The A client is implemented in one server using  datasources 0FI_GL_10, 2LIS_13_VDITM, 2LIS_03_BF and 0EC_PCA

  • "contacts" cards missing, count varies, spinning ball

    I have 3 related issues and need your help! On my CONTACTS, on the left side there are 3 places from which contacts comes 1. Contacts A. All Contacts B. All iCloud C. All Google There also is "on my Mac" and "Smart Groups". There are a large number o