Do we need Scenario for all to deploy to EXECUTION repository

I am just trying to find this piece of information all over and could not find it(probably my search word may not be correct one)
I have package (main one and generated scenario for that) which has scenario of other packages, some procedures as well as some interfaces. It's big junk of all the combination of objects
My question is do we need to generate Scenario for all interfaces and procedures in order to promote to Execution repository
OR just the main package's scenario and the child scenario is enough.
I do not have scenario for Interfaces as well as odi procedures, do I need to generate scenario for all objects,
Please any help would be greatly appreciated.
I just found this link
ODI Export Scenario, only main?
As per the link I do not need to worry interfaces nor ODI procedures, which do not have a scenarios in DEV repository when go to EXECUTION repository.
Please make me correct, if I am wrong
Thanks,
Edited by: user12236189 on May 11, 2012 4:12 PM

You only scenarios to be taken to the execution environment.
If a scenario calls other scenarios, then you need those child scenarios too.
All the interfaces/procedures are not needed since they are already merged into your master package scenario

Similar Messages

  • Import PO new scenario for all MM Guru's, please get me the solution

    For all MM Guru's
    I belive you can help for this scenario....
    If I make an Import PO on USD currency for 20000 Qty, when I receive the material from Import vendor I'll maintain the customs and excise duties conditions in PO by changing, then MIRO first i'll make payment to the planned delivery cost next for goods (import vendor) then i'll go to J1IEX and MIGO.
    Now I want to map that if I receive the partial quntity like 5000 qty. for this I have to clear customs duty and I'll make J1IEX and MIGO.
    After 15 days or 20 days I may receive another 15000 qty or partly...even for this I have to make partly payment.
    Please give the solution for partly clearing the customs duties with respect to one single import PO and also I may maintain Frieght charges for different vendor (CIF gent) partly to the respective qty. and delivery. I checked that after making MIGO for partly received qty and if I change the condition in PO it cannot change. It says that MIGO have done".
    In condition type for duties calculate type is maintained in percentage.
    regards,
    Madhu

    resolved

  • Need help for all entries

    hi to all experts,
    I'm a beginner in ABAP please help me out with following questions
    1.what is the purpose of for all entries please please help with an example(joining 3 tables)
    2. how it is different when compared with joins
    3. how too use for all entries
    4.performance issues
                               thanks in advance
    helpful answers will rewarded

    Hi,
    Go through the below link, here i gave a answer on inner joins issue, you will understand.
    Re: Improve performance of a SQL request
    <b>Reward points if it helps,</b>
    Satish

  • Need suggestion for ISE distributed deployment model in two different data centers along with public certificate for HTTPS

    Hi Experts,
    I am bit confused about ISE distributed deployment model .
    I have two data centers one is DC & other one is as a DR I have  requirement of guest access service implementation using CWA and get public certificate for HTTPS to avoid certificate error on client devices :
    how do i deploy ISE persona for HA in this two data centers
    After reading cisco doc , understood that we can have two PAN ( Primary in DC  & Secondary in DR ) like wise for MnT (Monitoring will be as same as PAN ) however I can have 5 PSN running in secondary i.e. in DR ISE however I have confusion about HA for PSN .. since we have all PSN in secondary , it would not work for HA if it fails
    Can anybody suggest me the best deployment solution for this scenario ?
    Another doubt about public certificate :
     Public Certificate: The ISE domain must be a registered or part of a registered domain name on the Internet. for that I need Domain name being used from customer .
    Please do correct me if I am wrong about certificate understanding :
    since Guest will be the outside users , we can not use certificate from internal CA , we need to get the certificate from service provider and install the same in both the ISE servers
    Can anybody explain the procedure to opt the public certificate for HTTPS from service provider ? And how do i install it in both the ISE servers ?

    Hi there. Let me try answering your questions:
    PSN HA: The PSNs are not configured as "primary" or "secondary" inside your ISE deployment. They are just PSN nodes as far as ISE is concerned. Instead, inside your NADs (In your case WLCs) you can specify which PSN is primary, which one is secondary, etc. You can accomplish this by:
    1. Defining all PSN nodes as AAA radius servers inside the WLC
    2. Then under the SSID > AAA Servers Tab, you can list the AAA servers in the order that you prefer. As a result, the WLC will always use the first server listed until that server fails/gets reloaded, etc. 
    3. As a result, you can have one WLC or SSID prefer PSN server A (located in primary DC) while a second WLC or SSID prefer PSN server B (located in backup DC)
    Last but not the least, you could also place PSNs behind a load balancer and that way the traffic would be equally distributed between multiple PSNs. However, the PSN nodes must be Layer 2 adjacent, which is probably not the case if they are located in two different Data Centers
    Certificates: Yes, you would want to get a public certificate to service the guest portal. Getting a public/well known certificate would ensure that most devices out there would trust the CA that signed your ISE certificate. For instance, VeriSign, GoDaddy, Entrust are some of the ones out there that would work just fine. On the other hand, if you use a certificate that was signed by your internal CA, then things would be fine for your internal endpoints that trust your internal CA but for any outsiders (Guests, contractors, etc) that do not trust and do not know who your internal CA is would get a certificate error when being redirected to the ISE guest portal. This in general is only a "cosmetic" issue and if the users click "continue" and add your CA as a trusted authority, the guest page would load and the session would work. However, most users out there would not feel safe to proceed and you will most likely get a lot of calls to your helpdesk :)
    I hope this helps!
    Thank you for rating helpful posts!

  • Need scenarios for AP

    Hi All,
      I need the information redarding the scenarios of AP so that I can design my test cases.
    If any of you have any idea on this that would help me for a greater extent.
    Thanks,
    vinay

    Hi,
    AP sceanario means anlyzing the vendor details ,aging vendor details , u need  require this report these are the steps u need to follow
    1, go to rsa5 activate the datasources 0fi_ap_4,6
    2,check rsa3  whether data displaying or not
    3, remaining steps replicating the ds and tr,ur,ic etc same .
    Iam giving this reply for guessing your issue . if your issue is diff little eleborate in ure question
    Regards
    sivaraju

  • OBIEE:Need formula for all characters to the right of the right-most space

    Hi:
    I need to extract the right-most word from a field that could have 2-3 spaces. Example: "Administration Main Boston" = "Boston"
    Thanks-
    Charlie Epes
    Buffalo, NY

    Okay, this took awhile, but it was a nice challenge. The following will work for CHAR fields that have up to 3 spaces. It will extract and display the last word that follows the last space. Again, this was designed to work for words with no spaces, one space, two spaces, and 3 spaces. Here is the code:
    RIGHT(RIGHT(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)),LENGTH(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))-POSITION(' ' IN RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))),LENGTH(RIGHT(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)),LENGTH(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))-POSITION(' ' IN RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))))-POSITION(' ' IN RIGHT(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)),LENGTH(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))-POSITION(' ' IN RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME))))))
    To use this, do this:
    1) Paste the code in Notepad.
    2) Do a "Replace All" and substitue TABLENAME.COLUMN_NAME for "- Employee"."CRM Employee Branch"
    3) Copy the transformed code and paste it in the fx of a dummy column in your report.

  • Need information for all the Fields on Infotype 94.

    Hi all,
    I have a question on Infotype 94 which holds all the information  of I - 9 form.  I would like to know which field goes with what details when we are trying to take details from I - 9 Form. I need a example how would it look for a Alien authorized worker and a permanent Resident and US citizen.
    Please help me out in this issue.
    Thank you.

    Residence Status (Infotype 0094)   
    Definition
    Infotype 0094 allows you to store information regarding an employeeu2019s residence status, as well as information regarding the compliance with the Immigration Reform and Control Act (IRCA), which requires every employer verify that each person hired can prove via documents their identity, and their eligibility for employment.
    Structure
    This infotype is divided into two parts: the personal identification information section (the residence permit) and the employment verification section (the work permit).
    Personal identification
    This section stores the information for personal identification. The only field which is required on this infotype is Residence status. 
    The ID type field describes the type of documentation the employee presents to the company. You can also enter data for the issuing authority.
    The ID number is the number of the document provided by the employee to the company.  The Issuing date is the date on which the personal identification document was issued to the employee. This date must be the same as or later than the employeeu2019s date of birth.
    Lastly, the ID expiry date field is the date that the provided identification expires.
    If the expiration date is filled, and there is a value of A (Alien) in theResidence status field, then this transaction will automatically generate a transaction to store a deadline for the expiration of the work permit (infotype 0019, subtype 71).
    Employment verification
    This section stores the information for employment verification. The Work permit field stores the type of work permit. The Work permit number field stores the number of the document provided by the employee to establish work eligibility.
    The date issued and the issuing authority are also stored. The Expiry of work perm. field stores the date on which work eligibility expires. This field should only be filled for those employees who are not citizens
    http://help.sap.com/erp2005_ehp_05/helpdata/EN/2c/8323d0571111d182d40000e829fbfe/frameset.htm

  • Need Scenario for SAp-XI-webpage

    Hi
    My requirement is receiving the data from SAP,process them in XI and Display as a report in webpage .
    Regards
    SAI

    Hi sai,
    To send information from XI to a web page, you need to confiure a HTTP Adapter. For info on how to do the same, check the following links,
    http://help.sap.com/saphelp_nw04/helpdata/en/43/64dbb0af9f30b4e10000000a11466f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/64dbb0af9f30b4e10000000a11466f/content.htm
    It would be helpful, if you could give a more detailed requirement,
    Regards,
    Bhavesh

  • How many port numbers do I need assigned for an XIR3 deployment

    How many port numbers are required per XIR3 environment on Linux Red Hat 4/JBOSS/? I only plan to use the following apps (CMC, Infoview, Designer, Report Migration Tool, Import Wizard).
    Am I right in thinking it's four ports ?
    1. 1 for the application
    2. 1 for SIA?
    3. 2 for CMS (Name server port, request port)
    If this is incorrect could someone clarify how many, and what for?
    Many thanks in advance

    Hi there,
    When I look at the Servers list and look at the CMS server I see three potential port numbers:
    1. Request Port
    2. Hostname or IP Address
    3. Name Server Port
    I know we need the third one so can I ask why you say you only need two servers for the CMS, as the list above seem to be suggesting three?
    Thanks for your help in advance

  • Need suggestions for all video album for exercising ..

    Hey All,
    Can anyone recommend a video album (album with all video tracks, not sure how to say that) that I can watch while doing cardio ....
    I like Madonna but as long as it is upbeat and moving I'm interested.
    Thanks,
    Al

    justin,
    Here are the specs on this Walmart special:    http://i.walmart.com/i/rb/0088611148630.pdf
    The PSU is a 250W Bestec 5188-2622      5.9"x 3.4" with 5.5" depth into case.
    Requirements to play Skyrim are here:
    http://www.systemrequirements.in/system-requirements-for-the-elder-scrolls-v-skyrim.html
    Recommended -Nvidia GeForce GTX 260 or higher; ATI Radeon 4890 or higher
    Examples of graphic card and a power supply:
     EVGA GTX 460  ($150):
    http://www.newegg.com/Product/Product.aspx?Item=N82E16814130570
    http://www.evga.com/products/pdf/01G-P3-1370.pdf  
    Requires min 450W with 24A: http://www.evga.com/products/moreInfo.asp?pn=01G-P3-1370-TR&family=GeForce 400 Series Family&sw=
    PSU example, Rosewill 530W continous: http://www.newegg.com/Product/Product.aspx?Item=N82E16817182199  ($50)
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Need driver for All-in-One F4480 for Mac OS 10.9

    Hi,
    My scanner on the F4480 was giving me an error that my software may not be compatible with my OS (Mac OS 10.9) and that I should uninstall.  Before doing so I checked the HP site for driver updates, which directed me to check the Apple Software updates.  There was no update available via Apple Software, so I uninstalled the driver.  However, now I cannot find a way to re-install the driver since there is no link to download the driver on the HP site -- only instructions to go thru the Apple Software Update.
    Now I cannot print or scan.
    I've gone thru Apple System Prefs > Printers and Scanners but the printer is not showing up in my list or giving me an option to add it.
    Please help.  The HP site seems useless because it does not provide a download link, only instruction that Apple Software update will "know" to update the HP software.  There's no hint on what to do if you've uninstalled the software.
    thank you!

    Hi katiekawa,
    Welcome to the HP Forums.
    I have done some research and I have found that a Full Feature Software and Driver package is NOT available for the Mac 10.9 operating system.
    Please click on the following link for OS X v10.9 Mavericks: Installing and Using the Printer on a Mac.
    Thank you for your time.
    Cheers, 
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • I need help for all you wise Mac users... please

    Yesterday, my beloved Mac started acting strangely. Just before that, I uploaded some photos my daughter emailed to my yahoo address. I placed the 8 photos in IPhoto, then tried to go back to Pogo.com where I spend most of my puter time. (Pogo is very Java-based, so I empty the cache, delete cookies and temp files regularly.) Pogo home page just barely loaded, very slow, and none of the games would open. When I tried to stop a game from loading, it froze. I finally had to Force Quit Safari.
    In the past when Safari has acted up, the first, and most times the last thing I do is repair disk in Disk Utility. That did nothing to help this new problem. So I came here and started following suggestions I found. So far (with no luck fixing the problem) I have:
    1. Made sure Javascript is enabled in Safari/Pref/Security. It was.
    2. Trashed cookie.plist, then restarted Safari
    3. Trashed Safari cache folder in Library/Caches/Safari, then restarted Safari
    4. Booted from Install disk, repaired HD in Disk Utility (disk was fine, verified no problems)
    5. Did the Apple Hardware test, that was fine (thank goodness!)
    6. Installed Shiira to see if it had the same slow, hang, freeze that Safari has. It does. So, in fact, does Firefox.
    I'm sure there were a few other things I tried, but can't remember them now. What the heck is going on with my browsers? And how can I fix them? Help, please.
    ibook G4   Mac OS X (10.4.9)  

    You have done your homework but perhaps it's the Safari preference file... they can become corrupted. Locate this file; com.apple.safari.plist
    It's here: /Users/YourName/Library/Preferences. Open the Preferences folder, locate that file and drag it to your Desktop. Relaunch Safari. If it still acts up, drag that com.apple.safari.plist file to the Trash. It's the culprit. Reboot your iBook. And your Mac will create a new Safari.plist file for you. You will have to reset your Safari preferences but it just might do the trick.
    If this doesn't do the trick, post back. ** You will get more feedback... just be patient.
    Carolyn

  • Example of scenarios for all MTS strategies?

    Hi Experts,
    Can any one tell me in which scenarios, we have to use the strategies 50,40,10,11,30 & 60?
    Please dont send any sap library or any steps to exicute the process, as I knew.
    Please explain in your own 3 words.
    I have little bit confusion about these strategies & want some clear points.
    Expecting valuable reply.
    Regards,
    Imran

    Dear,
    Please refer my reply from this link,
    [Planning Strategy Usage|Re: Industry wise planning strategy usage]
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Mar 27, 2009 3:04 PM

  • Pacman.conf NEED tips for totally offline install with DVD repository

    OBJECTIVE: after a base install with ARCHBOOT be able to install from DVD repository which contains repo-add database.
    My DVD contains the folder from /var/cache/pacman/pkg.
    ON the DVD I have the folder 'pkg' at the dvd root level and another folder which has my already built packages fro AUR.
    The database called 'custom.db.tar.gz' created with repo-add exists IN the pkg folder on the DVD.
    The built AUR packages are in a seperate folder called '_built' at the dvd's root level as well and they are not included in the repo-add database.
    I am able to mount the dvd, cd to the pkg folder and use  pacman -Ud to install them though this requires that I type in the full name of the package and I get dependence issues and '*.so' type files not found.
    IF I copy all the files from the DVD to the var/cache/pacman/pkg folder I am able to add my local repository to pacman.conf and MUCH more efficient install. I can use pacman -S xorg for example, and I think it finds dependencies even. Can't recall exactly at the moment.
    SO: do I need to alter pacman.conf  cache location line and the other lines?
    Would I change the 2nd and 3rd lines to get max pacman ability when using DVD repository???
    Pointing them to my DVD folder after mounting the dvd
    #RootDir     = /
    #DBPath      = /var/lib/pacman/
    #CacheDir    = /var/cache/pacman/pkg/
    #LogFile     = /var/log/pacman.log
    I really would like to have as much power and flexibility when using the DVD as the repo.
    Can anyone tell me what I should alter in pacman.conf for this.
    I am fine if I have to alter the cache location line temporarily if it will give me additional pacman ability.
    I have read all the wiki stuff for sure though I'm still a bit in the dark and wanted to ask without typing the many many options.
    One big one for me is I don't yet know how to set the SERVER = in pacman.com to look at the mounted DVD and the pkg folder specifically.
    I do mount /dev/sr0  /mnt/cdrom
    So what would I put as the SERVER for this in pacman.conf
    SERVER = /dev/sr0   ?????   or   /dev/cdrom  ????    or /mnt/cdrom I think ????
    dunno!
    AND I really probably DO have to temporarily alter the pacman.conf  cache location line to get pacman to do dependency installs and let me type short lines instead of the full package name.
    THANKS! this one is BIG for me!!!!! :---)
    Last edited by yvonney (2009-06-18 20:27:14)

    COMMENT WRITTEN LAST: I was about to delete a lot of stuff here though thought to just say sorry for not taking the brain-time to slim it. The bold and white boxed part is the main related quest-ion.
    you might find a few useful tools on my site (in my sig), e.g. pkgd if you want to save bandwidth on a LAN --- pbget if you want to easily get PKGBUILDs etc from the AUR and official repos, etc.
    WOW Xyne !!!! thanks.  pbget etc. sound very cool.
    I used yaourt until very recently. Then went ....hmmmm... should learn about manual building and local repo. Where I'm at now is trying to do as much manually as possible. I think I kinda know what packages I want and there will only be some changes from that in the future. There's maybe 20 packages from AUR for me. [PLUS their dependencies]
    Of course: I am doing the repo-add local repositories thing for speed, learning, and as part of my whole 'best practices' growth. Plus it will come in very handy when helping other decide quickly if a barbones mainly wm/ncurses lightweight system is for them.
    You certainly spark a question or two!
    [AUR and dependencies via yaourt affecting my plans to now go manually]
    As these have all ALREADY been installed via yaourt my BIG concern is that I've never found much of a yaourt/cache folder. You see, as you'd know many many times upon installing vai yaourt there's some dependency that may, or I guess, may not be in the standard repos.
    After installing these packages via yaourt do the dependencies go into /var/cache/pacman.pkg and is pacman aware of it when I do a repo-add for thecustom database. If so, then all if fairly cool for my plans. I bet there's a few idiosyncrasies about AUR and dependencies maybe.
    -AUR dependency resolution-
    Using a custom repo will not really work for general use because you would need to manually populate the database with the dependencies anyway.
    I'm fine with manually doing dependencies - though need to know if my yaourt usage ALREADY put the latest dependencies in the pacman cache for AUR unsupported packages AND is there a way with the whole repo-add, local repositry, pacman and aur concpt I'm planning to fine tune to have the dependencies update when I go back to the online repositries? I don't think so based on my usage with yaourt, though can't quite recall.
    As I will be enjoying makepkg building the group of packages I nee to get from AUR for the forseeable future (that are not in the main 3 repos of course)
    I'm still wondering about the inter-relationships. So: I already have installed and/or built the packages for everything I expect to need mostly.   I never became beyone mediocre with yaourt.  and that fine, though I now have to consider that in a new install I DO have the latest AUR built packages, though will there be the right dependencies ALREADY in my /var/cache/pacman/pkg ?
    There's a few things that I'd love to really understand about this. Even if it ends up that dependencies for the AUR packages is always a bit trickier.
    QUESTION: right now I am uable to try custom repo from flash stick as it's read only. I'll be googling this one out and am really looking forward to having a flash stick with ARCHBOOT and I gues ONE repo pkg folder and database on it.
    NOTE: I will put the custom repo above the stock ones in pacman.conf. I just commented out the others as I was doing all this offline.
    I've dumped the dvd as a repo and have switched to a flash stick.  I've extracted the archboot out to a 4 gig flash stick.
    dd if=/root/Desktop/archlinux-2009.05-2-archboot.iso of=/dev/sdb  Its read-only at the moment and no matter what I've tried it stays that way. Maybe I need to use the HPutil on it. It definitely isn't writeable so I won't ponder or note observations here save to say that 'm stumped as to how to get files copied to it.
    And now what may be the way I'd like to work:    Keep my folder for building packages from aur which is /root/aur. Then after doing the fun makepkg --asroot   or even makepg -i as root to install. Though I'll probably after the build THEN just copy the built packages from my /root/aur to /var/cache/pacman/pkg   and install from there as I DO plan to use the online repos.
    I will ALSO copy the file to my USB stick or maybe just sync to it and do a the repo-add thing in   /var/cache/pacman/pkg   and keep the stick as both backup and 'in the ready' reinstaller.
    Um, now  could spend an hour editing down the above!!!
    wondrous thanks!
    Last edited by yvonney (2009-06-19 07:38:25)

  • HELP for all 5 TYPES of  STO  Stock Transport Orders with detailed scenario

    PLEASE help me understanding the detailed scenarios for all 5 TYPES of STO s
    as in my day to day job activities , i frequently handles issues related to STO s
    PLEASE HELP WITH DETAILED STEP BY STEP SCENARIOS

    Hi Jagatram,
    Standard SAP has the following methods For Stock transport order:
    1) One Step Transfer stock without using purchasing documents; Use movement type 301.
    2) Two Step Transfer stock without using purchasing documents; Use movement type 303 in Supplying plant and movement type 305 in receiving plant.
    3) Using Standard Transport Order (STO) without delivery in two steps. STO created in T-Code ME27, receiving plant posts goods issue (for returns), movement type 351 and supplying plant post goods receipt from using movement type 101.
    4) Using Standard Transport Order (STO) with delivery in one step. STO created in T-Code ME27, Receiving plant creates shipment and Goods issue document (for materials to be returned) with movement type 647 and goods receipt document with movement type 101 both created in one step.
    5) Using Standard Transport Order (STO) with delivery in two steps. STO created in T-Code ME27, Receiving plant creates shipment and Goods issue posted (for materials to be returned) with movement type 641.Goods receipt is posted in the supplying plant, movement type 101.
    6) Using Transportation scheduling agreement (TSA) with delivery in two steps. TSA created in T-Code ME37. Receiving plant creates shipment and Goods issue document (for materials to be returned) with movement type 641. Goods receipt is posted in the supplying plant, movement type 101.
    To achieve it, necessary configurations has to be done in Tcode- OMGN.
    SPRO>> Materials management>> Purchasing>> Purchase Order>> Set up Stock transport Order:
    1. Plant: For the receiving plant, maintain customer No-Plant (If using STO with delivery), for the Sales Org, Dist channel and Division.
    2. Checking Rule: Create checking rule.
    3. Define checking rule : Usually no change required here.
    4. Assign delivery type/checking rule: Assign the document type(UB) - Supplying plant- Delivery type(NL).
    5. Purchasing document type: Maintain the supplying plant- Receiving plant relationships for the doc type-UB, either 1-step or 2-step, as per business.
    Hope this helps!
    Regards,
    Shilpa

Maybe you are looking for

  • Question on Deleting infotype 15

    Hi All, I am creating a record in info type 15 using the function module HR_ECM_INSERT_INFOTYPE which creates a record with out any authority check. Similarly I need a function module to delete infotype 15 with out checking any authority i.e. no auth

  • EHP1 for ecc 6.0

    guys, i am trying to find the release notes for ehp1 for ecc 6.0 but cant find them. The marketplace contains only the links to ehp2, 3 and 4. Does this mean there was never an ehp1 for ecc 6.0 or are all the functionalities included in ehp2 now ?? p

  • Banner Artwork In AI saving as Smaller file than desired.

    I have my file set to 1200ppi and 300ppi raster. File is 33 x 80 inches for print. All artwork is vector, text is outlined....when I save it in AI it is only 8MB. Why? PS PDF saves as 46MB. Checked compression settings....Can someone please explain w

  • Applet generated with developper server 6i

    how can i resize the applet generated with forms 6i when deploying an fmx on the web

  • Adobe Flash player - Gameranger Issue

    Hello! I have an issue with Gameranger (a program simillar to steam). Please take some time and help me somehow, because I have absolutely no idea what more can I do, trying to solve it. I tried almost everything (reinstalling...) googled for it, fou