Assign the routine against ZY06 output type in output procedure

Hi
I am creating one routine for Tcode VOFM and requirements Output control and I have to assign this reoutin against ZY06 output type in output procedure.Now How can I assign this to output type in output procedure?
Can anyone tell me all procedure.
thanks

hi patel,
chck with this link
VOFM Transaction
Reward with points if it is helpful.
Regards
Alfred

Similar Messages

  • Output Types and output determination procedure

    Hi All,
       What is the output type and output determination procedure for the following:
    1) Credit Memo Request
    2) Credit Memo
    3) Debit Memo Request
    4) Debit Memo
    Regards
    Ashis

    Hi Ashis,
    As per the standard
    1) Credit Memo Request-
    Procedure-V10000
    Output type-BA00
    2) Credit Memo
    Procedure-V10000
    Output type-RD00
    3) Debit Memo Request
    Procedure-V10000
    Output type-RD00
    4) Debit Memo
    Procedure-V10000
    Output type-BA00
    I hope it will help you,
    Regards,
    Murali.

  • Filtering Output Types during Output Determination (for Billing)

    Hi Gurus,
    My requirement is to filter out a few output types at the time of output determination from the procedure so that performance can be improved. Can you point out the specific place I can code for this?
    Is there some FM which is called for output determination,, which I can enhance for my requirement? Or any user exit that I can use for this? Please help!
    Regards,
    Rahul

    Hi Rahul,
    In that case you gotta use a new requirement inside your procedure.
    Go to Tx NACE, select your procedure and create a requirement rutine which compares the sales organization in your Z table. Using sy-subrc = 0 in case the query finds a value and sy-subrc = 4 if don't.
    This way you can determine the output types according to your relation in your Z table.
    Then use this requirement in all the output types of your procedure.
    I hope this helps
    Regards
    Edited by: John Smith on Jul 22, 2011 12:04 PM

  • Difference between "output type" and "output medium" in interface

    Can comebody kindly tell me the difference between "output type" and "output medium" with respect to interface?
    Thanks,
    Max

    Hi,
    Output medium means , how you wants to see the output like
    Printout, Fax, Mail, or EDI output etc
    Output type/Condition Type means for every Application document an Output type is create for the Output Message determination, this is linked with the Condition records, Medium, Program and the Output Script or smartform.
    reward points if useful
    regards,
    ANJI

  • Change language of output type in output type condition?

    Hey Team ABAP,
    subject is MM output type determination for PO.
    Standard finds his customized output type and sets communication language of supplier as output type language.
    I need to somehow change that, as we dont want to print our PO´s in supplier language but in logon language.
    I didnt found a way to customize it in a way that it determines the output type with logon language. So i thought: "well, lets do it in a condition then".
    I coded a new condition and set that condition in the OT scheme for desired OT.
    Problem is that manipulating XNAST[] at this point doesnt really make any impact. copndition runs in main program SAPLV61B which is actually the main program for messaging, so i´m at the correct nast and dirty assigns cant help me either.
    I guess my problem is cause SPRAS is actually a key field of NAST respective XNAST then.
    Besides, i cant just goto the driver program and set nast-spras = sy-langu there, as we want to make use of the language of the output type.
    What i want is: output type gets determined in logon language, but when user decides to change the language it should take effect.
    Any ideas?

    well one more addition to this:
    Setting that checkbox does what i want, but only language wise.
    Setting it also prevents you from beeing able to assign a partner to that output type which again is bad.
    So now i end up having a problem without the checkbox and as well with the checkbox.
    Just wanted to let you know... beeing on my way to modify FM messaging then.

  • Assigning the SAP CRM 7sales transaction type to view in WEB UI?

    Hi CRM Experts,
    Can anyone show me th path or TCode, where the Business transaction types (Leads, Quotation and orders) are assigned in the backend of SAP CRM to reflect the same in the front end i.e.,  WEB UI?
    Would appreciate responding  ASAP.
    Regards
    Succhi

    Yes, as Jan said, this is done in basic customaziong of transaction types under spro>crm>transactions>basic settings>define transaction types. There you define for each transaction type the Transaction Category that it is using. Like for lead it is BUS2000108, for opportunity it is BUS2000111 and for quotations and orders it is BUS2000115. Quotations and orders have the same transaction category but then it depends on the customization of item categories that are assigned to the transaction type if they behave as order or as quotation.
    Regards.

  • Call the Function against a select query in 500 procedures...

    Hello Gurus,
    I have a scenario, where i had made one function(UDF Function) to calculate something and in every procedure i call that function and calculate my requirement.
    Yesterday, i made a select query using reg exp for the same calculation..
    So my question is, what should be the proper approach..
    I need to implement this on 500 procedures...
    And the UDF function is
    CREATE OR REPLACE FUNCTION "UDF_TEXTSPLIT" (
    p_list VARCHAR2,
    p_del VARCHAR2 := ','
    ) RETURN split_tbl pipelined
    IS
    l_idx PLS_INTEGER;
    l_list VARCHAR2(7999) ;
    l_value VARCHAR2(7999);
    BEGIN
    l_list := p_list;
    LOOP
    l_idx := INSTR(l_list,p_del);
    IF l_idx > 0 THEN
    pipe ROW(SUBSTR(l_list,1,l_idx-1));
    l_list := SUBSTR(l_list,l_idx+LENGTH(p_del));
    ELSE
    pipe ROW(l_list);
    EXIT;
    END IF;
    END LOOP;
    RETURN;
    END Udf_Textsplit;
    I have made this query:
    SELECT a.b,z. b1 FROM
    (SELECT ROWNUM d,REGEXP_SUBSTR(str1, '[^> ]+', 1, LEVEL) b
    FROM (SELECT 'xxx>zzz>gg' str1 FROM dual)
    CONNECT BY REGEXP_SUBSTR(str1, '[^> ]+', 1, LEVEL) IS NOT NULL)a,
    (SELECT ROWNUM d,REGEXP_SUBSTR(str1, '[^> ]+', 1, LEVEL) b1
    FROM (SELECT '100>500>20' str1 FROM dual)
    CONNECT BY REGEXP_SUBSTR(str1, '[^> ]+', 1, LEVEL) IS NOT NULL)z
    WHERE a.d=z.d
    Do i use the same select query in all 500 procedures or call the (UDF Function) in every procedure..
    So which will be faster...
    Your approach would be very much appreciated...
    Thanks,
    Haraprasad...

    Hmm, do I edit 500 procedures to replace a function call with a SQL statement, or edit 1 function to use a sql statement instead of the current algorithm?
    This is why we use code modules that do one thing and do it well. As long as the new version of the function takes the same arguments and returns the same results as the old, then the callers will never know that the way the function works has changed.
    Whenther you put the select statement in 500 procedures, or 1 function, there will still be a context switch every time you use it. The tiny additional overhead of calling a function before the context switch would be unnoticeable.
    John

  • Configure Routine of VL02N with output type

    Hi,
    I need to create a routine for VL02N for goods issue and configure it with an output type....can anybody please provide the config steps .
    How to link the routine with the output type.....
    I have created routine in tcode VOFM under output control with application area V2 (shipping).. Next what are the steps i need to follow
    Edited by: subhajit bhadra on May 12, 2010 7:53 AM

    Hi,
    Go to NACE -> Select application V2(for delivery) -> Click on Procedures -> Select the procedure -> click on controls -> Add the output type -> Assign the routine .  I think routine '1' will serve your requirement.
    Regards
    Vinod

  • Assign an output type to a message type

    Hi all,
    How do I assign an output type to a message type?
    Thanks in advance.
    JM

    You maintain the output type determination settings for the inbound and outbound delivery handlers, so that output types can be determined for deliveries, pursuant to the message control mechanism.
    <b> a.      You maintain the output types in Customizing for Logistics - General ->upply Chain Planning Interfaces (SCPI)-> Auto-ID Backend Integration->IDoc Processing ->Operational IDocs -> Output Type Determination -> Output Type Determination for Inbound/Outbound Deliveries-> Maintain Output Types</b>.
    reward points if it is usefull....
    Girish
    <b></b>

  • Assign the desired activity type to cost center 1102 within cost center acc

    Dear all,
    I am facing the problem mentioned as subject during entering the activity type.
    please guide me to overcome this problem.
    rgds,
    Vijay Mankar

    Hi Vijay,
    The problem is as expected by me it is due to assignment and acitivty price details missing. This needs to be created in KP26.
    Once you enter txn KP26 you need to type active version generally "0", then enter period 1 to 12, Fiscal Year "2007" and populate field "Cost Center" and "Activity type" now use "F5".
    In the overview screen populate the value "Fixed Price" and "Variable Price" and save the transaction. (We are entering price for individual period but same across all period)
    Now try creating Workcenter and assigning the Cost Center and Activity type. It should work.
    Reward your points,
    Regards,
    Prasobh

  • Output type determination in Billing document

    Hi,
    I have a query reg automatic determination of output type in the billing document. The scenario is, For an invoice, two output types are determined automatically for all invoices. But the third output type is determined based on Shipping point. For Example say, output type IFIB should be determined if Sh.pt is A and IFIT if sh.pt is B. This is controlled thru "Requirement" assigned to the output types in output det procedure.
    The problem is, for a particular document IFIB appears though the sh.pt is B, Now i have to find out whether it is determined automatically or manually. I have checked the following
    1. The "manually changed" field is not flagged in the "further data" of this output type. I believe, if it is not ticked, then the output type is determined automatically and no manual change was carried out. Am I right?
    2. When i checked the "determination analysis", I find that the output type with the message "Output ignored (Requirement not fulfilled)". If the output was determined automatically, then "output xxx found" should appear right? When the analysis says it is ignored, then how come it can appear automatically?
    I am confused over this contradictory findings. Plz tell me whether my assumptions stated above are right. Kindly suggest me alternative ways to find out whether it is determined automatically or manually? If it is determined automatically, on what conditions?
    Thanks in advance
    Suresh

    Hi Suresh,
    In an output determination, it may tell  u that the output type is ignored because of un-fulfilled requirement, but it will still automatically appear in Header-> output, but u need to check the actuall processing status, whether is 0,1, or 2. I assume for your case it will be 0 (not processed, meant for manual processing instead), 1 (processed) and 2 (error occurred).
    Another thing which is essential is that, in order to let the system successfully fulfill your determination criteria, u need to assign output type with correct access sequence, for example 1 access sequence by sales org/billing type for output, another 1 is by sales org/shipping point. Or u can simply create 1 access sequence with 2 condition tables.
    After that u need to create condition record for each output type, u do this in t-code VV31.
    By rite, during transaction (issue output), system will be able to search for those condition record and output type will be automatically appear, providing if there is any rquirement routine in your output det. proc (appl = V3) returns TRUE.
    Cheers,
    Benny Andre

  • Reg. Output type for PO

    Dear All
    I create new one output type(TES) instead of NEU.But which is not coming when I give message for my PO.
    What are the steps.Please help me.
    Rajj

    hi
    check following steps u have followed while defining TES output type
    Maintain Output of Purchase Order
    1. Condition Table
    SPRO > Material Management> Purchasing -> Message -> Output Control->Condition Tables->Define Condition Table for Purchase Order
    Select:
    Purchasing Doc. Type,
    Purch. Organization,
    Vendor
    2. Access Sequences
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Access Sequences->Define Condition Table for Purchase Order
    3. Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Types->Define Message Type for Purchase Order
    Ex:
    EF---> TES
    Select “TES” and double click on “Mail title and texts” and go to
    EN- New Purchase Order Print Out,
    Select “TES” again and double click on “Processing routines,
    Select “TES” again and double click on “Partner Roles
    4. Message Determination Schemas
    4.1. Message Determination Schemas
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Maintain Message Determination Schema
    4.2. Assign Schema to Purchase Order
    SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Assign Schema to Purchase Order
    5. Partner Roles per Message Type
    SPRO -> Material Management-> Purchasing -> Message -> Output Control-> Partner Roles per Message Type ->Define Partner Role for Purchase Order
    6. Condition Record
    Navigation Path: SAP Menu-> Logistics -> Material Management -> Purchasing-> Master data->Messages-> Purchase Order-> MN04-> Create
    Now you create PO(ME21N) and save it. Go to ME22N and print the PO by giving  output type TES.
    Vishal...

  • The routine is not active in Quality server :Urgent

    Hi All,
    I have assign the routine in the pricing procedure and it works fine in developement server. But it is not fetching the proper value on the quality server .But the routine shows active on the condition type . Is there anything to do more . The basis people also check that but there is no problem in transport .
    Need help ugently.
    Regards,
    Abhijit Dutta.
    SAP -SD .
    Call:9920863887.

    Hi Abhijit,
    The new routine must not have been activated properly while transferring to quality system. Execute program RV80HGEN to regenerate all the VOFM routines. The output of this program denotes that all routines were activated
    Regards
    Nadarajah Pratheb

  • Attachment of output type to Invoice

    Each type after i create a Invoice i have to go into Header and assign the output type (RD00) for printing purpose is there any other method wher i can give it commonly,  so that i dont have to go and give it every time i create an Invoice. Like some mass attachment//... Please help me frnds.

    Hi,
    Output determination works as per follows:-
    1.First you will have to create a output type.
    2.Assign output program to this output type either SAP script or Smartform.
    3.Assign this output type in output determination procedure along with the desired access sequence.
    4.Assign this output determination procedure to your document type Order/Delivery/Billing
    5.Maintain the condition record for the access sequence or you can maintain manualy in order/delivery/Billing
    6.You can also add the output type manually in the order/Delivery/Billing.
    Reward points if helpful.
    Regards,
    Amrish Purohit

  • Transmission Medium NACHA = '8' Special function-executing  output type

    hi All,
    i have requirement that through the Transmission medium '8' i need to assign the custom program to store  the Smartform as PDF in the desktop location or the location where the user selects.
    if i assigned the  transmision medium as  8 for particular output type say ZAP1 . the particular output type is not getting displayed when i try to use issue output option through va22.
    any pointers will be highly appreciated.
    thanks.

    ok, if you set for your output type NAST-VSZTP=3 you can add code in your print program to display popup window in which
    user specify own path for storing PDF...
    but if output type will be created in background ( VSZTP ne 3) then
    you must save PDF in server path...and user may download it by
    cg3y...
    regards, darek

Maybe you are looking for