Warehouse deployment question

Anyone has experience deploying wireless in the warehouse environment specifically areas with pick modules (multilevel racks that people can climb into).

That is right, rest of the warehouse is not that difficult it is the pick area that gets complicated.  Would you mind sharing how many AP's are you deploying in a pick area?  Are you doing like one on the ceiling and one on the 2nd level and then if there are lets say 20 aisles how many aisles are you skipping before you adding more? 
I have seen that design honestly but I do not like it and I don't believe it works the best.  I am more inclined towards using one on the ceiling and adding one on the 2nd level ceiling one on the ground level ceiling and kind of stager them that way.  Thoughts?

Similar Messages

  • 11.1.2 Deployment question!

    We are using ADF 11.1.1.4 with Webcenter and SOA components but not extensively. We would like to upgrade to 11.1.2 and got little confused after reading note given below.
    "Important Note - This version of JDeveloper doesn't include the SOA and WebCenter pieces - to use these components you'll need to download Oracle JDeveloper 11.1.1.5.0"
    My question is can the code developed using 11.1.2 Jdeveloper be deployed on 11.1.1.4 WLS? If that's the case we are thinking to develop SOA and Webcenter application using 11.1.1.4 and ADF using 11.1.2 and both deployed on 1.1.1.4 WLS!!!!
    Is there any other option for installation like this!!!

    code developed in 11.1.2 will be deployed 10 10.3.5 with sherman patch and adf runtime..
    chk this
    http://tompeez.wordpress.com/2011/06/29/follow-up-upgrading-wls-10-3-5-with-adf-runtime-11-1-2-0-0-sherman-patch/
    you cannot deploy code developer in 11.1.2 to 11.1.1.4 wls.. not possible..

  • [JS][CS3] Script deployment question

    Hi everyone,
    I am currently writing scripts in a corporate environment (~30 users), and I'm contemplating the easiest and most efficient way of deploying the scripts. We have a couple of scripts already with the users that are located locally on their machines. As time goes on we'll be writing more and more scripts and updating the existing ones as necessary.
    My current inclination is to stop saving the files locally on the individual machines and instead put a shortcut to a shared server folder in the scripts folder instead. In my testing it seems to work fine without any significant delay, and it automatically populates all of the files in linked folder. I basically want to be able to make sure that users are always launching the most up-to-date code and that any future scripts can be easily deployed without me walking around to everyone's desk (or worse, e-mailing instructions and hoping for the best).
    Are there any downsides/performance issues to this approach? It's a strictly desktop environment, so I don't have to worry about laptop users who are not connected to the network. Is there an alternate way that would be smoother?
    Thanks!

    We've tried it both ways. On our 12 InCopy machines (OSX), we have a symbolic link from /Applications/Adobe InCopy CS5/Scripts/Scripts Panel/ to a shared folder. This works great as long as our file server doesn't go down, and all sorts of other things would break horribly. And the User scripts folder is still available for any machine-specific customizations.
    For our 4 InDesign machines, we decided that was a little too much risk. So instead we have a script, copyScripts.jsx, that just copies scripts from the file server to the Application scripts folder. So everytime there is a change, we go around to those 4 machines and run copyScripts. This works OK.
    It's a little bit of a pain but it also insulates us a bit from bugs, and it means that whoever is using InDesign can decide to not update the scripts if they are in the middle of something critical. They can choose to defer taking the script updates.
    I think if we had to do it over, we probably wouldn't bother with the copyScripts mechanism. The centralized shared folder works pretty well. But it's not so annoying that we've gotten rid of it. And for 4 machines, it's not a huge burden.
    Also, there are some questions of development. If it's convenient to do development in the ESTK, having the shared folder means you cannot just rightclick in the Scripts panel and choose Edit Script. Or if you do, then any changes you save as you are developing the script are instantly available to everyone, potentially breaking their work if there are problems, or if there is debugging output ,etc., etc. So you need to make sure you do a development in a different place. Just something to keep in mind.

  • Split Directory Packaging and Deployment Question

    Hello Rob Woollen and All,
    I have a question about packaging and deployment with the "split directory structure"
    in WebLogic Server 8.1.
    Specifically, how does one go about deciding which classes to put in myEnterpriseApp/myWebApp/WEB-INF/classes,
    versus myEnterpriseApp/myEjbModule, versus myEnterpriseApp/APP-INF/classes?
    I think the answer to the first part is easy enough: if there are classes depended
    on by, say, the servlets in a web app, but not depended on anywhere else in the
    enterprise app, then those classes should go in WEB-INF/classes.
    It's the other part of the question that gives me trouble. I use local interfaces
    on my session beans. Let's say I have a domain object class returned from a session
    bean method and depended on by the web app. If I put that domain object class
    under myEnterpriseApp/myEjbModule, then the web app can see it by virtue of the
    classloader arrangement.
    But the wlcompile Ant target supposedly compiles stuff to build/APP-INF/classes.
    What stuff? How does it decide? I haven't experimented and empirically observed
    yet, but I couldn't find the answer in the documentation and tutorials. Is it
    looking for java source files under src/myEnterpriseApp but not under myWebApp
    or myEjbModule? In general, does BEA have any recommendations in this area?
    Thanks,
    Randy

    "Randy Stafford" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi Mark,
    Thanks for the reply. I don't have 8.1 installed yet, so I can'tempirically
    observe the example's behavior. But I downloaded the example andinspected the
    code. It answers some, but not all, of my questions.Where to start.
    In 8.1 we have made optimizations to J2EE packaging. Mostly this is about
    not having to use manifest classpath's to do sharing of of common classes.
    MF Cp's are a pain to configure. You put your classes in one location in
    the ear and then EVERY module has to have a MF CP entry pointing to that
    location, and then you actually have N number of classes loaded per module.
    The mechanism to share classes across all modules is APP-INF/lib and
    APP-INF/classes. The benefit is that APP-INF is shared across all modules.
    So to your question below you could just put it in the EJB module, BUT if
    you have mutliple EJBs that you split into seperate modules your back tot
    the same issue. So APP-INF is just the simplist solution over-all.
    Split-dir is a specified way to lay out disk your src files
    Split-dir
    From code inspection, it looks like the JSP and EJB (therefore the web appmodule
    and EJB module) both depend on the AppUtils class, which is not inAPP-INF, but
    rather in a directory under the enterprise app directory that does notrepresent
    a web app module or EJB module. In the build file's compile target, is itthe
    wlcompile task invocation that causes compilation of AppUtils.java? Or isit
    the ant task invocation (with "build.appStartup" as the value of thetarget attribute)
    that causes compilation of AppUtils.java due to the dependency ofApplicationStartup
    on AppUtils? And what subdirectory of the build directory doesAppUtils.class
    end up in?
    Why not just put AppUtils.java in the EJB module? Both dependent moduleswould
    still be able to see it by virtue of the classloader arrangement. Doesputting
    it in outside of all dependent modules represent a convention that BEArecommends?
    >
    Finally, why not put applicationresource.properties in the same place asits user
    AppUtils.java?
    Thanks,
    Randy
    "Mark Griffith" <[email protected]> wrote:
    Randy:
    (Rob may post later, but here is my take)
    "Randy Stafford" <[email protected]> wrote in message
    news:[email protected]...
    Hello Rob Woollen and All,
    I have a question about packaging and deployment with the "split
    directory
    structure"
    in WebLogic Server 8.1.
    Specifically, how does one go about deciding which classes to put inmyEnterpriseApp/myWebApp/WEB-INF/classes,
    versus myEnterpriseApp/myEjbModule, versusmyEnterpriseApp/APP-INF/classes?
    I think the answer to the first part is easy enough: if there are
    classes
    depended
    on by, say, the servlets in a web app, but not depended on anywhereelse
    in the
    enterprise app, then those classes should go in WEB-INF/classes.
    It's the other part of the question that gives me trouble. I use localinterfaces
    on my session beans. Let's say I have a domain object class returnedfrom
    a session
    bean method and depended on by the web app. If I put that domain
    object
    class
    under myEnterpriseApp/myEjbModule, then the web app can see it by
    virtue
    of the
    classloader arrangement.
    But the wlcompile Ant target supposedly compiles stuff tobuild/APP-INF/classes.
    What stuff? How does it decide?wlcompile has a module factory. If a directory is claimed by a module
    factory then it is compiled by that specific module compiler. The rules
    for
    module definition follow the same J2EE formatting rules.
    So:
    /myejb/
    would be identified as a ebj module by:
    */myejb/meta-inf/ejb-jar.xml
    */myejb/myejb.ejb (EJBGen file)
    then src files (*.java) will be compiled to
    $BUILD_DIR/myejb/
    /myweb/
    would be identifid as a web module by:
    */myweb/WEB-INF/web.xml
    Also for webapps
    /myweb/WEB-INF/src/*.java
    will be compiled ot
    $BUILD_DIR/myweb/WEB-INF/classes
    We choose WEB-INF/src following the struts precedence.
    So a plain old module that has noting but .java files in it will go to
    $BUILD_DIR/APP-INF/classes
    If you have a jar of classes that you need to share across the entire
    ear,
    you would check it into your src tree at:
    $SRC_DIR/APP-INF/lib/mycommon.jar
    You can check out an example at:
    $BEA_HOME/weblogic81/samples/server/examples/src/examples/splitdir/helloWorl
    dEar
    Hope this helps.
    cheers
    mbg
    I haven't experimented and empirically observed
    yet, but I couldn't find the answer in the documentation and tutorials.Is it
    looking for java source files under src/myEnterpriseApp but not undermyWebApp
    or myEjbModule? In general, does BEA have any recommendations in thisarea?
    Thanks,
    Randy

  • Default Warehouse Qty Question

    We have a Crystal Report 2008 report that is used for daily, monthly and yearly total items sold and total items returned and any date range that is pulled the last column "In Stock" needs to give current inventory qty in the default warehouse.
    Currently we get correct output only on the warehouse we define on ({OITW.WhsCode} in "123"). The warehouse "123" defined and {OITM.OnHand} - {OITW.OnHand} subtracts the defined Warehouse from the onhand qty if I understand this correct... Issue with this is if there is one item with qty in the "123" warehouse and another item with qty in the "return" warehouse it will only give me the correct qty based on the warehouse that is defined; the other qty output will be the default warehouse plus the other warehouse qty which is incorrect.
    Question is: how do we get the current qty in the default warehouse only. There are four warehouses total... Is there a formula that we could create that would give us the correct output based on the default warehouse?  Any advice or help would be appreciated!
    Current report information:
    Report has two Formulas and two Parameters and it is Grouped by "OINM"."ItemCode"
    Record Selection
    {OINM.CardCode} <> "BPname02" and
    {OITB.ItmsGrpNam} = {?Group Selection} and
    {OINM.TaxDate} = {?date} and
    {OINM.TransType} in [14, 15] and
    {OITW.WhsCode} in "123"
    --This Formula is used for the onhand qty "In Stock" output.
    {OITM.OnHand} - {OITW.OnHand} 
    --Column Headers on Report
    "Item", "Description", "Grp", "Qty Return", "Qty Sold", "In Stock"
    --SQL Query taken from Crystal Report
    --Some of the select below items are suppressed...
    SELECT "OINM"."ItemCode", "OINM"."Dscription", "OINM"."TransType", "OINM"."OutQty", "OINM"."InQty", "OINM"."TaxDate", "OITW"."OnHand", "OITB"."ItmsGrpNam", "OITM"."OnHand", "OINM"."CardCode", "OITM"."ItemName", "OITW"."WhsCode"
    FROM   (("Prd_DB"."dbo"."OITW" "OITW" INNER JOIN "Prd_DB"."dbo"."OINM" "OINM" ON "OITW"."ItemCode"="OINM"."ItemCode") INNER JOIN "Prd_DB"."dbo"."OITM" "OITM" ON "OINM"."ItemCode"="OITM"."ItemCode") INNER JOIN "Prd_DB"."dbo"."OITB" "OITB" ON "OITM"."ItmsGrpCod"="OITB"."ItmsGrpCod"
    WHERE  "OINM"."CardCode"<>N'BPname02' AND "OITB"."ItmsGrpNam"=N'GrpSelected' AND ("OINM"."TaxDate">={ts '2014-05-05 00:00:00'} AND "OINM"."TaxDate"<{ts '2014-05-06 00:00:00'}) AND ("OINM"."TransType"=14 OR "OINM"."TransType"=15)
    ORDER BY "OINM"."ItemCode"

    hi Vernon,
    are you using sap business one? if so, please post this question to the reporting and printing forum here which is for business one users. you'll get a quicker response on your question there.
    -jamie

  • WLC 5508 and LightWeight APs Deployment question

    Hi There,
    Can you please wit the following question in regards to the deployment of a new WLC and new LAPs,
    I have configured and connected a 5508 WLC and 3500 series LAP.
    LAG is enabled in the WLC and successfully connected to the neighboring switch (using etherchannel) and to the network.
    The port-channel port is set to trunk mode obviously and certain vlan ids are currently allowed (3-5)
    The management interface has this IP address 192.168.5.250/24
    I created a WLAN with WLAN ID 3, Interface set to Management and say SSID test1
    I have connected a new LAP to the network, which switchport interface is set to access mode and assigned with vlan id 3. The LAP is able to join the WLC successfully with an IP address, such as, 192.168.3.100 (assigned via DHCP).
    When I try connecting a mobile client to the wireless LAN, it can successfully detect and connect to the WLAN, created in the WLC (test1) however it gets an IP address by DHCP, in the 192.168.5.0/24 network, which is the IP range of the management interface's IP address.
    What can I do to get the clients connecting on network 192.168.3.0/24? I thought this would be the case since I allocated the WLAN Id of 3 in the WLAN test1 configuration and since the LAP switchport is set to access mode with vlan ID 3.
    Cheers,
    egua5261

    Hi,
    The WLAN ID has no effect with the VLAN ID. WLAN ID is just an identifier for the WLAN.
    you said "Interface set to Management and say SSID test1" and here is your issue.
    You set the interface of the WLAN to the management. So, the WLAN will be mapped to the VLAN to which the management interface is mapped to.
    What you need to do is to create a dynamic interface with ip range in 192.168.3.0/24 and provide VLAN ID for that interface and assign your WLAN to this new interface. This way your clients will get an IP from this specified range.
    HTH
    Amjad

  • EDI with 3rd Party warehouse config question

    I wasn't able to find a bettwr formum for an EDI question, and since most of them seemed to be posted to this forum, here I go....
    I am trying to configure a 4.6 system to be able to exchange EDI documents to a third party warehouse. We want to send them a message to ship product and to receive a message confirming what they shipped. This will be related to outbound delivery documents in SAP.
    I have setup a Logic System representing the warehouse, a new output condition to represent the outbound notification to ship product and the partner profile for the Logical System.
    When I try to create the output for the delivery (I entered Output: LD03, Medium: 6, Part Func: LS, Partner: WHSE3RD and Language EN) I get the
    error message: "You cannot enter a partner function for output LD03" (VN041).
    f I don't enter the partner function, it gives me the message "Partner function does not exist in table TPAR" (VN046).
    Any ideas as to what I am missing?
    Thanks, Rick

    Hi Richard,
    Have you setup LS Partner Profile (t/code WE20) for WHSE3RD, distribution model (t/code BD64) and record condition for output type (t/code NACE)?
    Regards,
    Ferry Lianto

  • 10.7 client .dmg creation for deployment questions.

    Please forgive me if this question is in the wrong forum.
    I've been doing searches online and in the 10.7 Peachpit books (client and server) and I can't seem to find the info I am looking for.
    I am trying to create a 10.7 .dmg to use on new Macs my company is going to deploy. We are not using 10.7 Server at the moment, we
    are using 10.6.8 Server. This will not be an image we are going to deploy over the network either. I know this may not be "best practices"
    but at the moment, this is the way we are going to (re)image new Macs.
    Basically, I want to create a 10.7 .dmg that does NOT contain the recovery partition. I can't seem to find a way to do this. If I am correct,
    even a "clean" install, when booted from a USB 10.7 recovery drive, will create the recovery partition, right?
    I am running 10.7 client and i have the 10.7.3 Server Admin tools.
    I apologize in advance if I am missing something glaringly obvious.
    Also, any tips on best practices for creating 10.7 client .dmgs for deployment that's any different than creating 10.6 images?
    thanks in advance.

    Using information from this site and my own scripting experience I present to you a more secure way to do it which supports munki and other deployment tools without having the password to the ODM or client in clear text on the client or on packages easeliy accessable on a http server:
    On server:
    ssh-keygen
    Save the output of ~/.ssh/id_rsa.pub to your clip board
    Then create a launchd or something so that this runs at startup
    nc -kl 1337 | xargs -n 1 -I host ssh -q -o StrictHostKeyChecking=no root@host /usr/local/bin/setupLDAP diradminpassword localadminpassword > /dev/null 2>&1
    On client:
    Create script (to use in a package as postinstall or something):
    #!/bin/bash
    # Turns on ssh
    systemsetup -f -setremotelogin On
    # Sets up passwordless login to root account from server
    echo "ssh-rsa FROM_YOUR_CLIPBOARD_A_VERYLONGOUTPUTOFCHARACTERS [email protected]" >> /var/root/.ssh/authorized_keys
    # installs setupLDAP
    mkdir -p /usr/local/bin
    cat > /usr/local/bin/setupLDAP <<'EOF'
    #!/bin/sh
    PATH=/bin:/sbin:/usr/bin:/usr/sbin
    export PATH
    computerid=`scutil --get ComputerName`; yes | dsconfigldap -vfs  -a 'server.domain.no' -n 'server' -c $computerid -u 'diradmin' -p $1 -l 'l' -q $2
    EOF
    chmod +x /usr/local/bin/setupLDAP
    End note
    That was the code, now you just add the skeleton And to clearify what this does, first we let the server connect to the client as root even though root access is "disabled" (he has no password and therefore you can't log in as root as default). Then we create a small script to setup OD binding (/usr/local/bin/setupLDAP) but this script doesn't contain the passwords. Then the client send a request to the small socket server on the server with it's hostname, then the server connects to that hostname and executes /usr/local/bin/setupLDAP with the needed passwords.

  • JSC deployment question.

    I have a situation where after my JSC created application is deployed, I need to have the ability to access PDF files that I give the user of my application the ability to select in a listbox.
    At development time, the names and locations of these PDF files (which will be stored locally on the Sun App Server) are not known, so I cannot have JSC bundle them up with the WAR. What I do instead is have my JSC app read from a database and populate a listbox with the names of the PDF files and map those to the local URL (as soon as I figure out what that will be).
    My question is this, once I deply the app, where (what directory) do I place the PDF files under assuming that I am using the bundled Sun Application Server that comes with JSC?
    Thanks!

    Actually, it might be better to read the PDF file directly from the database instead of placing it in the path somewhere and redirecting to it (more security if ever needed...no static files to browse to).
    Let me dig around for an exmple of doing this sort of thing and I'll try to apply it to a JSC project context and post my findings here.
    If anyone has done this before please let me know!
    Thanks.

  • Deployment Question and non-compliant

    Hi, I have a question about deployments and non-compliant systems. Since we updated to 2012 R2 I have had many patching deployments fail with non-compliant messages. If I bring up the deployment it shows many are installed and many are Required.
    Could anyone answer the following question?
    If for example I am deploying a IE 11 patch to Windows 7 machines that does not have IE 11 installed yet would that give the non-compliant error because it cannot install the IE11 patch? This would also apply to .Net 4 and 4.5 for example. We deploy Software
    Update Groups based on Operating Systems so every month I search for every patch non-expired and not superseded for the OS in question and then make the software update group based on that. I figured if the software update group had a patch for a product like
    IE 11 that was not installed on the device yet it just would not install it.
    Any help is appreciated.

    Hi,
    If the update isn't applicable let's say that IE11 is not installed it will not report it as non-compliant and it will not report it as required either so you should be fine in the reports.
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • Nostage, stage, external_stage; deployment question ?

    Hi, I have 2 questions:
    1 )what does these nostage, stage, external_stage exactly means ?
    Iam more or less interested in knowing about "external_stage" ...???
    2) while deploying my application, i have also seen following 2 radio buttons
    to choose from:
    *Copy this Web Application module onto every target for me.
    *I will make the Web Application module accessible from the following location:
    NOw my question is: if i have 2 physical hardware machine, a CLUSTER having
    2 managed servers on each of the boxes .....and also i have selected "no_stage"
    option then, will my deployment succeeds IF i have also choosen the radio button
    to be *I will make the Web Application module accessible from the following location:
    now when i choose stage=true, then my application is physically copied to each
    individual servers' stage directory. what would happen if i have choosen "nostage"
    along with the second radio button while having 2 physical boxes in consideration
    -steve

    steve wrote:
    *I will make the Web Application module accessible from the following location:
    === no_stage;Right. no_stage says that you will handle the distribution of files.
    stage asks the admin server to do it for you.
    >
    if the above holds true and if i select any of the above 2 options in the case
    where i have 2 harware boxes .....and iam deploying an application to 2 managed
    servers where there is no admin server running,,, then would deployment succeeds
    also, I have 2 managed servers on another harware box, where there is an admin
    up and running.
    so in the case where there are only managed servers and iam selecting no_stage=true;
    would the deplyoment succeds ?
    When you deploy an application, you are contacting the admin server
    regardless of stage/nostage etc. So the admin server has to be up to do
    a deployment.
    However, the admin server does not have to be running on the same
    machine as the managed servers.
    -- Rob
    -steve
    Rob Woollen <[email protected]> wrote:
    steve wrote:
    hmm ....that is strange.
    so does it mean,
    *I will make the Web Application module accessible from the followinglocation:
    IS EQUAL TO "nostage"
    ???Yes
    iam just recalling as i have also seen a drop-down somewhere under....server
    deployment ....where basically you can set "nostage"/"stage"/"external-stage"...
    what is the co-relation between these two places ?The initial deployment of an application takes you through an assistant
    in the console that tries to use more descriptive terms than
    stage/nostage etc. However, if you look at the MBeans directly or use
    the command-line weblogic.Deployer than stage etc is what you'll see.
    It may show up elsewhere in the console as well.
    -- Rob
    -steve
    Rob Woollen <[email protected]> wrote:
    Steve wrote:
    Hi, I have 2 questions:
    1 )what does these nostage, stage, external_stage exactly means ?
    Iam more or less interested in knowing about "external_stage" ...???
    nostage says the application path is valid on all servers. This makes
    sense if you have a networked or shared filesystem. Or, if all of
    your
    machines are identical, and you want to do the distribution yourself.
    stage asks WLS to distribute the files from the admin server to the
    managed servers.
    external_stage is a variant of stage that's rarely used. basicallythe
    admin server copies the files to the managed server, but the path on
    each managed server might be different. I believe it's just relative
    to
    the server's staging directory.
    2) while deploying my application, i have also seen following 2 radiobuttons
    to choose from:
    *Copy this Web Application module onto every target for me.
    *I will make the Web Application module accessible from the followinglocation:
    That's a nice way of asking you staged or no stage.
    -- Rob
    NOw my question is: if i have 2 physical hardware machine, a CLUSTERhaving
    2 managed servers on each of the boxes .....and also i have selected"no_stage"
    option then, will my deployment succeeds IF i have also choosen theradio button
    to be *I will make the Web Application module accessible from the
    following
    location:
    now when i choose stage=true, then my application is physically copiedto each
    individual servers' stage directory. what would happen if i have choosen"nostage"
    along with the second radio button while having 2 physical boxes inconsideration
    -steve

  • Warehouse items question

    Warehouse Item Records question  
    When creating a New Warehouse then automatically New Item records are also created. The Item Records created for the New Warehouse are empty Item records based on the Original warehouse initially created when we started the system. I wonder if these New Item Master records(empty) created are Mandatory or is it an option in the Initialisation or Setup. In other words, can I create a New Warehouse WITHOUT any associated Item Master Records, just an emty warehouse where I can add my own stock Items?
    Also, does anybody know how to Delete these new Blank Master Stock Items created in this new Warehouse.
    The main reason I want to Delete these Master Items is to enable me to Delete the Whole new warehouse I have created by mistake! At present I cannot Delete the warehouse because of all these Master items that SAP creates by default.
    Thanks for your help for this funny problem - yes it is funny because I only pressed * to search for the Codes of my existing warehouses, but I was in the ADD mode, so it crreated a new warehouse called * and a lot empty Master Item records.
    I hope this makes sense
    Robert

    Yes, SAP B1 has a feature where, when the check box to 'Auto Add All Warehouses to New Items' under 'General Settings' --> Inventory Tab.
    However, the feature works a little differently then what you've described. What it does is that it actually creates the new warehouse automatically for any newly created inventory item. This feature can come in handy when you have say, 6 warehouses setup within SAP B1 and you've just created a new inventory item. You wont have to manually add all 6 warehouses to the new inventory item.
    There is somewhat of an issue with the Warehouse form, because it opens in the "Add" mode by default, and you're not the first user to accidently hit ' * ' and create a new warehouse with the * name. When this happens, SAP B1 will auto create the * warehouse to all current inventory items.
    At this point in time, there is no method to batch remove the * warehouse except to do it manually by hand.

  • Resizing User Profile Disks in Existing Server 2012 R2 RDS Deployment Question

    Once the initial maximum size is set and the VHDXs have been created in a Server 2012 R2 RDS deployment, will attempting to increase Collection's maximum UPD size by say.. issuing a Powershell command of:
    Set-RDSessionCollectionConfiguration -CollectionName MySpiffyNewCollection -MaxUserProfileDiskSizeGB 10
    over-write the existing VHDXs instead of simply increasing their size? (max size is currently 5GB)
    I'm not at a point where I can test this in a lab condition to find out, and I have not found this question asked (or at least not definitively answered) in this forum yet.
    -G

    Hi,
    Thank you for posting in Windows Server Forum.
    We can resize the UPD file with below command:
    Resize-VHD –Path c:\BaseVHDX.vhdx –SizeBytes 1TB
    After running this mount the .vhdx file and open disk manager and there will be unallocated disk, and then you can click extend disk/volume and its done.
    You can refer following article for more information.
    Resize User Profile Disks
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Authorization, deployment  question

    Hi all,
    does somebody know whether it is possible to create a VC component that can be later used from users without authentification, just as normal web page.
    And another question is how can I choose a custom link to call a deployed VC application (as webdynpro), and not use the one, generated automatically, because it is too complex (exampe: change the link http://host:port/webdynpro/dispatcher/sap.com/test~newdc_impl/OrderForm
    to something simpler)?
    Thanks in advance,
    best regards,
    Vera Stoyanova

    Hi,
    thanks for the answer. But what I wanted was to be able to create the custom link in CE7.1 directly. Is this possible.
    Or at least is it possible to have the part of the name I have given in VC for the development component, not with this test~ prefix (the example link is in my first post)? It is always automatically generated so.
    Best Regards,
    Vera

  • Data Warehouse Deployment

    I would like to know if you folks have any statistics regarding what types of platforms your customers are deploying
    data warehouse solutions on ( Unix, Linux, Windows). I am really interested in what percentage of customers deploy on
    each type of platform. Also, if you have any guidelines to use to help you select the appropriate platform, i.e. size of
    databases, number of users, etc, that would be very helpful. Thanks.

    You could start with:
    - Oracle 11g documentation: http://www.oracle.com/pls/db111/portal.portal_db?selected=6&frame=
    - Oracle OWB 11g tutorials: http://www.oracle.com/technology/obe/11gr1_owb/index.htm
    In the documentation you can find the requirements.

Maybe you are looking for

  • Purch.Req for STO

    Dear Experts... 1. Can we have a Purchase Requisition for the STO? Our client based in Kochin has branches in other states like Delhi, Kolkata,       Andhra etc..the sales requirement data collected from branches will be sent to Kochi head office, an

  • Sql developer to oracle 10 g xe

    I have installed oracle 10 g xe in my pc and oracle sql developer also.i want to connect sql developer to oracle 10 g xe. Please help me in this isssue.i can improve a bit through going from procedures and so many things. Thanks in advance, Arvind Ku

  • PA & OM mini master 1st phase & Full blown 2nd phase?

    hi gurus!                   We have another problem. The thing is we already have mini master in the system before full implementation. The client is already using the production server. The new Ent & Personnel Structure has changed. So the second ph

  • Increase number of recent files projects??

    Does anyone know whether it is possible to increase the number of recent projects displayed under FILE > OPEN RECENT. At the moment it only displays 10 and I would really like to increase that number.I looked in preferences to no avail. thanks Ray

  • Unable to create a mask on Adjustment layer

    hi. I want to apply motion tracking data to a mask, therefore i'm trying to utilize an adjustment layer to control the mask position. So i tracked motion on a video footage, applied tracking data to Adjustment layer, then marked the Adjustment layer