How to automatically generate ASN according to outbound DN for STO in R3?

Hi gurus,
In our scenario, we need to automatically generate ASN according to outbound DN for STO. You know we can configure this functionality in ECC system, but it seems impossible in R3 4.7 system. Can we sove this problem by SPRO or user exit/BADI?If not, we have to use PI middleware to make it work.
Any help will be appreciated.

You can send IDoc from output determination to any system (using ALE) or EDI (through file).
If you are wanting to distribute IDoc to another system within your organization, then use medium 'A' (for distribution through ALE).
In transaction NACE, you can see LAVA output type come with both EDI and ALE mediums enabled (look at Process routines in NACE for output type LAVA). Ensure that in the output condition records are set with medium 'A'. You would of course need partner profile in WE20 with outbound parameters set to match your output.

Similar Messages

  • How to Automatically generate .XSL file of XML file ???

    Hello Everyone,
    I have UI which provide the facility to create own format by using drag and drop utility. I have also xml file which contains the data. Now task is how to automatically generate the .xsl file of the dynamically designed format for the data stored in xml form.
    If you have any idea about the solution of the above problem.
    I will thankful for any help regarding this…
    Thanks
    B. Kumar

    XSL stands for EXtensible Stylesheet Language, and is a style sheet language for XML documents. .xsl is the extension of the XSL file.Thank you, I am aware of all that.
    When we design any format by using drag & drop utility, System has to generate the .xsl file (extensible stylesheet for the xml document).Why? To accomplish what?
    And then .xsl file is used to display the data which is stored in xml document on the webpage with designed format.So you need to define the mapping between XML and HTML? and you're hoping to do that automatically?
    That's a job for a user interface designer. Not a tool.
    In brief we need to write a parson
    Parser
    which will take any designed format and generate the .xsl file for that design, to display the data which is stored in XML document.Doesn't make sense. It would make more sense if you started from a schema. Starting from an actual XML document, i.e. an instance of the schema, no, not even slightly.

  • Issue During Outbound Delivery for STO Purchase order

    Hi,
    Delivery Quantity is not picking automatically in VL10B, while creating outbound delivery with STO purchase order with account assignment ''Q'' Project (with WBS element). Stock also available in the supplying plant as shown the below screen shot.
    MMBE:
    Please do the needful.
    Thanks,
    Ashok

    Hi Pardhu,
    Thanks for your response.
    We don't have any open reservations and safety stock available for the material. Kindly go through below screen shot for your reference:
    Thanks,
    Ashok

  • Outbound Delivery for STO

    Hi,
    For creating a outbound delivery for STO(Its like PO and not against Sales Order) i used VL10B?
    Is there any other transaction codes for the same?
    Pls help
    Thanks
    Ram

    Hi,
      Try using VL10G and choose purchase order tab..This is almost the same transaction as VL10B..
    Thanks,
    Naren

  • How to automatically generate a build file of the application from command-line

    Hi All
    How can we automatically generate a build file of the application from command-line (as opposed to using Jdev IDE to click to generate a build.xml) ?
    Thanks

    User, which jdev version do you use?
    I don't think you can do this. You can only create an ant build.xml from the project inside jdev.
    You can use ojdeploy to build the project.  This is the only method which will also make the necessary changes to the descriptors.
    Timo

  • How to automatically generate/build a uniqueID in Sun IM

    Hello,
    I'm unfortunately not able to automatically generate/build a unique identifier in IM according to my different data sources (resources) => the goal of this process is to manage the unique identifiers (accountID) through the Identity Manager, and then send back the corresponding accountIDs to the data sources (to keep the mapping between IM and the sources).
    => Each data source (DB, files, etc.) stores their own unique identifier (e.g. primary key, id, etc.).
    => I'm able to reconcile (or "Load from Resource") the data from the sources
    => Unfortunately the accountIDs from my "authoritative data source" (main data source) are used as "unique identifiers" (accountID) through IM :o( !!!!! and I would like to build a unique id (e.g. <firstnameFirstLetter>.<lastnameFirstLetter><6digits) for all the users (according to all the accounts from the different sources).
    Do you have any idea ?
    Thanks a lot in advance.

    Hi,
    Thanks a lot for this example.
    I didn't test it for the moment, because I still have a problem with the workflow....., which will call this rule at the end.
    Here is my problem about this workflow :
    My idea is to use this workflow (as a pre-account wrokflow through the reconciliation process) to automatically write the SIM accountIds into the Resource accounts (i.e. into my authoritative database => IAM_EXT_UID is used to store the corresponding SIM accountIds).
    When we use a "Pre-account workflow" through the reconciliation process, some variables are already available : accountId, resourceId, userName, initialSituation, finalSituation, etc.
    During my initial load process (e.g. using the reconciliation process), all the resource accounts use the following states :
    + initialSituation : AR_SITUATION_NAME_UNMATCHED
    + finalSituation : AR_SITUATION_NAME_CONFIRMED
    + accountId : name of the resource account that was reconciled => i.e. specific to the resource
    + userName (name of the Identity Manager User) : userName is NULL
    I'm just interested in this case (initial=UNMATCHED and final=CONFIRMED) in order to send back the SIM accountId into my database.
    My workflow uses the checkoutView Session Workflow Service to get some information about the newly created SIM users (e.g. his newly created accountId => created on the fly by using a rule).
    Unfortunately, the userName is NULL ! I think that this input is NULL because I use a rule to automatically generate the SIM accountIds !!!! Am I right ?
    Is there a way to get this userName ? Maybe the checkoutView Session Workflow Service is not the best solution !!!
    Here is my code snippet :
    <Extension>
    <WFProcess name='XYZ' maxSteps='0'>
    <Variable name='accountId' input='true' />
    <Variable name='resourceId' input='true' />
    <Variable name='resourceName' input='true' />
    <Variable name='userId' input='true' />
    <Variable name='userName' />
    <Variable name='initialSituation' input='true' />
    <Variable name='responseSuccess' />
    <Variable name='finalSituation' />
    <Activity id='0' name='start'>
    <Transition to='deleted from HR equals disable'>
    <eq>
    <ref>initialSituation</ref>
    <s>AR_SITUATION_NAME_DELETED</s>
    </eq>
    </Transition>
    <Transition to='ProcessUser'>
    <block>
    <and>
    <eq>
    <ref>initialSituation</ref>
    <s>AR_SITUATION_NAME_UNMATCHED</s>
    </eq>
    <eq>
    <ref>finalSituation</ref>
    <s>AR_SITUATION_NAME_CONFIRMED</s>
    </eq>
    </and>
    </block>
    </Transition>
    <Transition to='end'/>
    </Activity>
    <Activity id='1' name='end' />
    <Activity id='2' name='deleted from HR equals disable' audit='true'>
    <Variable name='WF_ACTION_ERROR'/>
    <Variable name='user'/>
    <Action id='0' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='disableUser'/>
    <Argument name='accountId' value='$(userName)'/>
    <Argument name='doWaveset' value='true'/>
    </Action>
    <Transition to='end'/>
    </Activity>
    <Activity id='3' name='ProcessUser'>
    <Variable name='user'/>
    <Action id='0' name='CheckOutUserView' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='checkoutView'/>
    <Argument name='type' value='User'/>
    <Argument name='id' value='$(userName)'/>
    <Variable name='view'/>
    <Return from='view' to='user'/>
    </Action>
    <Transition to='end'/>
    </Activity>
    </WFProcess>
    </Extension>
    </TaskDefinition>
    I hope that someone will be able to help me.
    Thanks a lot.

  • How to automatically generate build.xml file in eclipse?

    Hello every body,
    I am learning about ANT. e.g I have writen a very simple programme which displays output "no worries". But how can I compile it with ANT and how can I generate build.xml file using eclipse.

    This is not really a Java issue but rather is an Eclipse issue. You may wish to look for their support sites or forums.

  • How do I generate a list of keyboard shortcuts for any given application

    I want to generate a list of keyboard shortcuts for all of the applications I have on my Mac. I want the list to be a simple text (or rtf) file that I can edit and organize. (By edit, I don't mean change the shortcuts, only the report of them.)
    I was using Key Cue, but it does not let me save the list to a text file.
    I want this for several purposes. One is to have a easy to reference list of shortcuts to learn. Another is to find unused key combinations that I can use for my own keyboard shortcuts that I create with DefaultKeyBinding.dict.
    Note: The program doesn't have to an OS X app. A program that runs from a shell without a GUI is plenty adequate.
    If there is a way to read the keyboard commands from a plist list or other such file, and any of you know the format for these or where I can find them, I can write a Perl script myself to do it.

    Well, the info is stored in...
    /Users/YourUserName/Library/Preferences/com.apple.universalaccess.plist
    PlistPro has a way to convert it to ASCII, but you'll srtill have work to do, as...
    {enabled = 1; key = 20; modifier = 1179648; sybmolichotkey = 28; },
    {enabled = 1; key = 20; modifier = 1441792; sybmolichotkey = 29; },
    {enabled = 1; key = 21; modifier = 1179648; sybmolichotkey = 30; },
    {enabled = 1; key = 21; modifier = 1441792; sybmolichotkey = 31; },
    {enabled = 0; key = 28; modifier = 1572864; sybmolichotkey = 15; },
    {enabled = 0; key = 27; modifier = 1572864; sybmolichotkey = 19; },
    {enabled = 0; key = 24; modifier = 1572864; sybmolichotkey = 17; },
    {enabled = 0; key = 47; modifier = 1835008; sybmolichotkey = 25; },
    {enabled = 0; key = 43; modifier = 1835008; sybmolichotkey = 26; },
    {enabled = 0; key = 28; modifier = 1835008; sybmolichotkey = 21; },
    {enabled = 0; key = 96; modifier = 1048576; sybmolichotkey = 59; },
    {enabled = 1; key = 122; modifier = 262144; sybmolichotkey = 12; },
    {enabled = 0; key = 120; modifier = 262144; sybmolichotkey = 7; },
    {enabled = 0; key = 99; modifier = 262144; sybmolichotkey = 8; },
    {enabled = 0; key = 118; modifier = 262144; sybmolichotkey = 9; },
    {enabled = 0; key = 96; modifier = 262144; sybmolichotkey = 10; },
    {enabled = 0; key = 97; modifier = 262144; sybmolichotkey = 11; },
    {enabled = 1; key = 50; modifier = 1048576; sybmolichotkey = 27; },
    {enabled = 1; key = 98; modifier = 262144; sybmolichotkey = 13; },
    {enabled = 1; key = 50; modifier = 1572864; sybmolichotkey = 51; },
    {enabled = 1; key = 100; modifier = 262144; sybmolichotkey = 57; },
    {enabled = 1; key = 17; modifier = 1572864; sybmolichotkey = 50; },
    {enabled = 1; key = 2; modifier = 1572864; sybmolichotkey = 52; },
    {enabled = 0; key = 105; modifier = 0; sybmolichotkey = 32; },
    {enabled = 0; key = 109; modifier = 0; sybmolichotkey = 33; },
    {enabled = 0; key = 103; modifier = 0; sybmolichotkey = 36; },
    {enabled = 0; key = 109; modifier = 0; sybmolichotkey = 62; },
    {enabled = 0; key = 49; modifier = 1048576; sybmolichotkey = 60; },
    {enabled = 0; key = 49; modifier = 1572864; sybmolichotkey = 61; },
    {enabled = 1; key = 2; modifier = 1310720; sybmolichotkey = 70; },
    {enabled = 1; key = 49; modifier = 1048576; sybmolichotkey = 64; },
    {enabled = 1; key = 49; modifier = 1572864; sybmolichotkey = 65; },
    {enabled = 0; key = 53; modifier = 1048576; sybmolichotkey = 73; },
    {enabled = 1; key = 107; modifier = 0; sybmolichotkey = 53; },
    {enabled = 1; key = 113; modifier = 0; sybmolichotkey = 54; }

  • How can I generate a mountain lion boot dvd for my 27" late 2012 iMac

    baught the 27" late 2012 iMac and didn´t get any software dvd with it.
    Due to the fact that I have the external DVD writer I would like to generate a bootable Mountain lion DVD for it.

    First you will need to Downl;oad and Save the Mt Lion install files. They are not on the system as it is. you need to use the Recovery HD partition to do the download to an external drive and then when the system goes to Reboot to start the actual install of Mt Lion on that external you Disconnect that external so the install doesn't start.
    Then once you boot back into the OS on the internal drive you Reconnect the external and use the program linked to in the above reply to Create a Mt Lion Install DVD or USB thumb drive.

  • Hi Reg VL10B (outbound delivery for STO)

    Hi All,
    Can any body tell me what exactly the functionality of VL10B(Purchase orders fast display) What exactly this Transaction do and also If I want to create outbound delivery for my STP which I have crated how to do this using this Transaction?
    Thanks&Regards
    Mahesh

    Hi Mahesh,
    Tcode: VL10B, through this transaction, system will display the purchase order that are to be converted to deliveries depending on the inputs you have given in the selection screen.
    Select the respective purchase order and click on background (Creates delivery in background) and click on show/hide delivery. This way the system will create a delivery for the STO. When you click on the delivery number, system will takes you to VL03N transaction, there go to VL02N, input the picking quantity and then do the PGI.
    Hope this clarifies.
    Thanks,
    Viswanath

  • Unable to create outbound delivery for STO??

    Hi All,
    I am trying to create an outbound delivery for a cross company code stock transport order, but when I try to do so in Txn VL10B the system does not create any.
    What I have observed is that in the STO I do not get any delivery creation date in the shipping tab. the system is not determining delivery creation date.
    Does anyone have any idea why it is so? Why the system is not able to determine the dleivery creation date? I have tried by creating STOs for many materials, but none works!
    Regards,
    V S

    Hi
    Pl check the settings:
    Below is the sto check list:
    Check all your settings once again for creating inter-company billing:
    - Material should exist in both plants.
    - Stock will be maintained in D-Plant (Delivering).
    - Now Plant - R (Receiving) become the customer of Plant-D.  So create a dummy customer in Plant-D's company code and sales area.  
    - Assign this customer number to Plant -R's details & its selling sales area.
    - Maintain the intercomapny billing type (IV) in ur sales doc type (OR).
    - Assign the Plant-D to selling sales org+ dbt channel.
    - Maintain relevant copy controls between documents.
    by doing all this then create po and check wheather do u got the shipping tab in the purchase order, if yes then replenishment del will be created.
    With Regards
    baalakrushnan.da

  • How to automatically generate messages

    hello.
    as part of the ongoing development of my video library system (done using Java, Swing + JDBC) - i must be able to generate an Overdue Reminder message and a Fine message in the form of JOptionPane messages. in order to do this i must be able read the loan information from my video library database so that i can generate such messages. i have pseudocode already made out for this.
    IF ReturnDate is greater than 7th day
    Display OverdueReminder
    IF Product is not returned after OverdueReminder is issued
    Display Fine
    IF Fine is not paid
    Display AccountDisabledNotice
    how can i turn this pseudocode into code?

    yes. what i have to do now is learn how to generate messages.
    thanks for the reply.

  • How doI automatically generate cover flow pic for my radio feed?

    I work for a radio station with live Itunes feed and was asked to embed a pic that appears in cover flow. For now, that thing's blank. How do I do this?

    same problem for me - i have all my library of music and film into an external HD and many of my film cover disappear - i have to manually look into INFO and they come back --- it's really strange!
    Anyone have some solution? is it a bug of itunes with external/ethernet HD?

  • How to automatically rename tracks according to file name

    Hi all,
    this is probabaly a very simple fix but for some reason its foxing me today,
    in CS6 when importing multiple audio files, is there a way of automatically naming the tracks the same as the file name.
    eg if the file is labeled 'snare.wav' and you import it into Track 1, then the track is then renamed 'snare'
    thanks.

    Thanks for the reply Steve, I understand the implications your refering to, I just wondered if there was an option to turn this on if required, so for instance if i am importing 70 or so audio files i dont have to go through and name each track one by one.
    something similar to the 'Use Audio File Name as Track Name' option in Logic would be useful.
    regards

  • Stop generating delivery IDOC output (outbound IDOC)  if goods issued!

    How to stop generating delivery IDOC output (outbound IDOC)  if the delivery has been goods issued?! Any user exit or BADI for this?!
    Thanks

    We take a routine in output requirement! it's done!

Maybe you are looking for

  • Songs from itunes not playing on iphone 4

    I can play these songs on my macbook pro itunes but when I transfer them over to my iphone 4 they will not play at all! Anyone got any idea's. Thanks

  • Having a problem with ilife 08 and leopard screen saver

    Hi, Not sure if this is an osx leopard issue or a ilife 08 issue but before I did the upgrade I was able to use my entire iphoto library as random photos in the screensaver. Not it only let's me choose specific events or last import. it does not let

  • Keeps asking for Select a certificate or enter a name and password for network

    everytime i start my mac it asks for "Select a certificate or enter a name and password for network" and when i'll close it and reopen it, it still asks. can somebody help with what am i suppose to do?

  • Choppy video on external monitor

    Hello, Anytime I try to play a video in iTunes on my external monitor, the playback is very choppy. I tried optimizing my computer display settings and driver settings for better playback but that did not resolve the issue. Any suggestions on how to

  • Oracle 10g, how to determine allocated memory is healthy or sufficient.

    Hi Guys, I have a 10.2.0.5 production database. Currently my server has 8GB physical RAM. 3GB is allocated to the SGA and 1GB to the PGA. Let's say one day there is a requirement from application (eg, weblogic) to increase connection pool from 20 to