Setting the PO output type

Hi All,
I have requirement where I need to set the output type of PO to XML always.
Has anybody done this before? Please let me know.
Regards
Amitabh

Hi,
For XML,XI is mandatory.
You first have to activate XI in IMG.
Then, set XML as the default output in IMG (PO Output Settings/Actions).
Then, go to the vendor master (from web side) and select XI as the transmission.
If you dont want to use XI,see the foll thread for workaround:
Re: Transmitting PO using XML
Related  threads:
Re: How to send PO to XI using BBP_PO_SEND_XML
XML PO Transfer To Vendor in SRM 5.0 via NW2004S/PI 7.0
Re: SRM 4.0 Send PO to XI
Re: Exporting PO from standalone
Re: Urgent:SUS PO not appearing in the PO list for vendor's user
Re: SLD system has not been assigned ? :-(
BR,
Disha.
Pls reward points for useful answers.

Similar Messages

  • Problem in  assign the delivery type to the existing output type

    Hi
    There is a problem in assinging the existing Output type to the delivery type.
    In, NACE i have maintained the output type for the procedure and also through VV21 i have created the condition type with the combination of shipping point/delivery type.
    But system automatically not determining the output type when we create the outbound delivery. This output type is to trigger the EDI in terns..
    Can any one guide me what are the setting to be done for the same?
    Edited by: V. Mariappan on Jul 5, 2009 12:40 PM

    Hi,
    Check whether you have maintained the condition records for output for the above combination & also the Print device in the Communication tab & Print immediately settings.
    If you haven't maintained the above, do the same & check.
    Thanks & Regards,

  • Does the advanced queue support setting the pay load type as array/table?

    Does the advanced queue support setting the pay load type as array/table?
    if yes, how to write the enqueue script, I tried to write the following the script to enqueue, but failed, pls help to review it . Thanks...
    ------Create payload type
    create or replace TYPE "SIMPLEARRAY" AS VARRAY(99) OF VARCHAR(20);
    ------Create queue table
    BEGIN DBMS_AQADM.CREATE_QUEUE_TABLE(
    Queue_table => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_payload_type => 'LUWEIQIN.SIMPLEARRAY',
    storage_clause => 'PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 TABLESPACE USERS',
    Sort_list => 'ENQ_TIME',
    Compatible => '8.1.3');
    END;
    ------Create queue
    BEGIN DBMS_AQADM.CREATE_QUEUE(
    Queue_name => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_table => 'LUWEIQIN.SIMPLEQUEUE',
    Queue_type => 0,
    Max_retries => 5,
    Retry_delay => 0,
    dependency_tracking => FALSE);
    END;
    -------Start queue
    BEGIN
    dbms_aqadm.start_queue(queue_name => 'LUWEIQIN.SIMPLEQUEUE', dequeue => TRUE, enqueue => TRUE);
    END;
    -------Enqueue
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    ------Get error
    Error starting at line 1 in command:
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    Error report:
    ORA-06550: line 17, column 3:
    PLS-00306: wrong number or types of arguments in call to 'ENQUEUE'
    ORA-06550: line 17, column 3:
    PL/SQL: Statement ignored
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause: Usually a PL/SQL compilation error.
    *Action:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    but when I use the following script to enqueue get error. Pls help to review. Thanks...
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    ------Get error
    Error starting at line 1 in command:
    DECLARE
    v_enqueueoptions dbms_aq.enqueue_options_t;
    v_messageproperties dbms_aq.message_properties_t;
    p_queue_name VARCHAR2(40);
    Priority INTEGER;
    Delay INTEGER;
    Expiration INTEGER;
    Correlation VARCHAR2(100);
    Recipientlist dbms_aq.aq$_recipient_list_t;
    Exceptionqueue VARCHAR2(100);
    p_queue_name VARCHAR2(40);
    p_msg VARCHAR2(40);
    p_payload LUWEIQIN.SIMPLEARRAY;
    BEGIN
    p_payload(1) := 'aa';
    p_payload(2) := 'bb';
    SYS.DBMS_AQ.ENQUEUE(queue_name => 'LUWEIQIN.SIMPLEQUEUE',enqueue_options => v_enqueueoptions, message_properties => v_messageproperties, msgid => p_msg, payload => p_payload);
    END;
    Error report:
    ORA-06550: line 17, column 3:
    PLS-00306: wrong number or types of arguments in call to 'ENQUEUE'
    ORA-06550: line 17, column 3:
    PL/SQL: Statement ignored
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause: Usually a PL/SQL compilation error.
    *Action:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Copy the standared output type to custome one

    Hi,
    i need to copy the BA00 output type to custome output type say ZB00. then it will appear my custom output type while we output a sale order. kindly give solution for this...

    hi,
    i done by following your steps.i can able to copied. then i have problem in output display while we using VA02 or VA03 to issue a sales order output. In that my customized output type has not been populate in that pop up window. so could you plz guide the steps what i have to do?

  • Two print programs using the same output type in t-code v/40

    Hi,
    I am trying to use the same Output type RD00 to print diferent forms.
    In t-code v/40 we can fill a second Processing but how this work?
    Can someone tell me more about this?
    The final goal is to print diferent forms according to different companies.
               Thank you and best regards
                         João Fernandes

    Hi,
    It is not possible to have 2 different routines to be assigned to one output type in the procedure. I think when you say 2 routines, you are saying 2 logics or you are saying the subroutines KOBED and KOBEV of the routine.
    In all reqmt routines, which is in discussion now, only one of the subroutines will be always called, though I dont know unfortunately which one is this. As you said, that only one of your processing logic works, that is the right subroutine area where the second logic should also be coded. So please move your code from the inactive subroutine area to the active subroutine area. Now you should be able to see both the validations being active.
    Hope this helps. If the case is different, please let us know.

  • How to find out program name to the corresponding output type of invoice..

    hi ALL,
    I want to findout program name to my output type.
    For one invoice functional peoples are configured. Here i know the outtype. But i don't know the program name .
    Can any body please tell me how to find out the program name for the output type..?

    Hi,
    Goto NACE t-code
    Select Billing (V3)
    Press 'Output Types' Button
    In the next screen select the corresponding output type you want.
    Then press 'Processing Routines' in the left pane. You can see the program name
    Cheers,
    Kothand

  • New address to be printed in the delivery output type

    Dear all,
                    For the delivery i issued one output message to take the printout of the shipping label .
    Now i changed the address in the ship to party and again issued the message , still it is taking the old adress only is there any possibility for the new address to be reflected in the output message with out creating the new deelivery numbe .
    Best Regards,
    Kumar

    Hi there,
    In the O/p type form layout, in the ship-to address field mapping check what mapping is done. If the mapping is done to LIKP-KUNNR, then if you change the ship-to address, then the new address will come into the print out if you retrigger the O/p.
    If the mapping is done to pick it from VBPA tables of the relevant sales order, then it willnot update.
    So check the field mapping in the printout.
    Regards,
    Sivanand

  • How to set the date date type to work

    This may be a silly question, but I can't seem to get the Date data type to work for a date account member. When I go into the Planning app and choose an account that I want to set as a date entry account, the web form doesn't seem to show that the date setting works for the account. I even set my account type to be Saved Assumption. For example, I expect to see the date formatted to 10/20/2009 when I enter that value in the web form under my account "Hire Date". I also checked the display options under the Planning preferences. So does anyone know if this function even works on 9.3 or 11.1?

    Hi,
    Sounds like you have not set the evaluation order for accounts. Administration > Dimensions > Evaluation Order > select plan type > move accounts to the other window, apply.
    Try the form again.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Setting the default Output Name for the Export Media dialog

    In File | Export | Media the Export Settings always show the wrong Output Name, from a project I did several days ago. If I change it for this export, the wrong path just comes back again for the next export.  I don't know how I accidently  got it set for the earlier project.  I don't see any way to set it. Could someone tell me where this is set?  I'm running PrPro CS4.
    Thanks

    dkeubnasoieng wrote:
    I'd read earlier the update wasn't a good one so had avoided it. The
    real frustration comes from not finding how I did it a couple months ago!
    I do not know where you read that but there is nothing wrong with the update.
    Here you will find the latest update.
    http://www.adobe.com/support/downloads/product.jsp?product=98&platform=Windows

  • Setting the counter output mastertimebase divider?

    Hello
    I want to output single short pulses with varying pauses. My MuFu DAQ card has 20 MHz master clock rate and 24 bit counter (Good ol'6052E). When I try to output 1 µs with a pause duration of more than 839 ms, I get an error due to mismatch of clockrate and counter bit size with short and long duration. This is explained in great detail in the corresponding help:
    2/ counter clock rate <= X <= 2^24 / counter clock rate. with counter clock rate = master clock rate / divider
    0.1 µs               <= X     <=   16777215 / 20Mhz = 839 ms
    I could strech my limits by manually setting the CO.CounterTimebaseMasterTimebaseDivider to 10. But I've searched all property nodes I could find but I have not found this property.
    Does anyone know where it is hidden, and to which values it can be set?
    Thank you
    Michael

    Hi Michael,
    Unfortunately that property doesn't exist.  There are a few "Divisor" properties available for other subsystems (e.g. see Analog Input timing block diagram below).
    However, you'll notice in the above diagram that the valid divisors of the master timebase are only 1 or 200 (which then gives the AI Sample Clock Timebase).  You can get similar behavior on the counter by specifying to use the 20 MHz timebase or 100 kHz timebase for your source.  However, using the 100 kHz (1/10 us) timebase is going to prevent you from properly generating the narrow 1 us pulses that you require.
    So, you can use 20 MHz or 100 kHz without any additional resources, but 100 kHz wouldn't allow you to have a 1 us pulse, and 20 MHz won't let you have a high or low time of greater than ~839 ms.  You could generate frequencies in between these to use as the counter timebase (either use the frequency output or use the second counter to generate the desired frequency, or perhaps configure a dummy analog task) but of course there would always be a tradeoff between the resolution of the pulse and the maximum time between pulses.
    If you do have the 2nd counter available, here is my suggestion to get the best of both worlds:
    1.  Configure a counter output to generate a pulse every N seconds (I suggest configuring the output to generate at 1/N frequency at 50% duty cycle).  When you configure this counter, DAQmx will choose an appropriate timebase for you.  When N is less than ~1.67 seconds, DAQmx will use the 20 MHz timebase (since both the high and low time would be under the 839 ms).  When N is > 1.67 seconds but below ~335 seconds, DAQmx will use the 100 kHz timebase.  If you intend on modifying the rate of the output (to something above 1.67 seconds) after the task has started you would need to make sure to specify to use the 100 kHz timebase rather than relying on the DAQmx default.  You can't use a built-in timebase if you want to generate a delay greater than 335 seconds, but if you wanted to you could handle this case by checking for it and configuring the frequency output to generate an even lower timebase.
    2.  To generate the actual output signal, configure a retriggerable single pulse generation to be triggered off of the signal generated above.  This signal will be based off of the 20 MHz timebase (assuming you configure a pulse width less than ~839 ms) and so will give you a good resolution on the available pulse widths that you can generate.
    In summary, doing this would let you decouple the resolution of your generated pulse width from the resolution of the delay between the pulses.  The downside is that it uses two counters.
    The other option which I previously mentioned (and what you were asking about) would be to find a timebase that meets the two requirements: 1) fast enough to generate a narrow pulse and 2) slow enough to not roll-over between pulses.  You have 100 kHz and 20 MHz available to you, but you can generate intermediate frequencies using the frequency output.  If you plan on using a counter to generate the timebase instead, you should consider the other option which decouples the two counters.
    Of course, using a device with a higher counter resolution (most newer DAQ devices use 32-bit counters) would probably also resolve your issue depending on the full range of  delays that you need.  The downside here is the cost of new hardware.
    Best Regards,
    John Passiak

  • Is it possible to set the IMB Service Type Identifier on a per record basis

    From not doing any research, it looks like Presort applies the IMB Service Type Identifier to all records in the output file. Does anyone know if it's possibly to specify different Service Type Identifiers within the same Presort job?
    In my specific example I want to enable OneCode Confirm on specific records within the presort job, but not all records within the presort job.

    Hi Jay,
    You are not restricted to a single Service Type ID for every record in a job.  By using the PW.SRVC_Type input field, it is possible to assign different Service Type IDs to your records.
    Here's a more indepth how-to from our knowledge base:
    https://service.sap.com/sap/support/notes/1462718
    Thank you,
    Brandon Law

  • Setting the correct content type

    Hi,
    We store files in a database and the actual uploading and retrieving process works very well.
    However, when serving a request for a file I would like to set the content type the browser can read.
    An example: a httpservletRequest header "accept" comes back with */* - accepting all. Say the file requested is a xls spreadsheet. Since the accept header does not give me any information about the accepted content types, the following possibilities arise for a xls spreadsheet:
    - application/excel
    - application/vnd.ms-excel
    - application/x-excel
    - application/x-msexcel
    Same thing for power point files (.ppt) and others.
    Which of the listed content types do I set as the contentType for the HttpServletReponse so that the browser displays the information correctly?
    Whenever possible I would like to avoid the save dialog and display the file inline in the browser.
    Thanks for the help,
    -Rogier

    Here is the complete list of the right MIME types: http://www.w3schools.com/media/media_mimeref.asp
    You can retrieve it from filename by URLConnection#guessContentTypeFromName(), or add an extra field to the database which saves the MIME type.
    Checkout this FileServlet example for some insights: http://balusc.xs4all.nl/srv/dev-jep-fil.html

  • Search for the t-code where the specefic output type is used

    Hi
    I want to know how can we search for the t-code used  for a  specefic output type in use?
    I have a requirement where in i have a output type, i knwo teh prog name and the form name...
    i know it is used in SD and billing but i am not able ot exactly pin point as to in which t-code to be used..so that i can check the output throught the T-code.
    Experts sugget!!
    Thanks
    Prashant

    Hi
    It is used for a Standard t-code i want to find that T-code. Through NACE the outputtype (which i already have) i can find teh prog name and the form name.
    and through SPRO also its the same info...
    i want to knwo for SD-> Billing->INvoice i can find the output type...i want to knwo what T-code needs to be run and on givign the data and running the out put type from the menu and choosing my OUTput type...and seeing the output in the print format.
    Hope you got my problem.Thanks for the reply.
    Prashant

  • How can I set the HDMI output to 1366x768?

    1024x768 is an option from the ATV to the HDMI Port.
    But my TV is 16:9 and has the resolution of 1366x768 when I plug a computer into the HDMI port.
    If 1366x768 is not currently possible from the ATV, could apple be so kind as to add it,
    thanks,
    Jonathan

    slenpree wrote:
    as previously stated 1366x768 is the resolution of the TV and has not been pulled out of a hat.
    1366 x 768 is the number of pixels in the screen, it remains to be seen whether it's a resolution the TV will accept, but it likely will since it appears to accept 768 lines of resolution.
    However, the Apple TV outputs several widescreen standards for HD and ED, it also supports some graphics display resolutions, presumably for older non-wide screen projectors. The problem with graphic display resolutions is that there are many of them including non-standard resolutions.
    The Apple TV supports Full HD, HD and ED, it also supports VGA, SVGA and XGA, your TV has a pixel array that would fall into a classification known as WXGA which is non-standard to begin with but also includes 4 other resolutions which are also non-standard, WXGA is primarily a 16:10 aspect ration before a 19:9 one, so whilst you may not like it, the pixel array used by your TV has been pulled from a hat in terms of standard resolutions.
    AC mentioned something above which I'd like to expand on:
    Panels will always give sharper pictures when displaying output at native resolution, which is what you are trying to achieve.
    This is essentially correct but only part of the wider picture so far as your TV is concerned, (it isn't actually what you are trying to acheive). Content doesn't (widely) exist at 768p. Generally speaking you will only have content at 480p, 576p, 720p or 1080p, so something needs to convert this to 768 lines of resolution for your TV.
    There are two devices in the chain that can perform scaling, the TV and the Apple TV. In different scenarios this can lead to one or the other device doing the scaling or in some cases both. When setting up a system, one should note the capabilities of each device and try several options (if they are available) to get best results according to which device is best at scaling.
    However given your observations, it is obvious that the Apple TV is much better at scaling than your TV, which given the pixel array on your TV is a little absurd, since very few devices (DVD players etc) will offer 768 lines of resolution and your TV is always likely to be doing some scaling.
    Whilst you may not like the terminology of being pulled from a hat, your TV's pixel array is a non-standard size. There are as mentioned previously many non-standard sizes, to make them all available on the Apple TV just because some TV's perform inadequately when scaling isn't realistic.

  • Is it possible to set the sound output to Firewire and HDMI at the same time?

    I would like to use Amarra for playing music thru the Firewire to a DAC and I would like the family to be able to use the MacMini for streaming sources thru the HDMI without having to change any settings every time. I'm running 10.8. Is that possible thru any special settings or separate software?
    Thanks in advance
    Harry

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Do some web searches for using software called Soundflower in conjunction with other 3rd party audio software to set up your own audio input and output sources.
    That is all I know about it. I have read a few ideas for doing such things over the years.

Maybe you are looking for

  • How to define JMX policy for the operation ALSBConfigurationMBean.getRefs

    Hello, I'm trying to configure the JMX policies of my Weblogic Server. I have followed the recommandations from the http://docs.oracle.com/cd/E13222_01/wls/docs100/ConsoleHelp/taskhelp/security/DefinePoliciesforMBeans.html link. I try to run the foll

  • PO-MIGO-MIRO vs. PO-MIGO-F-90

    Hi, I did the following scenarios for purchasing & paying for an asset: > PO-MIGO-MIRO > PO-MIGO-F-90 What is the difference between MIRO and F-90? I mean besides processing. How does F-90 affect purchasing docs, GR status, and reports?  Will the PO

  • Change documents list if somone restarts the plan in IP10

    Hi all, How can i see the change documents list of IP10, I NEED TO SEE THE DETAILS IF SOMEONE HAS RESTARTED THE PLAN. Thanks Anish

  • Enhancing Dynamic selections

    Hi I need to add a field BKPF-USNAM in dynamic selections screen of report FBL5N. I  need to add in the Documents folder of Dynamic selections, The folder Documents contains fields of BSIS and some of BKPF table. I need to make it appear on the scree

  • Powershell Event - email notification / stop / restart question

    Hey guys,       I have a filesystemwatcher app running to process files to a sql and ms access database. It works fairly well. However sometimes it goes down for really no particular reason that i can tell.  So im trying to do two things if at all po