Get Computers VBscript Issue

My setup consists of 1 server and 1 to 9 computers at multiple locations containing the same setup at each location but may vary on the amount of computers.  These computers that are attached to the server are the same name at each location, but may
only have 2 computers at one location, and 5 at another and so forth.  The following script is what i have to get each computer name within a array setup so that it will go through each computer and output to a text file the findings.
The issue i am having is that if 1 location has less than 9 computers (as you can see listed in my script).  It will continue to output the last computer it found until the script reaches the 9th computer.  This is because i have the 'On Error
Resume Next" of course.
Now, the script works fine.  But i would like to find a way such as a "on error" or pull from the active directory the computers available in the domain without having to modify too much of my script.
Another issue is, some computers at the each location might not be on while others will be.  For example: If i run a script for 1 server and 3 computers for that location, The script will of course find the server, but if comp1 is offline, and since
it is the first computer in the array of the script.  The script will error out and not finish with the other 2 computers that are online.  
On Error Resume Next
Set objFSO = CreateObject("Scripting.FileSystemObject") 'Creates and saves a text document of results to the desktop'
Set objFile = objFSO.CreateTextFile("System Information.txt", True)
arrComputers = Array("Server","comp1","comp2","comp3","comp4","comp5","comp6","comp7","comp8","comp9") 'Computers Listed that the script will search for'
For Each strComputer In arrComputers
objFile.Writeline
objFile.Writeline "===================================="
objFile.Writeline "Computer: "& strComputer 'The name of the computer for the following information listed below'
objFile.Writeline "===================================="
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") 'Authentication level to obtain information from WMI app for local and remote computers'
Set colSettings = objWMIService.ExecQuery ("Select * from Win32_ComputerSystem")
For Each objComputer in colSettings
objFile.Writeline "System Name: " & objComputer.Name 'Gets the computer name'
objFile.Writeline "System Model: " & objComputer.Model 'Gets the computer model'
objFile.Writeline "Total Physical Memory: " & objComputer.TotalPhysicalMemory 'Gets the computer installed memory"
Next
Set colSettings = objWMIService.ExecQuery ("Select * from Win32_OperatingSystem")
For Each objOperatingSystem in colSettings
objFile.Writeline "OS Name: " & objOperatingSystem.Name 'Gets the computer OS'
Next
Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_ComputerSystemProduct")
For Each objItem in colItems
objFile.Writeline "Serial Number: " & objItem.IdentifyingNumber 'Gets the computer serial number'
Next
Next

This is all made much, much simpler if you use PowerShell.
$computerList = @(
"server"
"comp1"
"comp2"
# ...etc.
foreach ( $computer in $computerList ) {
if ( Test-Connection $computer -Count 1 -Quiet ) {
$cs = Get-WMIObject Win32_ComputerSystem -ComputerName $computer
$os = Get-WMIObject Win32_OperatingSystem -ComputerName $computer
$csProduct = Get-WMIObject Win32_ComputerSystemProduct -ComputerName $computer
New-Object PSObject -Property @{
"System Name" = $cs.Name
"System Model" = $cs.Model
"Total Physical Memory" = $cs.TotalPhysicalMemory / 1gb
"OS Name" = $os.Name.Split('|')[0]
"Serial Number" = $csProduct.IdentifyingNumber
You can put this in a script and export to CSV by piping to Export-CSV.
This is also easy to extend by adding additional properties.
I would also recommend using a parameter instead of hard-coding the computer names at the top of the script, but I'll leave that as a learning exercise.
-- Bill Stewart [Bill_Stewart]

Similar Messages

  • How can I get back old issues from my TIME app?

    Hi, I hope someone can help me.  I've been trying to get help for a month now.  I had purchased several issues from TIME app but when I just got my ipad 2, I couldn't get the issues back.  I used the same ID and password.  I decided to try buying a new issue and when I did, I had an email from itunes warning me that it was not my usual ID.  I am very confused.  I wrote to TIME and they say I should contact itunes.  I have spent hours trying to contact itunes for help.  They seem uncontactable.  Can someone please tell me if I can somehow get my old issues back?
    Karen

    If they were not backed up or part of photostream, then no, you cannot.

  • HT1768 I get a message "The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes." Please advise what I need to do to get around this issue - at the moment iTunes wont open up!

    I get a message "The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes." Please advise what I need to do to get around this issue - at the moment iTunes wont open up!

    Hi did you ever get a solution to this problem? Having the same issue myself!

  • Just had to wipe and my Mac but I'm still getting storage message issues.  The About Storage screen says I have 285GB of "Other."  What is it?  Where is it?

    Just had to wipe and my Mac but I'm still getting storage message issues.  The About Storage screen says I have 285GB of "Other."  What is it?  Where is it?  I can't even restore my photo library.

    This should help you understand http://pondini.org/OSX/LionStorage.html

  • I'm getting the below issue when I try to deploy a report with Dynamic parameters, when I deploy it with static parameters I'm not getting this issue.

    I’m getting the below issue when I try to deploy a crystal report with Dynamic parameters in BI Launch Pad, when I deploy the same report with static parameters I can deploy and run it. I have Restarted the BI server, still the issue exitno use. kindly help me on this issue.
    “This error occurred: Adding Crystal Report "CrystalReport1.rpt" failed. The server with kind rptappserver returned an error result. Failed to copy the report file to the report object. Refreshing the report object properties might have failed. Failed to read data from report file CrystalReport1. Reason: Failed to read parameter object”.

    BO does not run dynamic params through the report as would happen without BusinessObjects (BO) or Crystal Reports Server (CRS).  When you publish a report with dynamic parameters to BO/CRS, the prompt is published to the repository so that it can be accessed through the Business View Manager (which can be installed as part of the client tools).  In order for this to work a couple of things need to happen:
    1.  You need to be sure that you check the "Update Repository" box on the Save As screen the first time you publish the report.
    2.  Your BO/CRS user needs to have "view" access to the Crystal2013ReportApplicationServer in the Servers section in the CMC - in fact, the Everyone group should be given view access to the server in order for dynamic prompts to work correctly.
    3.  In the Business View Manager, the Administrator user needs to give your user, or, even better, a Crystal Developers group full control access to the "Dynamic Cascading Prompts" folder.
    Best practice for dynamic prompts in a BO/CRS environment is to actually create the prompts in the Business View Manager.  This will allow you to create a single data connection that can be reused and also create lists of values such that the same list or prompt can be reused by multiple reports.  If you just create the prompts in Crystal, you will end up with multiple data connections to the same database, the prompts will use the whole query for the reports to get the dynamic values instead of just a focused query to the lookup table that contains the values, and there ends up being lots of duplication and chaos.
    -Dell

  • What is the table name for getting Last Receipt  & issue date of material?

    Hi Friends,
    What is the table name for getting Last Receipt  & issue date of material?
    *Case 1:*
    Here, I am running report in May 2008. But, if there is no goods receipt for the respective material since last 13th March 2007.
    Then in this case Last goods receipt date should be 13th March 2007.
    Please guide me.
    Regards
    Siva

    I checked MSEG table. But, I didn't find any field for date.
    Can you tell me field name.
    Regards
    Siva

  • I try to sinc. first i get "computers not authorized, would you like to authorize. I do that then it tells me its already authorized.  enter and it starts over.

    I try to sinc. first i get "computers not authorized, would you like to authorize". I do that then it tells me its already authorized.  enter and it starts over.

    Google is amazing...
    http://support.apple.com/kb/HT1420
    also you can:
    To deauthorize all computers associated with your account
    Click iTunes Store in the Source pane.
    If you’re not signed in to the store, click the Account button, then enter your account name and password.
    Click the Account button again (your ID appears on the button), enter your password, and then click View Account.
    In the Account Information window, click Deauthorize All.
    After that start from scratch

  • When I open my mail account I keep getting the message "Checking for Mail". I deleted the yahoo account and set it up again and I am still getting the same issue plus I am not seeing any of my mail or folders. Can anyone help?

    When I open my mail account I keep getting the message "Checking for Mail". I deleted the yahoo account and set it up again and I am still getting the same issue plus I am not seeing any of my mail or folders. Can anyone help?

    This is how I fixed it on my new iPhone 5S. Using the standard yahoo setting on my phone.
    You will have to access  "managing your app passwords" on your account profile for yahoo. Generate password for your app. For example: "My iPhone 5S'
    Go to your Iphone and set up your yahoo mail account on your phone the normal way and you have to use the generated password.  instead of the yahoo account password.
    source:
    http://virtualizeme.net/iphone-5-yahoo-mail-server-unavailable-fix/
    I hope this helps,
    cheers

  • Help please - I can't update my ipad software as always get network connections issues - have turned off security!!

    help please - I can't update my ipad software as always get network connections issues - have turned off security!!

    I would try updating through a computer. Just make sure that your computer has the latest itunes

  • Computers having issue reauthenticating

    I am having issues with NPS when computers are trying to re-authenticate. Before diving into my issue I'll post my setup. 
    Workstations are connected to two different switches that have 802.1x enabled by port. 
    I have two Server 2012 domain controllers with NPS role installed. One switch is an Extreme Networks x450a-48T and the other is a x150-48T. Both are running ExtremeXOS version 12.6.3.2.
    The issue I am having is that according to the switch, it is having issues talking to my NPS servers. If this happens when a computer is trying to re-authenticate, the authentication fails disconnecting them from the network for either a few seconds or a
    couple of minutes. Looking at the time stamp in the logs between the NPS servers and the switch, the errors are within seconds of each other so I cannot tell which one was actually first.
    On the server, I get this in the event viewer (identifiable information changed):
    Time: 4/22/2014 10:50:37 AMNetwork Policy Server discarded the request for a user.
    Contact the Network Policy Server administrator for more information.
    User:
    Security ID: domain\computername$
    Account Name: host/computername.domain.local
    Account Domain: domain
    Fully Qualified Account Name: domain\computername$
    Client Machine:
    Security ID: NULL SID
    Account Name: -
    Fully Qualified Account Name: -
    OS-Version: -
    Called Station Identifier: -
    Calling Station Identifier: <mac address>
    NAS:
    NAS IPv4 Address: <switch ip>
    NAS IPv6 Address: -
    NAS Identifier: -
    NAS Port-Type: Ethernet
    NAS Port: 1015
    RADIUS Client:
    Client Friendly Name: <switch name>
    Client IP Address: <switch ip>
    Authentication Details:
    Connection Request Policy Name: wired
    Network Policy Name: user-office port-based
    Authentication Provider: Windows
    Authentication Server: NPS1.domain.local
    Authentication Type: EAP
    EAP Type: -
    Account Session Identifier: -
    Reason Code: 1
    Reason: An internal error occurred. Check the system event log for additional information.
    And then when I look at the switch, it has: 
    04/22/2014 11:52:02.72 <Info:nl.ClientAuthenticated> Network Login 802.1x user host/computername.domain.local logged in MAC <mac address> port 15 VLAN(s) "user-office", authentication Radius
    04/22/2014 11:50:46.58 <Info:nl.ClientReAuth> Network Login user host/computername.domain.local unauthenticated as reauthentication failed, Mac <mac address> port 15 VLAN(s) "user-office"
    04/22/2014 11:50:46.57 <Warn:AAA.RADIUS.noRespForDot1xReq> No response from RADIUS server (NPS1 address) for 802.1x request sent from switch.
    04/22/2014 11:50:46.57 <Warn:AAA.RADIUS.serverSwitch> Switch to server (NPS2 address)
    04/22/2014 11:50:43.56 <Warn:AAA.RADIUS.resendPkt> Resend packet to Authentication Server address (NPS1 address) current packet count is 2
    04/22/2014 11:50:40.56 <Warn:AAA.RADIUS.resendPkt> Resend packet to Authentication Server address (NPS1 address) current packet count is 1
    I see that the NPS server says the reason code is 1 which means it was an internal error which leads me to believe that the switch cannot contact the NPS server during the time when the server is having an error. I have found the logging failures can lead
    to not allowing a client to authenticate but I have logging enabled locally only and within the logging settings, I have "If logging fails, discard connection requests." so even if it was a logging failure, that should not prevent the client from
    authenticating.
    Any guidance as to what is causing this problem for me and how to fix it?

    Hi,
    First, troubleshoot the issue by following article.
    Access Request Was Discarded
    http://technet.microsoft.com/en-us/library/dd348465.aspx
    Since error code 1 indicates NPS server error, please verify the configuration:
    Configure a Wireless Access Point as an NPS RADIUS Client
    http://technet.microsoft.com/en-us/library/dd283005(WS.10).aspx
    NPS RADIUS Client
    http://technet.microsoft.com/en-us/library/cc735367(v=ws.10).aspx
    Checklist: Configure NPS for Secure Wireless Access
    http://technet.microsoft.com/en-us/library/cc771696.aspx
    802.1X Authenticated Wireless Deployment Guide
    http://technet.microsoft.com/en-us/library/dd283093(v=ws.10).aspx
    Hope this helps.

  • VBScript issue when installing

    I get a message when i try to install the new iTunes and it says
    iTunes could not be installed because Visual Basic Script (VBScript) Is not installed or has been disabled. Make sure VBScript is installed, turn off script blocking in anti-virus and personal firewall software, re-register VBScript, and hten install iTunes.
    Could sombody please help me, i dont have any Anti-Virus software, and my built in firewall isisnt blocking it.
    If you have a solution could you pleas eMail it to me at [email protected] or message me on aim at Dylanx92
    Okay, thanks.

    Well, i just ran into this issue and the problem was lack of admin rights. It was my company's laptop so got the setup initiated by my company's IT team with admin rights. However, the upon completion of setup, i go the same error messages as stated above: 
    SqlEngineDBStartConfigAction_install_configrc_Cpu32
    giving 7-8 times, even pressing "Cancel", the message "The requested control is not valid for this service";
    After this, I receive one last message ""Could not find the database engine startup handle", then installation ends with failures, in particular the Database Engine and the Server Replication failed to be installed.
    Also, if you open SQL Server Configuration, the status of the service is "Change Pending" and you would not be able to set the startup login type to Local Service/System/Network.
    Then, I just got my account added as Local Admin and then tried to start the service and was able to.
    However, I am not sure whether same was the case for you.
    Please mark the answer as helpful if i have answered your query. Thanks and Regards, Kartar Rana

  • TO_CHAR with dates to get week number issue

    I am trying to build a report showing weekly sales data and running into an issue with Dates and TO_CHAR..
    Using the date 9/29/2007, I expect the return from the following to be 4:
    SELECT TO_CHAR('09/29/2007','W') FROM DUAL
    However, it returns 5!!! Testing further I tried the next day, since it is a Sunday, it should be the start of the next week, 5..
    SELECT TO_CHAR('09/30/2007','W') FROM DUAL.. I do get a 5..
    I understand that the implementation of TO_CHAR with the 'W' parameter defaults a week start on what ever the first day of the month is, but I need a method that is more calendar like (Sunday is the start of a week, Saturday end of the week).
    Anyone have a nifty solution?
    Thank you,
    Tony Miller
    UTMB/EHN

    This works pretty well. Please note that it is zero based, so add 1 if you want it to start with the first week as 1.
    WITH TAB AS
      (SELECT TO_DATE('12/01/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/02/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/03/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/04/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/05/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/06/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/07/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/08/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/09/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/29/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/30/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL UNION ALL
       SELECT TO_DATE('12/31/2007', 'mm/dd/yyyy') DATE_COL FROM DUAL)
    SELECT DATE_COL,
      TO_CHAR(DATE_COL, 'ww') W_IN_YEAR,
      TO_CHAR(TRUNC(DATE_COL, 'month'), 'ww') W1_OF_MONTH,
      TO_NUMBER(TO_CHAR(DATE_COL, 'ww')) -
      TO_NUMBER(TO_CHAR(TRUNC(DATE_COL, 'month'), 'ww')) MY_WEEK,
      TO_CHAR(DATE_COL, 'W') ORACLE_WEEK
    FROM TAB
    DATE_COL     W_IN_YEAR W1_OF_MONTH MY_WEEK  ORACLE_WEEK
    01-DEC-2007  48        48          0        1          
    02-DEC-2007  48        48          0        1          
    03-DEC-2007  49        48          1        1          
    04-DEC-2007  49        48          1        1          
    05-DEC-2007  49        48          1        1          
    06-DEC-2007  49        48          1        1          
    07-DEC-2007  49        48          1        1          
    08-DEC-2007  49        48          1        2          
    09-DEC-2007  49        48          1        2          
    29-DEC-2007  52        48          4        5          
    30-DEC-2007  52        48          4        5          
    31-DEC-2007  53        48          5        5          
    12 rows selected

  • Trying to get a billing issue resolved, getting no...

    I have been been going around in circles with BT.
    It all started about a month ago when we recieved a call from BT saying that if we didn't pay our bill, we'd be cut off. We hadn't received a bill, it must have never been sent, or been lost in the post. The guy on the phone told us how much we had to pay so I paid the bill online.
    That would have been it except that I was really in a rush when I did this and by mistake I put in the wrong account code, so the bill payment went into someone elses account, not mine.
    A week later I got called again by BT being threatened with having our phone cut off, so I rang them back and figured out what the problem was and explained to the person in the call centre what had happened, and he said that he'd marked the payment of the bill so it would be transferred to our account, not the account I had put in by mistake. The last thing I said to the person on the phone was "Will BT cut me off now?" and he said "Absolutely not."
    One more week went by, and BT restricted my line, for not paying the bill. I called up, again, and explained the problem, again, and the person in the call centre apologised and had the line reactivated and said that the payment would be switched to our account. He said it would be expedited, and we wouldn't be charged for reactivation, and that we wouldn't need to call back about the issue anymore.
    Another week went by and you've guessed it - We get another call from BT, saying they're going to disconnect our service permanently if we don't pay the bill. At this point I just capitulated and paid it, AGAIN, online, with the correct account code. In all honesty, I'm expecting BT to cut us off on saturday regardless of the fact that I've now paid my phone bill, twice.
    We've been perfect customers with BT for twenty seven years and they just turn around and treat you like **bleep** the moment there's the slightest problem.
    All I want is: 1) the original, incorrect payment I made either transferred into my account, or refunded to me and 2) to not have to pay any stupid late payment/reconnection fees. We paid on time, despite the fact there was never a bill
    I want to know what I can do from here - I really don't want to have to call anyone else, I've spent about £50 on endless calls to people in BT's call centres who just don't understand what the problem is, and can't do anything to help.

    hi
    "I've spent about £50 on endless calls to people in BT's call centres who just don't understand what the problem is, and can't do anything to help. "
    This is very confusing as calls to BT free how have you spent any money calling them
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Getting Receiver Agreement issue in IDOC to File scenario

    Hi Gurus,
                Need your help. I'm working on a IDOC to File scenario. I'm using CREMDM.CREMDM04 as outbound Interface & small structure VEND_FILE_IN_MI as Inbound Interface. Though I've configured the receiver Communication Channel as a File Adapter with proper Inbound Interface I'm seeing the message getting failed which is showing CREMDM.CREMDM04 as both Outbound & Inbound interface and pointing a Receiver Agreement issue . The Receiver service is coming Properly, only the Interface is coming wrong as the sender interface. I've checked both Receiver Agreement & Receiver determination and found the Receiver Service, Communication Channel & Interface are perfectly mapped there, I cross checked the same Configurations in IE via SXI_CACHE after full Cache copy.
    Error Message:
    No receiver agreement found for sender -SAPERP to receiver -IDOC2FileReceiver,urn:sap-com:document:sap:idoc:messages
    Error  Category : Outbounding
    Error ID : CO_TXT_OUTBINDING_NOT_FOUND
    My IR design:
    Sender:
          Interface : VEND_IDOC_OUT_MI
          Message Type : CREMDM.CREMDM04
    Receiver:
          Interface : VEND_FILE_IN_MI
         Message Type : VEND_IN_MT , Data Type VEND_FILE_DT
    My ID Config:
    1. Sender / Outbound  Message:  Service Type --> Business System
                                                  Service  ---> SAPERP
                                                 Interface--> VEND_IDOC_OUT_MI
                                                 Adapter Type : IDOC
    2. Receiver / Inbound Message: Service Type --> Business Service
                                               Service       --> IDOC2FileReceiver
                                               Interface    ---> VEND_FILE_IN_MI
                                               Adapter Type--> File
    3. In Sender Agreement : Specified the Sender Communication Channel
                                         VEND_IDOC_OUT_Channel
    4. In Receiver Agreement Configured the receiver service IDOC2FileReceiver aging sender service SAPERP & Interface VEND_IDOC_OUT_MI.
    5. In Interface Determination Specified the Inbound Interface VEND_FILE_IN_MI and Interface Mapping VEND_IDOC_FILE_IMAP
    6. In Receiver Agreement specified the receiver communication Channel IDOC2FileChannel against Receiver Service & Interface.
    I used the Configuration wizard in my second attempt to make sure the sequence of configuration.
    Can anyone help me identifying what's going wrong. I'm very new to XI and basically this  is the first assignment I'm working on.
      Regards,
    Subhadip

    Hi Babu,
               In the Inbound data type all the fields have MinOccurance = 0 and MaxOccurances unbounded.
    Please find the XSD:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://adc.com/poc/sample" targetNamespace="http://adc.com/poc/sample">
         <xsd:complexType name="VEND_FILE_DT">
              <xsd:annotation>
                   <xsd:appinfo source="http://sap.com/xi/TextID">
                   8f584d80456311dccd680018fe79f69b
                   </xsd:appinfo>
              </xsd:annotation>
              <xsd:sequence>
                   <xsd:element name="VENDCODE" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             a8653cb0390c11dc843000188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Vendor Code
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="VENDNAME1" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             a8653cb4390c11dc84e800188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Vendor name4
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="ORT01" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             a8653cb5390c11dcbe3400188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Vendor City
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="PFACH" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             a8653cb6390c11dc896100188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Vendor PO Box
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="STRAS" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             4811db0335fd11dc9e9600188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Vendor House No &amp; Street
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="PSTLZ" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             4811db0435fd11dc98b000188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Vendor Postal Code
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="LAND1" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             4811db0535fd11dc870500188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Vendor Country
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="STCD1" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             7ca8d600403b11dcc9bd00188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Tax Number 1
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="TELF1" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             9abaee7040e611dcce4300188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Telephone number
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="STCEG" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             9abaee7140e611dc8f3900188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             VAT Registration Number
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="LIFNR" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             9abaee7240e611dccef700188bd09370
                             </xsd:appinfo>
                             <xsd:documentation xml:lang="EN">
                             Account Number of Vendor or Creditor
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="ALTKN" minOccurs="0" maxOccurs="unbounded">
                        <xsd:annotation>
                             <xsd:appinfo source="http://sap.com/xi/TextID">
                             9abaee7340e611dcb3bc00188bd09370
                             </xsd:appinfo>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:minLength value="0" />
                                  <xsd:maxLength value="50" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
              </xsd:sequence>
         </xsd:complexType>
    </xsd:schema>

  • I Would Like to get the following issues resolved/Please Help!

    I am having the following issues with my Itunes software.
    1)  A message pops up indicating I cannot burn CDs unless I uninstall and reinstall Itunes.
    2)  I get the message "The Itunes library file cannot be saved, you do not have enough access to do so".
    3) My Ipod will not connect to my Itunes software this is the messsage that pops up:
    "An IPod has been detected, but it could not be indentified properly. Please disconnect and reconnect the Ipod, then try again. If the problem persists,    uninstall Itunes then install itunes again."
    4) An Update keeps popping up about the latest Itunes software being available.
      Please note that  I have made a big investment in my Itunes library and I do not want to lose or damage it. I am really looking for responses from individuals who have had these problems and resolved them successfully and permanently. Thanks.

    Please note that  I have made a big investment in my Itunes library and I do not want to lose or damage it
    So you have made a current backup of this (and all other important files) before doing anything else, correct?
    After you make a complete backup, just download and install the latest iTunes.
    This will do nothing to your iTunes library or media (the entire /My Music/iTunes/ folder).

Maybe you are looking for

  • SLoc of Free goods from main item

    Dear Gurus, I concern how can free goods storage location roll up from main item? Actually, the plant of free goods inherits from main item but not SLoc. So do you have any suggest for my concern? Thks a lot for your help! Regards, Nguyen Pham,

  • How to Automatically Backup Photos to Windows PC HDD from Photostream

    I have iCloud and Photo Stream up and running on my Windows 8 PC.  I want to save space on my iPhone and iPad SSDs and backup photos from my PhotoStream to my Windows PCs hard drive for archiving and then delete the photos from my camera roll on iPho

  • Not able to convert element of type xs:date to dateTime in XSLT 2.0

    Hi, I am trying to subtract 2 dates and get the month difference between the two using XSLT 2.0 This is what I have done <xsl:variable name="monthDiff"> <xsl:call-template name="monthDifference"> <xsl:with-param name="date1" select="/tns:StartDate"/>

  • How can i wrap text in Pages?

    Hello, I am having a hard time finding out exactly how I can "wrap" my text using Pages. I have the most recent version (updated 10/18). This is NOT an issue wrapping text around an object, just a matter of getting the text to wrap instead of hyphena

  • ABAP under  WEBDYNPRO for ABAP

    HI all, Can somebody tell me what ABAP exactly is required for WEBDYNPRO.I mean OO ABAP or module pool or....etc. Also i will be thankful if somebody tell me which one is more better between web dynpro for java and web dynpro for abap marketwise. Tha