Two step and Single step Reservations

hi
am bit confused with the following.
can anyone tell me why cant we use the Reservations for the two step procedures for stock transfer and why for single step procedures?
regards

Hi,
It is a very good question and one that is not that easy to answer (and it <u>should</u> be easy).
I have tried to figure out why this should be the case and I cannot think of anything concrete.
perhaps it relates to the use of in-transit and in-transfer stock, perhaps the system cannot cope with reservations that affect these transit stock areas? I don't know why it cannot cope with these but perhaps it relates to the ability to trace reservations from within transactions such as MMBE etc. perhaps it is too difficult to show a list of reservations that are increasing in transit stock?
Sorry i can't help a lot with this, but the above is the only thing I can imagine would be the reason?
Steve B

Similar Messages

  • Unique row based on two columns and single column

    Dear Members,
    I have a table which contains duplicate rows, for which a query should be able to fetch the unique row from the table. Here the unique is not based on one column, but it should be on two columns and also check for uniqueness on one column.
    create table addr ( firstname varchar2(10), lastname varchar2(10), area varchar2(3));
    insert into addr values('bob', 'james', '1');
    insert into addr values('bob', 'james', '1');
    insert into addr values('harry', 'bert', '1');
    insert into addr values('jimmy', 'bert', '1');
    insert into addr values('sam', 'mac', '1');
    insert into addr values('sam', 'knight', '1');
    insert into addr values('tom', 'sand', '1');
    insert into addr values('cat', 'mud', '1');
    The output of query should contain 3 rows.
    bob - james
    harry - bert or jimmy - bert [ either one of them, but not both ]
    sam - mac or sam - knight [ either one of them, but not both ]
    tom - sand
    cat - mud
    SELECT firstname, lastname as total from addr WHERE area = '1' GROUP by firstname,lastname; This does not take of single column duplication..
    Any suggestions..

    SQL> with t_data
    as
    select 'bob' as firstname, 'james' as lastname, '1' as area from dual union all
    select 'bob', 'james', '1' from dual union all
    select 'harry', 'bert', '1' from dual union all
    select 'jimmy', 'bert', '1' from dual union all
    select 'sam', 'mac', '1' from dual union all
    select 'sam', 'knight', '1' from dual union all
    select 'tom', 'sand', '1' from dual union all
    select 'cat', 'mud', '1' from dual
    SELECT
            firstname,
            lastname,
            area
    FROM
                    SELECT
                            t.*,
                            row_number() over(partition BY firstname order by 1) rn,
                            row_number() over(partition BY lastname order by 1) rn1
                    FROM
                            t_data t
    WHERE
            rn     = 1
    AND rn1 =1 ; 
    FIRSTNAME       LASTNAME        AREA
    bob             james           1
    cat             mud             1
    jimmy           bert            1
    sam             knight          1
    tom             sand            1
    SQL>

  • Health. Polar M400 steps and iphone step counter both being added.

    HHealth app prioritising is not working.   I am unable to disable iPhone step counter and it is adding to my polar hrm watch - M400.   I wear my watch all the time but do not carry my iPhone 6 plus all day.   For instance I do not have it with me while working out on a treadmill.   How can I stop Health app from using my iPhone data?   I have tried to see if all the data is visible and see a blank screen.  It is very frustrating and Apple needs to fix this.

    Bump

  • Difference Between connect and connector steps

    Hi All,
    What is the difference between connect step and connector step in a workflow?
    Thanks
    Narendra

    Hi Narendra,
    Connect: Connects the two steps. These two steps are on the same page of MS visio.
    Connector: Connects the two steps of WF if these two steps are on different pages of MS visio, as in case of a huge WF design you can use multiple pages of visio. This is why we have only one point of connection at this icon. It automatically connects the step connected to it to the first step on the next page.
    Hope this is clear.
    Regards,
    Dheeraj.
    Edited by: Dheeraj Kumar on Jul 11, 2008 11:39 AM

  • Difference between one step approval and N-step approval?

    Hi Experts,
    Can anyone tell what is major difference between one step approval and N step approval?
    I guess its only one person will  approve incase  one step  approval and where as in the N-step approval a shopping cart can be approved by many  users under some prerequistes right??
    can some one provide me some hints on this.....
    how does it make a difference in workflows and how to mantain the settings for this in the SPRO. for this one to setup  a one-step and N-step approvals.  what are points to be taken care while setting up this?
    Please can some one clarify me on this
    Regards
    Sairam.
    I

    Hi,
    1 step approval - Number of approvals will be 1
    n step - number of approvals  greater then 2(since std approval workflow present till 2 level)
    The general customising steps for Workflows  apply to both of them (like SWU3 customising.event linkage etc) but other then that for,
    1 step approval -
    -->Need to activate the starting conditions
    -->Agent assignment to be done seperately for the Approval task
    (Also the N step workflow can be used as 1 step workflow with number of approvals being set to 1 through the Logic in the badi.)
    N step approval -
    -->to be implemented through BADI BBP_WFL_APPROV_BADI .This BADi actually determines the Agents/approvers for the workflow.
    -->As per  my exp,this workflow is very unstable and for few  updates,you may have to apply number of notes(e.g. Approval status not updated properly,graphical preview not visible properly etc)
    BR,
    Disha.
    Do reward points for  useful answers.

  • Combine Two Files and sent to webservice

    Hi all,
    I need to read two files and combine in XI and i need to send it to webservice.
    can anyone please tell me which way is the better.
    kind regards,
    Praveen

    hi
    i am reading two different file structures and i need to map it to webservice structure.
    i did all design and config steps including BPM also. i used fork step with two receivers and transformation step and send step.
    but in the mapping iam getting only first file message only.
    This is source message
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
          <ns1:Test_result_MT xmlns:ns1="http://lonmin.co.za/GetServeyData">
             <Details>
                <x>10</x>
                <y>aaa</y>
             </Details>
             <Details>
                <x>20</x>
                <y>bbb</y>
             </Details>
          </ns1:Test_result_MT>
       </ns0:Message1>
       <ns0:Message2>
          <ns1:Test_result_MT xmlns:ns1="http://lonmin.co.za/GetServeyData">
             <Details>
                <x>30</x>
                <y>ccc</y>
             </Details>
             <Details>
                <x>40</x>
                <y>ddd</y>
             </Details>
          </ns1:Test_result_MT>
       </ns0:Message2>
    </ns0:Messages>
    Target Messgae must be like this
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
    <ns0:Message1>
    <ns1:Test_final_MT xmlns:ns1="http://lonmin.co.za/GetServeyData">
         <Details>
         <x>10</x>
         <y>aaa</y>
         </Details>
         <Details>
         <x>20</x>
         <y>bbb</y>
         </Details>
         <Details>
         <x>30</x>
         <y>ccc</y>
         </Details>
         <Details>
         <x>40</x>
         <y>ddd</y>
         </Details>
    </ns1:Test_final_MT></ns0:Message1></ns0:Messages>
    i am giving source and target message can any one please tell me which elements i must map to get this target structure.
    Edited by: Kiran Kumar on Dec 19, 2007 1:21 PM

  • ADE 2.0 does not have functions of divided page and single page- like ADE 1.7?

    I have a question for specification between ADE 1.7 and ADE 2.0.
    ADE 2.0 does not have icon buttons for "divided two-page" and "single page" like ADE 1.7? Since ADE 1.8 Preview version was temporarily available to download, there has been disappeared such functions....

    There are lots of bugs in ADE2.0 (and 2.0.1).  Try replacing ADE2.0 with the older but more reliable v1.7.2.
    (You can have them both installed at once if you like.)
    Version 1.7.2, it is a little difficult to find, available on Adobe site for Windows and for Mac.
    http://helpx.adobe.com/digital-editions/kb/cant-install-digital-editions.html
    The forum software is sometimes corrupting the link above.  There shouldn't be a blank in 'editio ns.html'.  The following redirects to the same page: http://tinyurl.com/diged172
    Some people have found ADE trying to upgrade automatically. 
    It appears (not 100% sure) that if you install ADE2.0 as a new install (not as an upgrade) that your 1.7.2 will continue to run.
    Probably best to say no if 2.0.x installation asks if you want to migrate your library.

  • Any comprehensive STEP-BY-STEP for uploading my ORIGINAL albums and singles to iTunes?

    Any comprehensive STEP-BY-STEP for uploading my ORIGINAL albums and singles to SELL over iTunes?
    This are all original (C)All rights reserved music, and I want it to be available over iTunes to sell as tracks or full album.
    Thanks!

    HelliXSystems wrote:
    But this are companies.
    Yes, they will do everything needed to get your music into iTunes. It is far easier to do it this way.
    Most simply charge a small flat rate (~$10 a song, $40 an album).
    If you want to do it yourself, you will need to register with Apple.
    You will need to have at least 20 albums in yoru catalog.
    See this -> https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/wo/2.0.0.9.7.3.1.1
    (emphasis mine)
    The requirements to work directly with Apple are listed below. If you do not meet all of these requirements, you can work with an Apple-approved aggregator instead. Aggregators are third parties that can help you meet technical requirements, deliver and manage your content, and assist with marketing efforts.
    Technical Requirements:
    A Mac running OS X 10.5.8 or later
    At least 512 MB RAM
    QuickTime 7.0.3 or later. This is so you can encode and deliver content using our dedicated software.
    For optimal performance, use an Intel-based Mac running Mac OS X 10.5 or later. However, PowerPC G4 and G5 are also supported.
    At least 20 GB of available hard drive space (more for larger catalogs) is recommended.
    A broadband internet connection with an upload rate of 1 MB/sec or faster is recommended.
    To deliver music video or concert film content to the iTunes Store, you must use an Apple-approved encoding house. Encoding houses typically charge fees for their services. Learn more about the differences between encoding houses and aggregators.
    Content Requirements:
    At least 20 albums in your catalog
    UPCs/EANs/JANs for all products you intend to distribute
    ISRCs for all tracks you intend to distribute
    Financial Requirements:
    A U.S. Tax ID
    A valid iTunes Store account, with a credit card on file
    Apple does not pay partners until they meet payment requirements and earning thresholds in each territory. (This means you will not get paid until you sell a certain minimum amount of content) You should consider this before applying to work directly with Apple as you may receive payments faster by working with an Apple-approved aggregator.
    If you meet these requirements and wish to apply, click Continue.
    Note: Meeting these requirements and submitting an application does not guarantee that Apple will work directly with you. You may still be referred to an Apple-approved aggregator.
    Interested in working through a third party to sell content on the iTunes Store? Contact an Apple-approved aggregator.

  • How can we do save and export operation in single step using Plugin?

    Hi all,
         I want to save and export a design in Adobe illustrator  to a specific folder using a plugin. For example i created a design called test , i want to save the test.ai and its converted jpeg form (test.jpeg) in to a specific folder using a plugin instead of using normal save and export operation (File ->Save, File->Export). I want to do the save and export operations in single step.
    Is it possible to do using the plugin?
    Thanks in advance
    Sreejesh K V.

    I have tried both option and still the file is not being saved
    This is what i tried:
    const char *fileFormatName="TIFF";AIDocumentSuite *sAIDocument;
    std::string abc =
    "D:\\Sreejesh\\test.tiff";ai::UnicodeString myString(abc);
    ai::FilePath aiFile1(myString);
    AIErr err = sAIDocument->WriteDocumentWithOptions(aiFile1, fileFormatName,
    kFileFormatExport | kFileFormatWriteAs | kFileFormatWrite ,
    false);
    SPBasicSuite *aBasic = message->d.basic;
    AIDocumentSuite *fSave;
    aBasic->AcquireSuite (kAIDocumentSuite,kAIDocumentVersion, (const void**)&fSave); 
    const char *fileFormatName="Photoshop PSD Export";std::string abc =
    "D:\\Sreejesh\\test.psd";ai::UnicodeString myString(abc);
    ai::FilePath aiFile1(myString);
    AIErr serror=fSave->WriteDocument(aiFile1,fileFormatName,
    false);

  • 8.1.1.3 Has single step SEA to SIA upgrade instead of two-step

    Hi All,
    I knew Oracle was working on this but was not expecting this so soon. I am still looking into this. It will be good news for any customers on SEA (horizontal) version given that only SIA will be around going forward.
    ACR 529
    Provides a single-step upgrade from Siebel Enterprise Applications to Siebel Industry Applications.
    Robert Ponder
    Lead Architect and Director
    Ponder Pro Serve
    cell: 770.490.2767
    fax: 770.412.8259
    email: [email protected]
    web: www.ponderproserve.com

    What is the business logic that determines whether the program should try to update "today"? 
    It's an algorithm that checks how frequently user is using the Application: like everyday, every other day, once in a month, etc. If a user is very regular in using the Application then accounts of such users should be updated regularly. As soon as user's login activity gets decreased, it will not stop updating the user’s account rather it will decrease it's update frequence. But as soon as user does login again, it will immediately move into very active queue.
    Can you query the base table with similar logic to get the upadteable rows as of "yesterday"?
    I am not sure. I will have to check with the DBA. But I would like to know If YES then how it can be helpful.

  • My Actions won't work without asking questions and clicking 'ok' after every single step. What to do?

    Hey!
    I use Photoshop CC and Lightroom.
    Usually I prep my pictures in Lightroom and use the Batch function to add a vintage look to it with some actions I downloaded.
    This has always worked great for me!
    But since today Photoshop opens a window after every step. I have to confirm every single step!
    So in the end it takes me even longer! And with a few hundred pictures to edit, this is no fun!
    I really have to calm my nerves... or else my macbook will be in pieces soon. Wuha!
    Would love some tipps!
    Cheers,
    Desperate Me

    You might have inadvertently clicked on Toggle Dialog beside the action.
    The easiest thing to do is reload the actions into photoshop.
    (delete the existing action from the actions panel and then reload a fresh copy)

  • POSDM Diff Between : One Step and Two Step Processing Tasks

    Hi All,
    Can you pl give some points on difference between "One Step and Two Step Processing Tasks in POSDM ??
    Thanks!!

    Please consult the SAP Note 980272 on the service marketplace. It gives a detailed description of the difference.

  • HT204406 Good Morning, I' m having issues passing the first step on Itunes Match! it's been two days and itunes is still gathering information about my library! Please help! thx

    i'm having issues passing the first step on itunes match! It's been two days and itunes is still gathering information about my library! i have windows vista. Please Help!! thx

    i'm having the same problem. it's still gathering information about my library and it's been two days!! Did itunes have any solution for you guys. would appreciate a response.
    Thx    

  • How do I update Adobe as per my previous question. I have followed the 3 step process. Step one and Two fine but step 3 just directs me to purchase and application. I want the "Free" upgrade. How do I get It. ????????

    How do I update Adobe as per my previous question. I have followed the 3 step process. Step one and Two fine but step 3 just directs me to purchase and application. I want the "Free" upgrade. How do I get It. ????????

    YouTube does not use Adobe Reader. Videos do not use Adobe Reader.
    Adobe Reader is used only to show files in a special format called "PDF".
    What you are having problems with is probably Adobe Flash Player.
    So, if you are trying to solve problems with Adobe Flash Player by downloading Adobe Reader, or even Adobe Acrobat, it isn't going to help you in the end. Is that what is happening (we can't really tell without screen pictures, but it seems a likely guess).

  • I have a set of photoshop presets, I used to be able to press play and it would automatically run through all the steps now it asks me to ok every single step. What happened ?

    I used to be able to press play on the preset and it would run through all the steps automatically. Now it stops at each step and wants me to adjust and ok everything ... I used the presets because I didn't have to do that. Why did it change ?

    Where did you get the presets?

Maybe you are looking for

  • Scanned items show up in REVERSE order

    HP, please be more desriptive. I read previous posts and still cannot fix. When I scan a 5 page document, 1-5, it shows up on my MAC 10.9 in the order 5-1. One of your posts says in the "Copy" settings on the printer to change to "Collate On", then s

  • I can not share file from Jabber for Iphone and Android

    Hi guys. I have: CUCM9.1/Publisher y Subscriber System version: 9.1.1.41900-1 Presence/Publisher System version: 9.1.1.41900-1 Expressway x8.1.1 Cisco Cisco Expressway-E Expressway x8.1.1 Cisco Expressway-C Jabber for Android and Iphone 10.6 I do not

  • Transparent Application in a PDF

    I am trying to set the Application tag to transparent. As far as I understand it there is no way to do this. I have tried setting the backgroundAlpha, but this does not work for mx:Application. It seems that there are some settings that allow this if

  • USB Boot support for K7N420 Pro???

    Would it be possible for the BIOS release to include USB Boot support? This way you could use a lot of bootable USB peripherals (USB Flash DIsk for example) and you wouldn't need your FDD anymore. Can this be done? Best regards, Pulsar

  • Best books available?

    Can anybody give advice on a good book that covers Servlets from the basics to the most detailed features? I want one that covers the latest Java EE 5 features.