Different Number for MIgo with respect to PO Receiving plant

Hi expert,
we are diffrent no ranges in po for diffrent receiving site in case of sto.
we want that when we are doing migo in receiving site, its material document posted with diffrent number ranges.
how we can do the same.
Regards,
Santosh

I tried for this in past, but It is not possible in standard SAP ( Not so simple to have types like "WE"). So convince your client for not having differrnt number ranges. Expences may occure while achieveing this would be much greater than desired business need.
Secondly different number ranges for MIGO document is not at all required . Ask your client Why it is required. In SAP any information is available at the click of button then what your client going to achieve by indetifying different numbers at the time of GR. You can differtiate this with user profile. Simple way to convince your client not to have different number ranges for GR material document.

Similar Messages

  • BAPI for MIGO with respect to Outbound delivery or Stk trfer pur order

    please let me know is there any standard BAPI for MIGO transaction with respect to Outbound delivery or Stock transfer purchase order

    try these...
    BAPI_OUTB_DELIVERY_CONFIRM_DEC
    BAPI_OUTB_DELIVERY_SAVEREPLICA
    BAPI_OUTB_DELIVERY_SPLIT_DEC

  • Looking for help with respect to configuring MS Exchange server to handle attachments over 10 MB for forwarding to Salesforce (Email-to-case).

    Looking for help with respect to configuring MS Exchange server to handle attachments over 10 MB for forwarding to Salesforce (Email-to-case).
    Problem - SFDC does not create cases from emails that have more than 10 MB of attachments. Our clients will not go-live if their clients cannot send in emails with attachments over 10 MBs
    Potential resolution - Configure MS exchange to strip off the attachments(if over 10 MB) and store it in a public folder, forward the email to Salesforce (so the case gets created or the email
    is associated to an existing case), the client should have some way to know if the attachments were stripped off and should be able to dlownload the attachments and continue with case resolution.
    Any help is appreicated!
    Thanks

    Hi,
    From your description, you want to achieve the following goal:
    Configure Exchange to filter the attachments if the size is over 10 MB and store it in a public folder, and then forward the email to Salesforce.
    Based on my knowledge, I'm afraid that it can't be achieved. Exchange can filter messages with attachments, but it couldn't store these attachments on public folder automatically. Also, I don't see any transport rule can do it.
    Hope my clarification is helpful.
    Best regards,
    Amy Wang
    TechNet Community Support

  • My sprint service is off. How can I still use that number for iMessage with wifi instead of my apple id

    My sprint service is off. How can I still use that number for iMessage with wifi instead of my apple id?

    You can't. You can only use that number if you have active service.

  • How do I list the last n number of hours with respect to sysdate?

    I had a query regarding listing the last n number of hours with respect to sysdate?
    Say the current time is 1 AM, I want to get an output in the below format:
    1 AM
    12 AM
    11 PM
    10 PM
    9 PM...
    I know I can do it using a simple begin end block but I want the output to be returned in one single query.
    Any help would be very appreciated..

    Thanks!!
    I just figured it out as well!
    I used this:
    with hour_list as
         select trunc(sysdate- level/24,'HH') ,rownum
         from dual
         connect by level <=8
    select * from hour_list;

  • Material number for chemical with different packing sizes

    A same chemical that we purchase from supplier can be in 25Kg bag, 1000kg bag and 50 kg bag. When we receive the chemicals, the physical goods of the chemical are in 25 KG Bag, 1000kg Bag and 50Kg bag store in the warehouse.
    When we sell to customer, it can be in those 3 standard bag size or in KG depend the order quantity from customer.
    For the above Chemical what is the best way to catalogue the material number, should it be 3 material numbers for the 3 different pack size, or 1 material number only?

    you can have two solution for this with both pros & cons with one material master:
    1. You can have three different unit of measure for 25KG, 1000KG & 50KG bag and you can maintain the relationship in the material master. This will help you to get the total stock in KG in your company and you can sell to the customer. Only problem is you will not be able to determine how much of each type of packaging you have.
    2. You can define the material relevant for batch management. Create three batches 25KG,1000KG & 50KG, also create three different unit of measures as explained above. Now whenever you are doing the GR just put the material in correct batch, by doing this you can easily track you material along with the type of packaging. Also you can sell the material, while delivery you can use the functional of batch determination based on some log. Only problem is manual intervention which can be covered if you use some exit while doing GR so that correct batch is selected based on the Order Unit.
    Hope this will help you..
    Enjoyyyyyyyyyyyyy
    Akshit

  • Exit and Serial number for MIGO transaction

    Hello All,
    I am facing an issue with MIGO transaction. I have to use FM 'ITOB_SERIALNO_READ_SINGLE', and for using this I want two values viz.. Material number and Serial Number..
    I have Material number directly flowing but Serial Number is not present. As per my knowledge, To get serial number I can use two methods:
    One is call FM 'GET_SERNOS_OF_DOCUMENT' where I need to Pass value of MBLNR to get the serial number. This MBLNR is not flowing in the code.
    Second is directly fetch data from SER03 table and then OBJK table to get Serial Number. Here again we need MBLNR to fetch data from SER03 table which is not present.
    I am using User Exit 'IQSM0007' for my purpose. I have checked other exits as well for MIGO where I can directly get Serial number generated but haven't got any.
    Please revert if you know anything in this regard.
    Thanks,
    Harjeet Grover

    Hello Reddy,
    I have tried them already and want you to know that this BADI will trigger before document posting and not after that.
    As of now I am coding like I am going to this BADI and importing internal table MSEG which has values to memory id. Then I am going to last BADI used for SERVICES and importing this table there. This last BADI triggers after the document is posted.
    I am here since I want a better solution, if it is?
    Regards,
    Harjeet

  • Different number of parses with different providers

    I tried to figure out
    how could I control number of parsing from MS ADO app.
    To my surprise it seems that there is no general way to do it.
    The behaviour is heavily dependent on underlying OLEDB provider,
    and for some of the providers (Oracle's own including)
    I did not manage to reduce number of parses.
    I wrote a simple vbs script that:
    1. Opens the connection for the given provider
    2. Executes ALTER SESSION SET session_cached_cursors=100
    3. Creates ADO command with 'SELECT ... FROM USER_TABLES..'
         and with one parameter
    4. Opens ADO recordset with this command, reads from and closes it
    Here is the script:
    'TestADOCommandParsing.vbs
    Dim stConnectString
    Dim stUID
    Dim stPWD
    Dim stTestTag
    Dim stServer
    Dim cn
    Dim cmdALTER_SESSION
    Dim cmdUserTables
    Dim rsUserTables
    Dim param
    Dim nRows
    Dim I
    Const c_stProvider = "Ora" '"MS" '"ODBC" '
    Const adVarChar = 200
    Const adParamInput = 1
    Const adUseServer = 2
    Const adOpenStatic = 3
    Const adLockReadOnly = 1
    stUID = "..."
    stPWD = "..."
    stServer = "..."
    stTestTag = "TestParsesADO_" & c_stProvider & "_1"
    If c_stProvider = "MS" Then
    stConnectString = "Provider=MSDAORA;" & _
    "User ID=" & stUID & ";Password=" & stPWD & ";Data Source=" & stServer & ";"
    ElseIf c_stProvider = "Ora" Then
    'Oracle provider.
    'The PLSQLRSet attribute [=1] specifies whether OraOLEDB needs to parse the PL/SQL
    'stored procedures to determine if a PL/SQL stored procedure returns a rowset:
    stConnectString = "Provider=OraOLEDB.Oracle;PLSQLRSet=0;" & _
    "User ID=" & stUID & ";Password=" & stPWD & ";Data Source=" & stServer & ";"
    ElseIf c_stProvider = "ODBC" Then
    stConnectString = "Provider=MSDASQL.1;Extended Properties=" & _
    """DRIVER={Microsoft ODBC for Oracle};" & _
    "UID=" & stUID & ";PWD=" & stPWD & ";SERVER=" & stServer & ";"""
    End If
    wscript.echo "Provider = " & c_stProvider
    wscript.echo "stConnectString = " & stConnectString
         Set cn = CreateObject("ADODB.connection")
         cn.Open stConnectString
         Set cmdALTER_SESSION = CreateObject("ADODB.Command")
    With cmdALTER_SESSION
    .CommandType = 1 'adCmdText
    .Prepared = False
    .CommandText = _
    "BEGIN EXECUTE IMMEDIATE 'ALTER SESSION SET session_cached_cursors=100'; END;"
    Set .ActiveConnection = cn
    End With
    cmdALTER_SESSION.Execute
         Set cmdALTER_SESSION = Nothing
         Set cmdUserTables = CreateObject("ADODB.Command")
    With cmdUserTables
    Set .ActiveConnection = cn
    .CommandType = 1 'adCmdText
    'The Recordset parameters
    'CursorLocation, CursorType, LockType
    'seem to be irrelevant for reparsing of Oracle cursor.
    'Oracle session_cached_cursors parameter also has no effect.
    'Command.Prepared setting affects it, but only for ODBC-based provider:
    'False: N parses, N executions
    'True: 1 parse, N executions
    .Prepared = True
    .CommandText = _
    "SELECT TABLE_NAME FROM USER_TABLES " & _
    stTestTag & " " & _
    "WHERE TABLE_NAME LIKE ? " & _
    "ORDER BY TABLE_NAME"
    Set param = .CreateParameter("TABLE_NAME_Pattern", adVarChar, adParamInput, 30, "%")
    .Parameters.Append param
    End With
         Set rsUserTables = CreateObject("ADODB.Recordset")
    For I = 1 To 10
    cmdUserTables.Parameters("TABLE_NAME_Pattern").Value = "QU_%"
    With rsUserTables
    'The Recordset parameters:
    'CursorLocation, CursorType, LockType
    'seem to be irrelevant for reparsing of Oracle cursor:
    '.CacheSize = 100 'Irrelevant
    '.CursorLocation = adUseServer 'adUseClient 'Irrelevant
    '.CursorType = adOpenStatic 'adOpenForwardOnly 'Irrelevant
    '.LockType = adLockReadOnly 'Irrelevant
    .Open cmdUserTables
    While Not .EOF
    nRows = nRows + 1
    .MoveNext
    Wend
    wscript.echo CStr(I) & ". nRows = " & CStr(nRows)
    .Close
    End With
    Next
    Before running tests:
    VARIABLE SQLTextPattern VARCHAR2(100);
    COLUMN HASH_VALUE FORMAT 9999999999
    COLUMN SQL_TEXT FORMAT A40
    COLUMN "Invalids" FORMAT 9999999
    COLUMN "Parses" FORMAT 9999999
    COLUMN "Execs" FORMAT 9999999
    COLUMN "Parses/Execs" FORMAT 9999.99
    COLUMN CH# FORMAT 999
    COLUMN ROWS# FORMAT 9999
    I ran TestADOCommandParsing1.vbs script 3 times with
    different providers and table aliases to distinguish
    SQL from different tests:
    host cscript.exe TestADOCommandParsing1.vbs
    After each run I changed table alias var:
    EXEC :SQLTextPattern:='%TestParsesADO_Ora_1%';
    or
    EXEC :SQLTextPattern:='%TestParsesADO_ODBC_1%';
    or
    EXEC :SQLTextPattern:='%TestParsesADO_MS_1%';
    and queried V$SQL, V$SYSSTAT.
    Before running the tests:
    SYSTEM@ADAS> SELECT NAME, VALUE
    2 FROM V$SYSSTAT
    3 WHERE NAME = 'session cursor cache hits'
    4 ;
    NAME VALUE
    session cursor cache hits 91051
    Test with Oracle OLEDB provider:
    SELECT
              SUBSTR(SQL_TEXT,1,200) SQL_TEXT
              ,PARSE_CALLS PARSES
              ,EXECUTIONS EXECS
              ,CHILD_NUMBER CH#
              ,FIRST_LOAD_TIME
              ,ROWS_PROCESSED ROWS#
         FROM V$SQL
         WHERE SQL_TEXT NOT LIKE '%SQL_TEXT%'
              AND SQL_TEXT NOT LIKE '%SQLTextPattern%'
              AND SQL_TEXT LIKE :SQLTextPattern
         ORDER BY CH#
    SQL_TEXT PARSES EXECS CH# ROWS#
    SELECT TABLE_NAME FROM USER_TABLES TestP 21 0 0 0
    arsesADO_Ora_1 WHERE TABLE_NAME LIKE :1
    ORDER BY TABLE_NAME
    SELECT TABLE_NAME FROM USER_TABLES TestP 0 10 1 230
    arsesADO_Ora_1 WHERE TABLE_NAME LIKE :1
    ORDER BY TABLE_NAME
    SELECT NAME, VALUE FROM V$SYSSTAT...
    NAME VALUE
    session cursor cache hits 91062
    Test with ODBC OLEDB provider:
    SELECT ... FROM V$SQL ...
    SQL_TEXT PARSES EXECS CH# ROWS#
    SELECT TABLE_NAME FROM USER_TABLES TestP 1 0 0 0
    arsesADO_ODBC_1 WHERE TABLE_NAME LIKE :V
    001 ORDER BY TABLE_NAME
    SELECT TABLE_NAME FROM USER_TABLES TestP 0 10 1 230
    arsesADO_ODBC_1 WHERE TABLE_NAME LIKE :V
    001 ORDER BY TABLE_NAME
    SELECT NAME, VALUE FROM V$SYSSTAT...
    NAME VALUE
    session cursor cache hits 91062
    Test MS OLEDB provider for Oracle:
    SELECT ... FROM V$SQL ...
    SQL_TEXT PARSES EXECS CH# ROWS#
    SELECT TABLE_NAME FROM USER_TABLES TestP 11 0 0 0
    arsesADO_MS_1 WHERE TABLE_NAME LIKE :V00
    001 ORDER BY TABLE_NAME
    SELECT TABLE_NAME FROM USER_TABLES TestP 0 10 1 230
    arsesADO_MS_1 WHERE TABLE_NAME LIKE :V00
    001 ORDER BY TABLE_NAME
    SELECT NAME, VALUE FROM V$SYSSTAT...
    NAME VALUE
    session cursor cache hits 91062
    As you see the number of parses (both soft and hard) differ from
    provider to provider.
    Provider Hard parses Soft parses Executions
    ODBC 1 0 10     
    MS for Oracle 11 0 10     
    Oracle 11 10 10     
    It looks like there is no way to control this 'bad' behaviour of
    OLEDB providers, at least from ADO level. I looked through the docs on
    Oracle provider for 8.1.6, but found nothing.
    There is a temptation to drop all this stuff in favour of SQL
    incapsulated in PL/SQL procedures...
    Any comments?

    D.Bender wrote:
    Hello,
    What's very confusing is that it doesn't always return the same number of readings. Sometimes it is 5, then 7 and afterwards 6 without changing anything. Since it is the first program for the Keithleys at work nobody can help me. I already tried highlighting execution and retain wire values. This way I saw that the VISA write command should give the correct command but the VISA read does not return the right number of readings. In addition to that I don't get any readings on the second iteration, so I can only see some on the first. The Keithley also does not show any new measurements (at least it does not show any numbers, only the typical "----").
    I can't view your file but I have experience with the Keithley 2400 so here is my opinion.  
    This is a common problem for new users working with buffers.  The most likely cause is that you are reading the buffer BEFORE it is full.  If you initiate the second measurement immediately, you will likely see a Keithley error caused by trying to set the buffer values while a measurement is in progress.  The keithley will immediately return the buffer contents when asked to.  You, as the programmer, must set up your LabVIEW code to wait for the buffer to fill, then read the values.  While a fixed delay before reading could work, here is a better solution.
    I posted my code for a I-V sweep (set voltage, measure current over a linear range) here http://forums.ni.com/t5/LabVIEW/Error-code-110-in-​keithley-2400/m-p/2680579#M797618.  (sorry I don't have access to the files right now to upload them here.  The idea is first set the registers to watch for the buffer to become full.  When full, the SRQ bit will be set to 1.  After starting the measurement, i probe the SRQ value in a while loop.  Once it's set to 1, read the buffer and reset registers.  This method is outlined in the Keithley 24xx SMU manual (I can't remember which page).

  • SERIAL NUMBER FOR CAR WITH NO 0F ENGINE AND AUDIO SYSTEM

    We have variant material for CAR and clacification of car selected is Audia and Air bag .
    Now Car, Audio system and Air bag all three materials has different serial number. In CAR material code with variant is  dispatched. Later on I want track the Which srerial number air bag and audio system being supplied.
    How can we map this senario.
    Thanks Amol

    Hi,
    I'm not familiar with Serial Number Management but I guess you can apply it only to materials with stock.
    http://help.sap.com/saphelp_47x200/helpdata/en/dd/f8c814b3f911d1896e0000e8284931/frameset.htm
    (no non-stock materials are mentioned...)
    BR
    Csaba

  • How do I use a different number for imessages than the one for my phone?

    I use two different phone numbers. My main number is not the one associated with my iphone. I want imessages to be sent from my primary number, not the one assigned by default by my phone. I see in settings where I can add another email address, but not where I can add another phone number. How can I change the default number to the one I actually want people to use?

    You can't add another phone number.

  • Is anyone else having trouble sending mail?  I have a MobileMe subscription - not sure whether that is the problem.  The Port assigned to my mail account on my iMac has a different number for the one recommended by Apple, but I hesitate to change it.

    Is anyone else having trouble sending mail on an iMac running 10.6.8.  I get a messsage that the server can't be accessed.  Apple help suggests using a different port from the one that was originally set.  I have a Mobile Me account.  Any suggestions?

    I had major issues with the iPhone 4s battery, however it’s resolved.
    The tech who set the phone up at the Apple store did so with little training.
    if you have a mobile me account. First go and move all your data to the cloud by going on your computer and logging in at me.com/move. The cloud has replaced mobile me, so there is no need for those two accounts
    Also make sure that for any of your email accounts you set them up to fetch, not push. My tech person set them all to have the email servers push data to the phone. The new iphone4s antenna is extremely strong so it will continually try to access stuff that is pushed–***** a lot of battery life doing this. It makes it worse if you have exchange 2010 accounts. Something about changes made to exchange really suck battery life from devices that access such accounts.
    turning of locator and the push notifications from facebook--they have a lot!

  • Different styles for ArrowButtons with synth

    How can I define different component styles? For example I have ArrowButtons in ScrollBars, TabbedPanes, DropDowns etc. And now I want to define different the ArrowButtons within ScrollBars, the ArrowButtons within a DropDown etc. How can I manage that with synth. At the moment I have the following synth code which is uses for the ArrowButtons in a TabbedPane:
    <style id="arrowButtonStyle">
         <property key="ArrowButton.size" type="Integer" value="24"/>
         <state>
         <imagePainter method="arrowButtonBackground" path="/de/imbus/swing/plaf/images/tab_std.png"
              sourceInsets="0 0 0 0"/>
         <imagePainter direction="WEST" center="true" method="arrowButtonForeground" path="/de/imbus/swing/plaf/images/tab_scrlbtn_arrow_left.png"
              />
         <imagePainter direction="EAST" center="true" method="arrowButtonForeground" path="/de/imbus/swing/plaf/images/tab_scrlbtn_arrow_right.png"
              />
         <!-- <imagePainter method="arrowButtonForeground" path="/de/imbus/swing/plaf/images/tab_selected.png"
              sourceInsets="0 0 0 0"/> -->
         </state>
         <state value="ENABLED">
         <imagePainter method="arrowButtonBackground" path="/de/imbus/swing/plaf/images/tab_std.png"
              sourceInsets="0 0 0 0"/>
         <imagePainter direction="WEST" center="true" method="arrowButtonForeground" path="/de/imbus/swing/plaf/images/tab_scrlbtn_arrow_left.png"
              />
         <imagePainter direction="EAST" center="true" method="arrowButtonForeground" path="/de/imbus/swing/plaf/images/tab_scrlbtn_arrow_right.png"
              />
         <!-- <imagePainter method="arrowButtonForeground" path="/de/imbus/swing/plaf/images/tab_selected.png"
              sourceInsets="0 0 0 0"/> -->
         </state>
    </style>
    <bind style="arrowButtonStyle" type="region" key="arrowbutton"/>
    Message was edited by:
    maike

    Know of any reason the style
    selected-fill-colors: red, black;
    doesn't have any effect on the tabs in a tabnavigator or
    tabbar.
    Have tried setting the style by using a custom class and by
    just applying a style to all Tabs. The fill-colors works but the
    selected-fill-colors does nothing.
    http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html
    has an example that works and shows the css being used. Is there
    another switch I need to flip to have the selected-fill-colors to
    work?
    <mx:Style>
    .viewTabs {
    fill-colors: red, black; /* this works */
    selected-fill-colors: #3300cc, #ffffff; /* this doesn't */
    </mx:Style>
    <mx:TabNavigator x="63" y="167" width="200" height="200"
    tabStyleName="viewTabs">
    <mx:Canvas label="Tab 1" width="338" height="100%">
    </mx:Canvas>
    <mx:Canvas label="Tab 2" width="100%" height="100%">
    </mx:Canvas>
    <mx:Canvas label="Tab 3" width="100%" height="100%">
    </mx:Canvas>
    </mx:TabNavigator>

  • IQ09 - Different process for material with bacth Split and no Batch

    Hello,
    i want to know if IQ09 treats material with batch number and no batch in the same way for fetching the serial number.
    view V_EQUI_EQBS_SML is used to fetch the serial numbers.
    i just need to confirm if the process is same in case a material has batch & no Batch together.
    Thanks
    Renu

    Hi,
    We faced the same problem and went back to option:
    Cont.Ins Lot creation (QMAT-CHG) = "For each Material Document item
    This solves the problem and was in our case the solution for receipts from production. But at goods receipt for purchase orders we still use the option for each material document, batch and SL.
    There we pick up the materials in WM by hand by scanning the bar codes on the pallets (printed at GR). The transfer order creates a negative quant in unrestricted use that is later filled by the automatic usage decision that moves the stock from quality to unrestricted in the same bin.
    Hope this helps.....
    Arno

  • Lost Version Number for Tiger with recent update?

    I have a VERY odd problem after the most recent Tiger security update. The version number of the OS is MISSING -- it is not there. As a result, Safari, Photoshop, Illustrator and a ton of other applications will not launch, saying that they need at least 10.4 to run. When I go to the About This Mac dialog, there is literally just a blank space where the version number would be. Any way to fix this besides a reinstall?

    I don't know if this is the only file or the critical one, but /system/library/core services/SystemVersion.plist has an OS version number. I warn you though, messing with any system files is tricky and I would definitely back up before doing any editing. I also don't think this is the route to go. Very likely something more is missing as a result of an unsuccessful update and you may end up having to do an archive and install anyway. Have you tried repairing the drive with Disk Utility (the drive, not the permissions)?
    If you're determined to go the editing route I would just try replacing that one file with a copy from your backup (you do have one for just this kind of occurrence, don't you?).

  • How To Show Different Artwork For CD With Same Name?

    In 2002, Chris Botti released a holiday CD named December. In 2006 he also released another CD named December with the only difference being track 2 (Ave Maria) & track 7 (I Really Don't Want Much For Christmas which are not included on the 2002 release. These are not additional tracks but replace 2 songs from the original 2002 release. The album art is different for both CDs. So, how can I show these two CDs with the same name and same artist but with different artwork in Cover Flow mode? Help!
    iMac G5 1.8 Ghz iMac 1.8 GHz G5 17" Mac OS X (10.4.8) 1.5 GB RAM   Mac OS X (10.4.8)  

    If you store Album artwork the way i described using Command I (get info) - then the artwork is actually EMBEDDED in each song and is carried with that song wherever it goes.. and in this case it doesnt matter if u had 3 copies of the same album - all identical. You could even save a diff image for each tarck if u wanted.
    If there is no artwork embedded, then coverflow places the image in a separate folder that is only referenced by iTunes for the whole CD.
    You also might want to turn off coverlfow and continue doing what u had been doing in the past - add you won.
    I also think i know what may be happening. You say they are identical except for track 2 - But problem is - I don't think iTunes can handle 2 identical CD's from the same artist.
    Here's an experiment:
    Goto any of the songs.... right-click and select "Show in Finder" the Finder will open and show you the song file and its location. Do you see one album once or 1 album twice?
    If you see 2 of everything, i would recommend the following:
    Rename the first album "December (2002)" and the second "December (2006)" then iTunes will definately separate them out.

Maybe you are looking for