Need to the domain name and computer name in offline mode

Hi,
I can not able to login to the windows system, the password i am using is correct. But im getting error "the login method using is incorrect, please contact network admin". I forgot the domain name i set to login to the system. Now Currently i
dont have the recovery/windows7 disks.  I have Unix in my machine as well. so i have mounted the windows7 parition in linux, and trying to find out the computer\domain name.  so please suggest which file i need to search to get the details.
Thanks,
Ravi

Hi Ravi,
If you want to know more information about domain name, please take a look at the following article.
http://technet.microsoft.com/en-us/library/cc731265(v=ws.10).aspx
Based on my research, the computer name and domain name are stored in the registry key.
We could find computer name in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName.
And we can find domain name in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Domain.
Have you ever  joined a domain?
If yes, please contact the network admin as mentioned.
And we can type Domain name\Username and then password to login.
If you haven’t, we could try to type Computer name\username(.\username) and then the password to login the computer.
Best regards,
Fangzhou CHEN
Fangzhou CHEN
TechNet Community Support

Similar Messages

  • Getting the user name and computer name

    I've been trying to find out how to do this, but can't seem to get it.
    I have an AIR application that needs to get the user's login name, and computer name for verification.  I can't find anywhere to do this.  Is AIR able to get this information? Is there work arounds if there isn't?
    It won't ever be a web app, just an AIR app.

    What I did in Air 2 to accomplish that is the following:
                   public function getHostName():void {
                        if(NativeProcess.isSupported) {
                             var OS:String = Capabilities.os.toLocaleLowerCase();
                             var file:File;
                             if (OS.indexOf('win') > -1) {
                                  //Executable in windows
                                  file = new File('C:\\Windows\\System32\\hostname.exe');
                             } else if (OS.indexOf('mac') > -1 ) {
                                  //Executable in mac
                             } else if (OS.indexOf('linux')) {
                                  //Executable in linux
                             var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
                             nativeProcessStartupInfo.executable = file;
                             var process:NativeProcess = new NativeProcess();
                                  process.addEventListener(NativeProcessExitEvent.EXIT, onExitError);
                                  process.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onOutput);
                                  process.start(nativeProcessStartupInfo);
                                  process.closeInput();
                   import utls.StringHelper;
                   public function onOutput(event:ProgressEvent):void {
                        var strHelper:StringHelper = new StringHelper();
                        var output:String = event.target.standardOutput.readUTFBytes(event.target.standardOutput.bytesAvailable);
                             output = strHelper.trimBack(output, "\n");
                             output = strHelper.trimBack(output, "\r");
                        trace('"'+output+'"');
    The package that I used is from the manual:
    package utls
         public class StringHelper
              public function StringHelper()
              public function replace(str:String, oldSubStr:String, newSubStr:String):String {
                   return str.split(oldSubStr).join(newSubStr);
              public function trim(str:String, char:String):String {
                   return trimBack(trimFront(str, char), char);
              public function trimFront(str:String, char:String):String {
                   char = stringToCharacter(char);
                   if (str.charAt(0) == char) {
                        str = trimFront(str.substring(1), char);
                   return str;
              public function trimBack(str:String, char:String):String {
                   char = stringToCharacter(char);
                   if (str.charAt(str.length - 1) == char) {
                        str = trimBack(str.substring(0, str.length - 1), char);
                   return str;
              public function stringToCharacter(str:String):String {
                   if (str.length == 1) {
                        return str;
                   return str.slice(0, 1);
    And sorry for the miss topic I just realized that it is on flex topic, but I post it either way it may be useful for anyone

  • Audit the IP adress and computer name

    Hello,
    I need to audit the IP adress and the computer name from where a user logged into Hyperion Planning.
    Is there any way to audit that?
    Or any log where i can see that?
    Thankyou!
    Nat

    What iP address is shown?  If it starts with 169 yo never connect to the router.
    Have you tried powering off and then back on your router?
    Does the iPod successfully connect to other networks?

  • Unattended Domain Join and Computer Name

    I used to use RIS and we utilized the Directory Services tab of the WDS server properties.  There we set a client naming policy using the variable MC%MAC
    I have finally been able to tweak my image unattend file to get the machine to join the domain in a particular OU.  However it ignores the settings I have in the Directory Services tab as far as the naming policy.  I tried to set the same variable
    in the computername section of my xml file but it will error out everytime.  If I set a plain static computername in the field it is fine.  Can I not use the MAC variable in that section?  Is there a way I can "tell" it to reference
    the naming policy we used in the Directory Services tab?  
    This is what I was trying:
    <component name="Microsoft-Windows-UnattendedJoin" 
    processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" 
    language="neutral" versionScope="nonSxS" 
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Identification>
                    <JoinDomain>mapcom.local</JoinDomain>
                    <MachineObjectOU>OU=Call Center Terminal, 
    OU=Workstations, DC=domain, DC=local</MachineObjectOU>
                    <Credentials>
                        <Domain>domain.local</Domain>
                        <Password>XXXXXXXX</Password>
                        <Username>ccinstall</Username>
                    </Credentials>
                </Identification>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" 
    processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" 
    language="neutral" versionScope="nonSxS" 
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComputerName>MC%MAC</ComputerName>
                <TimeZone>Eastern Standard Time</TimeZone>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="catalog:c:/documents and 
    settings/administrator.mapcom/desktop/win7wim64/install_windows 7 
    professional.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    OK, so I was able to get the machine to read the computer naming policy settings on the WDS server, but I had to set the unsecurejoin to true and set Computername to just * , and now the CN is being created properly but its not going to the proper OU!  Ah!!!
     I get one thing to work and then it breaks another!  Sooooo, is it possible to have an unsecure join going to an OU?
     <settings pass="specialize">
            <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Identification>
                    <JoinDomain>mapcom.local</JoinDomain>
                    <MachineObjectOU>OU=Call Center Terminal, OU=Workstations, DC=domain, DC=local</MachineObjectOU>
                    <Credentials>
                        <Domain>domain.local</Domain>
                        <Password>xxxxxx</Password>
                        <Username>ccinstall</Username>
                    </Credentials>
                    <UnsecureJoin>true</UnsecureJoin>
                </Identification>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComputerName>*</ComputerName>
                <TimeZone>Eastern Standard Time</TimeZone>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="catalog:c:/documents and settings/administrator.mapcom/desktop/win7wim64/install_windows 7 professional.cl

  • Why does the local network and computer name keep changing?

    After upgrading to Yosemit the local network name and computername on my iMAC keep changes link:
    Mycomputer-1
    Mycomputer-2
    Mycomputer-3
    Why?
    I have tried to change it back in sharing and network locations.
    Is this also the reason the my iPhone cannot find my iPhone often cannot find my iMac when I will sync it? Then I have to restart the iPhone and iTunes on the computer. This happens very very often.
    Maybe it also linked to these errors which the log is full of - many every minute:
    19/10/14 12.11.09,522 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:256
    19/10/14 12.11.09,543 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:12856
    19/10/14 12.11.09,561 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:0
    19/10/14 12.11.09,565 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:44032
    I think the is some bug/clash between bonjour and other network protocols. That is only a guess.

    After resetting the computer name and local host name to the correct name without the number I also shotdown my iMac, my AppleTV, my iPhone, my iPad and then rebooted my Airport/Time capsule it seemed to work at least for several days. But yesterday I discovered that my Apple TV now also has changed name to Apple TV (2).
    I logged into iCloud.com to see my devices and here it was really wired. My Apple TV was called Apple TV (2) and my iMac also had (2) after the name. Then I checked it on the iMac but here it was correct! Why can it have one name on the iCloud and another on the computer.
    I restarted both the iMac, Apple TV and Airport Time capsule then everything was correct also on iCloud.com.
    But today the iMac was called the name (2) again on the iMac. And now the local host name also had -2 after the name. It has not always been both names that has changed. That is really wired. And today Wifi was not working on the iMac after wake from sleep. I changed the name back and rebooted again also the Airport Time capsule. Now it is working again.
    The log is still full of this messages:
    02/11/14 19.22.13,186 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:1901
    02/11/14 19.22.25,738 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:34051
    02/11/14 19.22.25,758 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:12342
    02/11/14 19.22.25,900 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:34051
    02/11/14 19.22.25,919 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:1901
    02/11/14 19.22.27,636 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:28772
    02/11/14 19.22.27,683 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:27693
    02/11/14 19.22.27,714 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:28533
    02/11/14 19.22.49,833 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:29281
    02/11/14 19.22.49,866 discoveryd[53]: Basic DNSResolver  dropping message because it doesn't match the one sent Port:0 MsgID:28528
    The name is not the only problem. Often itunes will not find my iPhone and iPad. Then i need to close iTunes and restart the iPhone and iPad then it works for some time.
    And the iPhone and AppleTV will not always wake the iMac from sleep. I am wondering if the is linked to the changing of name.
    I have seen by googling that it can be related to a sleep proxy problem so it seems like that here is two devices on the net with the same name that is why name is changing, but to know this do not help me to solve the problem. I have also seen all the suggestion to turn almost every services off on the computer, but again I it is not a solution and I have the iMac and devises to use the functionality not to shot everything down. So I do not really understand people saying turn off itunes, turn off blueboth, and turn off this and that.
    Apple must soon come with a real solution. We are really many people have these problem since we upgraded to Yosemite and iOS 8.
    I have also listed some of the iTunes errors from the log below:
    02/11/14 19.24.48,160 com.apple.xpc.launchd[1]: (com.apple.quicklook[1364]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    02/11/14 19.24.52,279 Console[1368]: Failed to connect (_consoleX) outlet from (NSApplication) to (ConsoleX): missing setter or instance variable
    02/11/14 19.25.06,907 iTunes[480]: Entered:_AMMuxedDeviceDisconnected, mux-device:5
    02/11/14 19.25.06,908 iTunes[480]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:5
    02/11/14 19.25.06,908 iTunes[480]: tid:17d8b - Mux ID not found in mapping dictionary
    02/11/14 19.25.06,908 iTunes[480]: tid:17d8b - Can't handle disconnect with invalid ecid
    02/11/14 19.30.19,234 com.apple.usbmuxd[56]: _SendAttachNotification Device 30:f7:c5:30:b8:2b@fe80::32f7:c5ff:fe30:b82b._apple-mobdev2._tcp.local. has already appeared on interface 5. Suppressing duplicate attach notification.
    02/11/14 19.30.22,192 soagent[429]: Can't allocate SOHelper <SOMessageHelper: 0x7f9053a102c0> inside com.apple.soagent
    02/11/14 19.30.54,871 iTunes[480]: Entered:_AMMuxedDeviceDisconnected, mux-device:6
    02/11/14 19.30.54,871 iTunes[480]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:6
    02/11/14 19.30.54,871 iTunes[480]: tid:1a23b - Mux ID not found in mapping dictionary
    02/11/14 19.30.54,871 iTunes[480]: tid:1a23b - Can't handle disconnect with invalid ecid
    02/11/14 19.32.06,137 com.apple.usbmuxd[56]: _SendAttachNotification Device 30:f7:c5:30:b8:2b@fe80::32f7:c5ff:fe30:b82b._apple-mobdev2._tcp.local. has already appeared on interface 5. Suppressing duplicate attach notification.

  • MDT 2012 Windows 7 Deployment Stops At User Account and Computer Name Setup Page

    I was given a sysprepped custom Windows 7 WIM image that was set up by a third party that didn't use MDT to create the WIM.
    I created a task sequence to deploy it, but it never finishes.  After the OS installs and it reboots, it comes up to the white setup page asking for a user name and computer name that looks like this image:
    Is there a setting in MDT that can change that behavior?

    Are you joining the computer to a domain?
    It sounds like MDT did not create the unattend.xml file itself (or is there an unattend file already in the image itself?)
    MDT needs to be able to autologin with the local admin account
    From MDT in your task sequence - OS info - Edit unattend.xml you can check if your unattended file is correct.
    Check what's in there for:
    - computer name in 4 Specialize area - Windows-Shell-Setup_neutral (it should be empty  if you want MDT to handle it).
    - Also i think you need to have in the Specialize section, under Microsoft-Windows-Deployment_neutral - Run Synchronous an EnableAdmin insert
    This will enable the local admin account
    - Also check in phase 7 oobe System in Shell-Setup_neutral
    There should be an autologon with a count of 999
    Check if you have any Local Accounts there.
    Finally read this:
    When I am joining clients to a domain, can I avoid creating a local user
    account on the computer?
    Yes. To do this, create an image unattend file that adds a domain account to the Administrators group. In addition, you must delete the <LocalAccounts> section if it is present in your
    unattend file (simply commenting it out will not work). An example file is below. Note that if domain join fails, Windows Deployment Services will not use the unattend file so you will be able to create a local account. For more information about creating
    unattend files, see Automating Setup.
    <?xml version='1.0' encoding='utf-8'?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:ms="urn:schemas-microsoft-com:asm.v3" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
    <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" processorArchitecture="amd64">
    <UserAccounts>
    <AdministratorPassword>
    <Value>password</Value>
    <PlainText>true</PlainText>
    </AdministratorPassword>
    <DomainAccounts>
    <DomainAccountList wcm:action="add">
    <DomainAccount wcm:action="add">
    <Group>Administrators</Group>
    <Name>DomainAdmin</Name>
    </DomainAccount>
    <Domain>DomainName</Domain>
    </DomainAccountList>
    </DomainAccounts>
    </UserAccounts>
    </component>
    </settings>
    </unattend>
    I tried opening the unattend.xml from the MDT workbench, but it errors out saying it cannot be done because the captured image is x86.

  • Error connecting, tap to retry, it sees my WiFi and computer name but can't connect

    Hi all, I am trying to get Edge Inspect to work on my Windows 7 PC (it did work for me a few times when I had it installed as Shadow when it initally came out)
    I have read through various forum posts. I am also running Mcafee Virusscan/Firewall. 
    In Google Chrome I have the extension installed at the little "In" symbol top right, when I click it it says Adobe Edge Inspect "On", please start the Adobe Edge Inspect Application.
    I open up the lastest version of Edge Inspect (v1.0.393) on either my iPhone or iPad, it shows the name of my WiFi router and shows the name of the computer that is running Google Chrome, it looks like it is searching for a connection (shows spinner) and then it says "Error connecting, tap to retry".
    I have opened up port 7682 in my Mcafee Firewall
    I have shutdown all open programs
    I have tried manually entering in the computer IP address via manual connect
    I have updated chrome extension and ios apps to latest version
    I have tried reinstalling chrome extension
    I have tried at Windows Command prompt "netstat -ano" it doesnt show port 7682 being used, until I open up Google Chrome, then it shows MYCOMPUTER:7682 SYN_SENT, which I checked the PID against and yes it is Google Chrome using 7682
    Any help would be great

    Hi again Mark, still no luck here.
    I also have a Mac in my network so I thought I'd try installing to that to see what would happen, I just installed Adobe Edge Inspect extension onto Google Chrome on that machine and restarted the iOS apps on both iPad and iPhone and they actually didnt see the Mac machine at all, still just shows the PC computer.
    Also did I mention on my iPad I can still see the last time the connection actually worked (when it was called Adobe shadow, on my iPad underneath MYCOMPUTERNAME Error Connecting, tap to retry it has MYCOMPUTERNAME Last Used 24/07/12 8:59PM). Wouldnt have anything to do with a conflict with the old Adobe Shadow or anything would it, I'm pretty sure Adobe Shadow got uninstalled by default anyway, just a thought.
    So I'm not sure if it can be a problem with the Router because nothing has changed with the router since the last time it successfully worked when it was Shadow? I did add the Mac machine to the network since this time, but that machine hasnt been on when I have been doing any of this testing anyway.
    Also in the Edge Inspect in the Chrome browser I do not see any deviced listed, but back on the iOS App I do see the Wifi network and Computer name as discussed, so does this mean its an inbound connection issue or?
    Also sent you router settings via private message etc.

  • Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verif

    Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verifying and repairing it but had no luck. I also tried mounting and unmounting it but still no solution. Anyone to help please?

    Looks bad. I would strongly advise backing up the stuff on the other two partitions as soon as possible in case the rest of the drive goes wrong.
    Beyond that, Disk Utility has limited abilities to repair disks, DiskWarrior uses a different approach and might, emphasis might be more successful. It has certainly done the job for me in the past when Disk Utility could not.
    See http://www.alsoft.com/diskwarrior/

  • What's the difference between "Full Name" and "Account Name"

    Just re-install a new OS X Lion. On the "Create Your Computer Account" screen, what's the difference between "Full Name" and "Account Name"?

    Your computer name by default would be "John David Appleseed's Macbook Pro"
    But you can always change that in System Preferences->Sharing
    And yes, the first account you set up will be an administrator.

  • How to get the column name and table name with value

    Hi All
    I have one difficult requirement
    I have some column values and they have given some alias column names but i need to find the correct column name and table name from the database.
    For example value is "SRI" and i dont know the table and exact column name so is there any possibilities to find the column name and table name for the given value
    Thanks & Regards
    Srikkanth.M

    Searching all the database for a word...
    Courtesy of michaels...
    michaels>  var val varchar2(5)
    michaels>  exec :val := 'as'
    PL/SQL procedure successfully completed.
    michaels>  select distinct substr (:val, 1, 11) "Searchword",
                    substr (table_name, 1, 14) "Table",
                    substr (t.column_value.getstringval (), 1, 50) "Column/Value"
               from cols,
                    table
                       (xmlsequence
                           (dbms_xmlgen.getxmltype ('select ' || column_name
                                                    || ' from ' || table_name
                                                    || ' where upper('
                                                    || column_name
                                                    || ') like upper(''%' || :val
                                                    || '%'')'
                                                   ).extract ('ROWSET/ROW/*')
                       ) t
    --        where table_name in ('EMPLOYEES', 'JOB_HISTORY', 'DEPARTMENTS')
           order by "Table"or
    11g upwards
    SQL> select table_name,
           column_name,
           :search_string search_string,
           result
      from (select column_name,
                   table_name,
                   'ora:view("' || table_name || '")/ROW/' || column_name || '[ora:contains(text(),"%' || :search_string || '%") > 0]' str
              from cols
             where table_name in ('EMP', 'DEPT')),
           xmltable (str columns result varchar2(10) path '.')
    TABLE_NAME                     COLUMN_NAME                    SEARCH_STRING                    RESULT   
    DEPT                           DNAME                          es                               RESEARCH 
    EMP                            ENAME                          es                               JAMES    
    EMP                            JOB                            es                               SALESMAN 
    EMP                            JOB                            es                               SALESMAN 
    4 rows selected.

  • STAD - get the 'transaction code' and 'program name'

    Hi, I was wondering if someone knows about a bapi with which I can get only the "transaction code" and "program name".
    I need to get those for a specified user, but I don't want to set on a trace, that's why I'd like to use the transaction STAD.
    If anyone can help, thanks in advance
    Grtz,
    Dragovian

    ok, so I go like this
    TYPE-POOLS sapwl .
    DATA:  all_stats        TYPE sapwl_allstats.
      CALL FUNCTION 'SAPWL_READ_STATISTIC_FILES'
       EXPORTING
         read_client                 = '*'
         read_time                   = '200000'
         read_start_date             = sy-datum
         read_start_time             = '000000'
         read_username               = sy-uname
         read_workprocess            = 'FFFF'
         wait_factor                 = 150
        CHANGING
          all_stats                   = all_stats
    how'd I get "start-time" "report-name" "date" "username"?

  • How to get the class name and field name dynamically

    Hi
    I have a class (ex: Contract) the fields (ex : a,b,c) .i need to get the class name and field name dynamically
    ex
    if( validation file for the field Contract.a){
    return contract.a;
    }else if(validation file for the field Contract.b){
    return contract.b;
    how to pass the field name and object dynamically
    Please help me .............
    Thanks in Advance..
    Edited by: 849614 on Aug 11, 2011 6:49 AM

    YoungWinston wrote:
    maheshguruswamy wrote:
    Agreed, but IMO, i still feel its best if there is no tie in between consumer class level details and the database it talks to. A service layer is needed in between them.Sounds like you've done a bit of this before. Me, I've either been a modeller/DBA, doling out data, or a nuts and bolts programmer (and actually more toolmaker than apps, but did a bit of that too).
    Do you know of a good book about the "middle ground" (ie, these service layers)? I understand it empirically, but haven't had a lot of exposure to it.
    Winston
    Edited by: YoungWinston on Aug 11, 2011 10:34 PM
    PS: Apologies. Edited my previous post, presumably while you were composing your reply, when I finally realized what '.filed' meant.Most of my work is in web development, never been a DBA :) . The biggest 'concern' in my shop is 'separation of concerns'. The UI group reports up to a different IT head, the DB group reports up to a different IT head and so on. The looser the coupling between these systems, the lesser the project costs (Integration, QA etc) are. Martin Fowler's books contain good information about separation of concerns in an enterprise environment. The two books which i recommend are
    [url http://www.amazon.com/Patterns-Enterprise-Application-Architecture-Martin/dp/0321127420]Enterprise Application Architecture and
    [url http://www.amazon.com/Enterprise-Integration-Patterns-Designing-Deploying/dp/0321200683/ref=pd_sim_b_1]Enterprise Integration Patterns

  • How to get the xml element and comment name in a page?

    I need to list all element and comment name in a page

    Hi,
    do
      //K2Vector<XMLReference> allXMLRefs;
                        std::vector<XMLReference> allXMLRefs;
      IActiveContext* context = GetExecutionContextSession()->GetActiveContext();
                        UIDRef documentUIDRef = ::GetUIDRef(context->GetContextDocument());
                        XMLReference rootXMLRef = GetRootXMLReference(documentUIDRef);
                        GetFlattenedElementList(documentUIDRef,allXMLRefs);
                        std::ostringstream os;
                        for(std::vector<XMLReference>::iterator it = allXMLRefs.begin(); it != allXMLRefs.end(); ++it)
                                  XMLReference nextref = *it;
                                  PMString tag_name;
                                  os.str("");
                                  os <<  AsString(nextref,tag_name).GetPlatformString().c_str();
      CAlert::WarningAlert(os.str().c_str());
              }while(kFalse);
    I use above code to get tag name.
    Any one help me to get the comment tag in XML

  • Table name  and  field name needed for delivery note

    Hi  Experts
    I need to extract the following fields for Delivery.
    company code
    Sales organization
    plant code
    shipping point
    DDL No (VBELN)
    Sales order
    Customer PO
    Customer request date
    planned GI date
    sold to code
    ship to code
    ship to name1
    ship to name 2
    ship to address1
    ship to address2
    ship to address3
    DDL Line item(posnr)
    matnr
    DDL Doc. date
    DDL Doc. Created by
    anybody knows the field name and table name for above fileds pls help me.

    Hi,
    It is possible to get the data ship-to adress of delivery.
    step1:
             Go to LIKP table which is header data.Select the record from DB for delivery you want into one field string.
    step2:
           Get the customer number of the ship-to party (in field KUNNR IN LIKP Table) into one variable.
    step3:
           Using that customer number you can get the address of ship-to party of particular delivery in KNA1 table.
      Here is some peice of code.
      TABLES: kna1 , likp.
    PARAMETERS: p_del TYPE likp-vbeln.
    DATA:
         w_ship_to_num TYPE likp-kunnr.
    SELECT SINGLE * FROM likp
    WHERE vbeln EQ p_del.
    w_ship_to_num = likp-kunnr.
    SELECT SINGLE * FROM kna1 WHERE kunnr EQ w_ship_to_num.
    WRITE : 'Name :' ,  kna1-name1,
              'City   :'  , kna1-ort01,
              'State :'   ,kna1-regio.

  • HT201401 HI ive forgotten my apple id and password, and also the name and last name i used to set up my iphone 4s what do i do?

    my iphone 4s wont turn back on after the battery died, have tried all the steps, still not working. contacted my network provider they said to send it in but before that turn off find my iphone. I am unable to do so as ive forgotten my apple id and password, i have followed the steps and im stuck as i do not know what name and last name i put when registering with icloud as i didnt want to give out such information at the time,(as in i made up the name n last name).
    Can anyone help me???

    That my friend is why you don 't make up a lie; you get yourself stuck in this kind of circle.
    First; how do you forget the apple id and password, that apple id is most likely an > EMAIL < address that you /PERSONALLY/ put into the device to sign up for the service. Once you remember your own email; you need to go to https://iforgot.apple.com/password/verify/appleid for further assistance on resetting your password
    You don't need the first and last name; it just makes it a lot harder to locate your account if you REALLY can't remember
    If you cannot find any infomation then you sir are SOL;

Maybe you are looking for

  • Can i create a playlist of tv shows on my iPad?

    I have purchased an iPad holder that fits to my headrest so that my little girl can watch programmes whilst I am driving. I have downloaded a number of short programmes and would like to put them into a continuous playlist so that I do not have to st

  • Portal Repository

    Hello All. What is the Portal Repository? Do I need a new database to store it or can I put in already exist database.

  • Illegal Region Number

    After months of trouble free running, I'm getting "Illegal Region Number" error messages popping up with no clue as to which region or any other information. Usually (but not always) it happens when I've hit stop after recording an audio track. It do

  • EXPORT 시 DATE FUNCTION 을 FILE NAME 으로 이용하기

    제품 : ORACLE SERVER 작성날짜 : 2002-04-08 EXPORT 시 DATE FUNCTION 을 FILE NAME 으로 이용하기 ================================================= PURPOSE 다음은 export시에 date function을 file name으로 이용하는 방법을 설명한다. Explanation 1)DATE 를 넣어서 shell program 으로 exp 를 하는 방안은 다음

  • Hallo ich habe ein Problem mit meinem iPhone 4 und zwar mein Vibrationsalarm funktioniert nicht mehr

    Hallo habe Probleme mit der Vibration mit meinem IPhone 4