One warehouse number, two number ranges?

Hi all,
I have a scenario where an external system creates some of the transfer orders in a warehouse, while others are created through normal WM processes.
I would like to be able to give the external system a specific number range to use, separate from the standard range.
Standard system only allows assignment of one number range to a warehouse number for TO.
The external system will communicate with ECC through IDOCs.
Does anyone know if it is possible to set this up? Looking a enhancing the TO creation when triggered by the IDOC is a possiblility I guess?
Regards,
Mark.

Hi Mark,
Can you please check if you can manipulate the value of screen field V_T340DA-NUKTA thru' the function module used for the inbound idoc posting TO? You can maintain 02 number range as external with given range in SPRO. On execution of function module for Idoc above screen field value change to 02..the other number can be used.
Hope this will help.
Reg,
Sudhir

Similar Messages

  • Two-step verification needs one SMS capable phone number. As I am a Bangladeshi how can I send phone number.pl help.

    Two-step verification needs one SMS capable phone number. Bangladesh is not listed country. How can I receive message my phone.

    2-step verification is not available in Bangladesh as yet.

  • Error "number out of range" in pdf sent through mail using smartform output

    Hi Experts,
    We have a program which sends mail using smartform output in 'PDF' format. We are able to preview smartform correctely in SAP and mail is also getting sent fine with attachment of form as PDF document. But, when we try to open the document, it gives error saying 'Number out of range'. Also, not all of the windows of smartform are appearing in document and some are coming only half.
    We are not able to find out the reason for this. Any help would be appriciated.
    Gouri.

    Hello,
    How did you solve this one? We are facing the same problem in ECC6.0.
    Thanks in advance,
    Benjamin de Rijke

  • How to club many sales orders in to one single invoice document number

    Dear Team,
    We are in to contract for 12 years with our client for a particular service,so we will raise a contract order for a particular item,with this we generate the order number,here we are generating some 150 orders numbers,this 150 order number I want to combine in to one single invoice document number,I have tried this in vf01 I am giving the all 150 document numbers,and excuting this but here for each sales order document number it is creating one billing document number,but I need one single invoice number for all this order numbers.
    My copy controls are
    In VTFA
    Header data
    Sales doc type-                                 zabc
    Target billing tye-                            zmv
    Copy requirement-                           001 header/order related
    Determination export data-               blank
    Assignment number-                         b
    Reference number-                            b
    Copy item number-                            tick box was selected
    Item category
    Copy requirements-                        Item/order related
    Data vbrk/vbrp-                              003  single invoice
    Billing quantity                               A
    Pos/neg                                            +
    Pricing type                                      c
    Pricing type exchange rate              blank
    Price source                                     blank
    Can any one guide what to do

    Hi
    In VTFA, please do the following changes,and then test by creating the sales orders then do collective billing.
    Keep Assignment number blank
    Keep Reference number blank
    Copy item number- Uncheck the box where tick box was selected
    Also make sure that PO Number in sales order is same
    Regards
    Srinath

  • My i phone got stolen and i got a new one with the same number but how do i synch it up with my old contacts?  i thought i could do from ituned but it hasnt worked!!

    hello,
    my i phone got stolen and i got a new one with the same number, but i cant get it to synch up with my itunes to make it like my old phone! can you please tell me how i do this. i need all my contacts and content etc etc.

    Plug it into iTunes and tell iTunes what to sync to the device.

  • How to get a random number in a range?

    as title
    how to get a random number in a range?
    like 2000~3000 thks :)

    int between 10 and 20 with the method Math.random():
    public class Rnd
         // Test
         public static void main(String[] args)
             int start=10, end = 30;
             for (int i = 0; i < 10; i++)
                int n = (int)(start + Math.random() * (end-start));
                System.out.println(n);
    }best regards.

  • Error "number out of range" in pdf sent through mail using smartform outpu

    Hi Experts,
    We have a program which sends mail using smartform output in 'PDF' format. We are able to preview smartform correctely in SAP and mail is also getting sent fine with attachment of form as PDF document. But, when we try to open the document, it gives error saying 'Number out of range'. Also, not all of the windows of smartform are appearing in document and some are coming only half.
    We are not able to find out the reason for this. Any help would be appriciated.

    Hi Soumya,
    Have you got the solution as we are facing the same issue.
    Cheers,
    Bharath

  • Current Number in Number Range Interval

    What does the current number in the Number range interval signify?
    Is it the next number to be assigned?
    Thanks
    Suzitha

    Hi,
    The current number in Number range names is the latest number which was already assigned.
    Regards,
    Thilak

  • Add one Column of Equipment Number in AR01 TCode

    Hi,
    We want to add one Column of Equipment Number in AR01 report output...
    Please let me know, how can we do it???

    That's right dear..
    But in OAVI, following tables used..
    ANLAV...................Asset Reporting: ANLA Fields Plus Cost Center...
    ANLAV_ADDR     .......Address Data for Asset on the Report Date
    ANLB......................Depreciation terms
    ANLCV...................Asset Reporting: ANLC Fields Plus Various Totals
    ANLP......................Asset Periodic Values
    ANLU......................Asset Master Record: User Fields
    ANLV......................Insurance data
    ANLZ......................Time-Dependent Asset Allocations
    And Equipment Number is not showing in above tables...then how can we do it...
    Can we add another Table in OAVI for Equipment Number and which one is suitable for this...
    please guide...

  • Component is automatically taking one of the batch number at theconfirmatio

    Hello,
    While confirmation of the production order one of the component is automatically picking up one of the batch number in the goods movement screen, even though there are many batches for this component , it is only picking up one specific batch at the time of goods issue while confirming the production order.
    This automatically appearing batch when changed to other batch manually and tried to save it gives remarks.I had checked there is no batch given in the routing where this component is attached
    what could be the reason and how its is picking only one specific batch at the time of confirmation
    Thanks
    Himakar

    please check automatic batch search strategy mentioned in above thread. it may be the reason behind auto selection of batch in confirmation screen.
    normally if batch is provided in [roduction order , the same is seen in confirmation. but if it not the case then must be match selection strategy...
    please confirm the solution...
    Rahul

  • Query to find first and last call made by selected number for date range

    Hi,
    query to find first and last call made by selected number for date range
    according to filter:
    mobile_no : 989.....
    call_date_from : 25-april-2013
    call_date_to : 26-april-2013
    Please help

    Hi,
    It sounds like you want a Top-N Query , something like this:
    WITH    got_nums   AS
         SELECT     table_x.*     -- or list columns wanted
         ,     ROW_NUMBER () OVER (ORDER BY  call_date      ) AS a_num
         ,     ROW_NUMBER () OVER (ORDER BY  call_date  DESC) AS d_num
         FROM     table_x
         WHERE     mobile_no     = 989
         AND     call_date     >= DATE '2013-04-25'
         AND     call_date     <  DATE '2013-04-26' + 1
    SELECT  *     -- or list all columns except a_num and d_num
    FROM     got_nums
    WHERE     1     IN (a_num, d_num)
    ;This forum is devoted to the SQL*Plus and iSQL*Plus front ends. This question doesn't have anything to do with any front end, does it? In the future, you'll get better response if you post questions like this in the PL/SQL.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the SQL forum FAQ {message:id=9360002}

  • Allow two no.ranges for a one account group

    Hi everybody,
    Please suggest the way out to have two no ranges for one vendor account group.
    Because First no. range defined for that account group got exhausted. Hence we used another range to define same account group.
    We need to use both the ranges for vendor codes of the same account group.
    at present we are changing the no. ranges through xkn1 and completed the creation.
    Please advice any way out to allow two no. ranges for a vendor group.
    Regards,
    Charmaine Martin

    Hi,
    You cann't use the two no ranges to one group.
    You can do one thing,
    in XKN1 select the no range that was assigned to that vendor group,
    create a new interval and asssign that new interval to the first no range.
    BR,

  • Store procedure to calculate lcm and gcd of two number

    Hi,
    Can anyone please help me to write this procedure
    ---- to calculate lcm and gcd of two number
    Thanks,
    Deekay.

    Hi, I am getting this error with the above query.
    Error starting at line 1 in command:
    select lcm(1,2), gcd(1,2) from dual
    Error at Command Line:1 Column:17
    Error report:
    SQL Error: ORA-00904: "GCD": invalid identifier
    00904. 00000 - "%s: invalid identifier"
    *Cause:   
    *Action:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I got one India toll free number starting 1800 can I call to that number using my Skype account

    I got one India toll free number starting 1800  . Is it possible for me to make call to that number using my Skype account ?

    If it does not work, I do not believe it is supported.  According to the Skype FAQ only these countries are currently supported (with no timeline for other countries): https://support.skype.com/en/faq/FA24 Viewing the Pay as you go rates for India, India toll-free is not listed while other countries that are supported are listed. IndiaCalling - per minute 1excl. VATIndia1.5¢India - Ahmedabad1.5¢India - Bangalore1.5¢India - Hyderabad1.5¢India - Madras1.5¢India - Mobile1.5¢India - New Delhi1.5¢ FranceCalling - per minute 1excl. VATFrance22.3¢France - 089135¢France - 089245¢France - 089345.5¢France - Mobile4¢France - Paris22.3¢France - Shared Cost22¢France - Toll Free30¢

  • I got one India toll free number starting 1800 ca...

    I got one India toll free number starting 1800  . Is it possible for me to make call to that number using my Skype account ?

    If it does not work, I do not believe it is supported.  According to the Skype FAQ only these countries are currently supported (with no timeline for other countries):
    https://support.skype.com/en/faq/FA24
    Viewing the Pay as you go rates for India, India toll-free is not listed while other countries that are supported are listed.
    India
    Calling - per minute 1
    excl. VAT
    India
    1.5¢
    India - Ahmedabad
    1.5¢
    India - Bangalore
    1.5¢
    India - Hyderabad
    1.5¢
    India - Madras
    1.5¢
    India - Mobile
    1.5¢
    India - New Delhi
    1.5¢
    France
    Calling - per minute 1
    excl. VAT
    France2
    2.3¢
    France - 0891
    35¢
    France - 0892
    45¢
    France - 0893
    45.5¢
    France - Mobile

    France - Paris2
    2.3¢
    France - Shared Cost
    22¢
    France - Toll Free3

Maybe you are looking for

  • My computer with Windows 7 says there is no iPod when I run diagnostics on my iTunes, even though my iPod shuffle is in the dock. How can I fix that?

    My computer with Windows 7 says there is no iPod when I run Device Sync diagnostic test on my iTunes, even though my iPod shuffle is in the dock. How can I fix that?

  • Trouble saving mail attachments

    Lately I have problems saving mail attachments: I first need to shorten the title and then the file does not show up in the folder I saved it too. When I want to create new folders to save attachments in, I can't because of a read-only issue. Any sug

  • Can we do MAC Address based routing in ASA5540

    I have a network setup where two servers from inside need to communicate with a remote network via 2 VPN gateways. The destinations are same. However, the chalange is each server need to follow it's own VPN gateway. Since i can't configure PBR (polic

  • Load Up issue

    When loading up my Fully Flash site as a preview in explorer (f12) I have to click "allow blocked content" due to it using action script or activeX. I fear that this will cause a big problem with some users when I launch the site? Will this be a prob

  • Fancy giving us a hand?

    hi, i have a webpage that has a Spry Tabbed Panels widget, is there any way to allow users to dynamically add a tab. I have set up four tabs and inserted dynamic text from my database into them, this works fine but i would prefer it if, onced set up