How to make niconfig.daq active?

I have a system using Win 95, Run Time Engine 5.1.1, Ni-Daq 6.1, and an executable application which worked previously until the customer uninstalled everything.  Everything has been re-installed and all error messages eliminated.  No particular order was used to re-install all the above software.  Niconfig.daq was configured after all the above was intalled at C:\Windows\niconfig.daq, for two AT-MIO-16E-2 boards.  Both the Configuration Utility and DAQ Channel Wizard where used to assign and configure the AO, AI's, and DIO's.  Save at the bottom of the Channel Wizard was clicked and all windows closed.  When the Configuration Utility is clicked on later and from the pull down "Run Channel Wizard" of the Configuration Utility the niconfig.daq as set up is still present.  When the application .exe is clicked, the main control panel of the application appears.  According to the operating procedures provided with the application the first thing to do is click the top button which is "Check Out".  This runs a pre-operational test of the application.  The pre-operational test/check out occurs and a number of items not associated with the MIO boards operate correctly, BUT one of the DIO's, an input, informs me the Amplifier has a switch in the Inhibit position.  It is not in the inhibit position, OK is clicked on this message, the checkout continues and we are informed a second time the switch is in the Inhibit position.  Finally, the Check Out completes informing us the test has failed.  None of these messages is a LabView error message, just part of the applications checkout.  I have inverted the DIO signal with the Channel Wizard, no change, it still does not recognize that the switch is in the enable position.  I have used both the Configuration Utility's "Test Panels" and the Channel Wizard's "Test" to check the AO, AI's, and DIO's all of which operate properly using both "Test Panel" and "Test".  I am assuming that the C:\Windows\niconfig.daq is somehow not being seen by the application.  How can I make the application see the niconfig.daq?  I have a great deal more information about what files and folders are present in C:Windows, C:\Program Files\National Instruments\Shared\Labview Run-Time\5.1, C:\Ni-Daq\Chanwiz, and finally the application itself C:\WQM8\bin (in which all of the files are clearly of National Instruments in origin).      

Yes, it is a built executable.  No, I don't have access to the source VI's.  I have a copy of Labview Development Suite 7.1, which may not really be helpful.  The executable worked for years until the customer played with it, and the customer has no tools to open the executable with, what they did was just play with the whole thing.  I am thinking that, yes, the config was in some file within the executable, which somehow got corrupted.  Or more likely the config was in a separate file external to the executable using a pathname that was called from within the executable.  Is this possible?  In other words, no matter which it is, we have to find someway to can opener the executable to either repair a corrupted config inside it, or discover the assigned pathname of the config?  If there is a way to open a built executable with Labview, I would certainly be willing to try it.
The app directory (C:\WQM8\bin) contains the following files:
1.  analyses autostart.exe (works)
2. autostart.exe (works)
3. autostart.ini (oddly empty, but not our problem child)
4. autostart_wqm8.exe (works)
5. daqdrv
6. iw_en.lrm
7. Lvdevice.dll
8. serpdrv
9. wqm8.exe (The Problem, the app executable)
10. wqm8.ini (contains: PostscriptLevel2=False, thats all there is in the .ini of our problem child)
11. wqm8_analysis.exe (works)
Could there have been a config.daq or some other config file in this directory that the app called and all we are missing is the pathname the wqm8.exe is looking for?  Or would the config have been internal to the .exe?  Is there any point in putting Labview 7.1 on here with Win 95 and trying to use the daqchutil.dll to force the config.daq on the app/executable?  Remember, this all worked for years, with basically what we've got here.  The things listed above which do work are useless without the wqm8.exe working.   

Similar Messages

  • How to make selected and active a child row of a treeTable?

    Hello,
    I am inserting a new child row into a af:treeTable, disclosing it, but I can't figure out how to make it selected and active so the focus of the user to go on it.
    Jdeveloper version 11.1.2.3.0
    This is how I am inserting the child node:
    public void createLocation(RowIterator ri, Key selectedNodeKey) {
            final String locationCategoryViewDef = "model.views.LocationCategoryView";
            if (ri != null && selectedNodeKey != null) {
                Row[] found = ri.findByKey(selectedNodeKey, 1);
                if (found != null && found.length == 1) {
                    Row foundRow = found[0];
                    String nodeDefname = foundRow.getStructureDef().getDefFullName();
                    RowSet parents = (RowSet)foundRow.getAttribute("LocationView");
                    Row childrow = parents.createRow();
                    //hardcoded locationId
                    childrow.setAttribute("LocationId", 434558);
                    parents.insertRow(childrow);
    }  And this is the treeTable:
    <af:treeTable value="#{bindings.LocationCategoryView2.treeModel}" var="node" varStatus="vaarr"
                  partialTriggers="gaga gag4a ga4a"
                  selectionListener="#{bindings.LocationCategoryView2.treeModel.makeCurrent}"
                  displayRow="selected" rowSelection="single" id="tt1" editingMode="clickToEdit"
                  horizontalGridVisible="true" binding="#{pageFlowScope.treeTableBean.sampleTreeTable}">
        <f:facet name="nodeStamp">
            <af:column id="c5" width="15">
                <af:outputText value="#{node}" inlineStyle="display:none" id="ot1"/>
            </af:column>
        </f:facet>
        <f:facet name="pathStamp">
            <af:inputText value="#{node}" id="ot2"/>
        </f:facet>
        <af:column id="c2" headerText="Location CategoryName">
            <af:inputText value="#{node.LocationCategoryName}" inlineStyle="font-weight:900" id="ot45"/>
        </af:column>
        <af:column id="c6" headerText="Location CATID">
            <af:inputText value="#{node.LocationCategoryId}" inlineStyle="font-weight:900" id="ot6"/>
        </af:column>
        <af:column id="cgg2" headerText="Var INDEx">
            <af:outputText value="#{vaarr.index}"/>
        </af:column>
        <af:column id="c1" headerText="Location Name">
            <af:inputText value="#{node.LocationName}" id="ot3"/>
        </af:column>
        <af:column>
            <af:panelGroupLayout layout="vertical">
                <af:commandLink id="gaga" text="addLocation" inlineStyle="color:red"
                                action="#{pageFlowScope.treeTableBean.createChildren}"
                                rendered="#{node.LocationId == null}" partialSubmit="true"/>
                <af:commandLink id="gag4a" text="delete category" inlineStyle="color:blue"
                                partialSubmit="true" rendered="#{node.LocationId == null}"
                                action="#{pageFlowScope.treeTableBean.deleteChildRow}"/>
                <af:commandLink id="ga4a" text="delete location" inlineStyle="color:green"
                                partialSubmit="true" rendered="#{node.LocationId != null}"
                                action="#{pageFlowScope.treeTableBean.deleteChildRow}"/>
            </af:panelGroupLayout>
        </af:column>
    </af:treeTable>

    Yes I did now but nothing changes. The current, selected and active row is still the parent node...
    Even I am adding AdfFacesContext.getCurrentInstance().addPartialTarget(this.sampleTreeTable); for just in case..

  • How to make all rules active in Mail

    Every time I sync my MacBook with my IMac through Mobile Me, the rule sync OK but it deactivate my rules. I have to click on every single one again to make them active. Is there a faster way to make all the rules active at once. TIA.

    Make them active then re-sync. You are obviously updating from the old saved information not the new. If that doesn't work, then remove your computer from the authorized sync list and start fresh. You can then copy all your information FROM the computer to MobileMe.

  • How to make second tabstrip active for standard tcode VA03

    Hi,
    I have called the Tcode VA03 using CALL TRANSCATION 'VA03'.
    By default "Sales" Tab is active but i want the "Item Overview" Tab to be active.
    I dont want to use BDC method.
    Could you please suggest me how to do it.
    Thanks in advance.

    Hi,
    We have got the access key. We able to create the enhancement spot, but it is not allowing to write the code.
    Is any Enhancement name is available, if so please provide.
    Thanks.

  • How to make the CRM activity and task display in Portal UWL task iview ?

    Hello experts,
    I want that activity ,task and document in CRM inbox(t-code:sbwp) can be display in UWL task iview, and can pop-up to deal with when be clicked .
    The workflow type item in ERP can be display and open to deal with by default.
    But I need to the same function of CRM inbox content.
    I had done some configuration according to "Configuring the Business
    Package for SAP CRM 5.0 SP01.pdf".
    But it can't realized my requirement.
    How to do it ?
    BR,
    Jianguo Chen

    Go to View .. Bars... and enable the bar for Level of Effort activities. If it's not there, create one.

  • How to make clone of active directory security group

    Hi
    i am having one Security group in AD, i want to make copy or clone of that group with same members in different name in AD.
    Anybody help me out...

    Hi Vino1985,
    Just do it with ds-tools.
    dsquery group -samid %SamidOfYourReferenceGroup% | dsget group -members |  dsmod group %distinguishedNameOfYourNewGroup% -addmbr -c
    This should work as
    "dsquery group -samid " will return the distinguished name of your reference group and pipe it to dsget group
    "dsget group -members" will return all distinguished-names of the members and pipe it to dsmod group
    "dsmod group -addmbr" will all DN's to the membership-attribute of the new group the switch "-c" will continue on errors.
    best regards
    Switch
    MCITP Enterprise Administrator
    MCSA Windows Server 2012
    MCTS Windows 7 Configuration
    Disclaimer: This posting is provided "AS IS" with no warranties, and confers no rights.

  • How to make windows 7 genuine if it is activated but is not genuine?

    Hi friends
    I have an problem with my windows 7.2 months ago I have installed and activated my windows 7
    and it was genuine. But after a month it shows the message on startup like
    This copy of windows is not genuine
    But when I saw the prorerties of Computer it says that windows 7 is activated
    but when I want to check for updates it shows the message as
    You may be a victim of software counterfeiting
    and I can't install updates .
    Diagnostic Report (1.9.0027.0):
    Windows Validation Data-->
    Validation Code: 50
    Cached Online Validation Code: N/A, hr = 0xc004f012
    Windows Product Key: *****-*****-V6MGY-G834Y-Y8QH3
    Windows Product Key Hash: rtNFKFPViUJdHAbLucXCF+SK1pA=
    Windows Product ID: 00426-321-7001157-70908
    Windows Product ID Type: 5
    Windows License Type: Retail
    Windows OS version: 6.1.7600.2.00010100.0.0.001
    ID: {38BB1AD8-47A0-475E-AE2A-F177287F8BDD}(1)
    Is Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/A, hr = 0x80070002
    Signed By: N/A, hr = 0x80070002
    Product Name: Windows 7 Ultimate
    Architecture: 0x00000000
    Build lab: 7600.win7_gdr.100618-1621
    TTS Error:
    Validation Diagnostic:
    Resolution Status: N/A
    Vista WgaER Data-->
    ThreatID(s): N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    Windows XP Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    File Exists: No
    Version: N/A, hr = 0x80070002
    WgaTray.exe Signed By: N/A, hr = 0x80070002
    WgaLogon.dll Signed By: N/A, hr = 0x80070002
    OGA Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    OGAExec.exe Signed By: N/A, hr = 0x80070002
    OGAAddin.dll Signed By: N/A, hr = 0x80070002
    OGA Data-->
    Office Status: 109 N/A
    OGA Version: N/A, 0x80070002
    Signed By: N/A, hr = 0x80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3
    Browser Data-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default Browser: C:\Program Files\Google\Chrome\Application\chrome.exe
    Download signed ActiveX controls: Prompt
    Download unsigned ActiveX controls: Disabled
    Run ActiveX controls and plug-ins: Allowed
    Initialize and script ActiveX controls not marked as safe: Disabled
    Allow scripting of Internet Explorer Webbrowser control: Disabled
    Active scripting: Allowed
    Script ActiveX controls marked as safe for scripting: Allowed
    File Scan Data-->
    File Mismatch: C:\Windows\system32\systemcpl.dll[6.1.7600.16385], Hr = 0x800b0100
    File Mismatch: C:\Windows\system32\user32.dll[6.1.7600.16385], Hr = 0x800b0100
    Other data-->
    Office Details: <GenuineResults><MachineData><UGUID>{38BB1AD8-47A0-475E-AE2A-F177287F8BDD}</UGUID><Version>1.9.0027.0</Version><OS>6.1.7600.2.00010100.0.0.001</OS><Architecture>x32</Architecture><PKey>*****-*****-*****-*****-Y8QH3</PKey><PID>00426-321-7001157-70908</PID><PIDType>5</PIDType><SID>S-1-5-21-2632616291-3724185990-1548790092</SID><SYSTEM><Manufacturer>System
    manufacturer</Manufacturer><Model>System Product Name</Model></SYSTEM><BIOS><Manufacturer>American Megatrends Inc.</Manufacturer><Version>0205   </Version><SMBIOSVersion major="2" minor="4"/><Date>20070720000000.000000+000</Date></BIOS><HWID>83B83607018400EC</HWID><UserLCID>0409</UserLCID><SystemLCID>0409</SystemLCID><TimeZone>India
    Standard Time(GMT+05:30)</TimeZone><iJoin>0</iJoin><SBID><stat>3</stat><msppid></msppid><name></name><model></model></SBID><OEM><OEMID>DELL  </OEMID><OEMTableID>WN09  
    </OEMTableID></OEM><GANotification/></MachineData><Software><Office><Result>109</Result><Products/><Applications/></Office></Software></GenuineResults> 
    Spsys.log Content: 0x80070002
    Licensing Data-->
    C:\Windows\system32\slmgr.vbs(1124, 5) (null): 0xC004F012
    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004F015
    HealthStatus: 0x0000000000000000
    Event Time Stamp: 12:19:2010 11:47
    ActiveX: Registered, Version: 7.1.7600.16395
    Admin Service: Registered, Version: 7.1.7600.16395
    HealthStatus Bitmask Output:
    HWID Data-->
    HWID Hash Current: MAAAAAEABAABAAEAAAABAAAAAQABAAEAnJ9o7YTYWv+qdkjkmJME7eD5XvEwoew7
    OEM Activation 1.0 Data-->
    N/A
    OEM Activation 2.0 Data-->
    BIOS valid for OA 2.0: yes
    Windows marker version: 0x20001
    OEMID and OEMTableID Consistent: yes
    BIOS Information:
      ACPI Table Name OEMID Value OEMTableID Value
      APIC   A_M_I_  OEMAPIC
      FACP   A_M_I_  OEMFACP
      HPET   A_M_I_  OEMHPET
      MCFG   A_M_I_  OEMMCFG
      SLIC   DELL    WN09  
      OEMB   A_M_I_  AMI_OEM
    Please send me some solutions for this problem:
    How to make windows 7 genuine if it is activated but is not genuine?
    Please send me solutions at
    [email protected]
    Thanks
    Dakshak

    Diagnostic Report (1.9.0027.0):
    Windows Validation Data-->
    Validation Code: 50
    Cached Online Validation Code: 0xc004c4a2
    Windows Product Key: *****-*****-GJY49-VJBQ7-HYRR2
    Windows Product Key Hash: W5/6nm6F2UPXrCkY5xUhXb/+21g=
    Windows Product ID: 00426-OEM-8992662-00006
    Windows Product ID Type: 2
    Windows License Type: OEM SLP
    Windows OS version: 6.1.7601.2.00010100.1.0.001
    ID: {0CCF5533-C044-4067-9F28-CF5C833D5D28}(3)
    Is Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/A, hr = 0x80070002
    Signed By: N/A, hr = 0x80070002
    Product Name: Windows 7 Ultimate
    Architecture: 0x00000009
    Build lab: 7601.win7sp1_gdr.110622-1506
    TTS Error: 
    Validation Diagnostic: 
    Resolution Status: N/A
    Vista WgaER Data-->
    ThreatID(s): N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    Windows XP Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    File Exists: No
    Version: N/A, hr = 0x80070002
    WgaTray.exe Signed By: N/A, hr = 0x80070002
    WgaLogon.dll Signed By: N/A, hr = 0x80070002
    OGA Notifications Data-->
    Cached Result: N/A, hr = 0x80070002
    Version: N/A, hr = 0x80070002
    OGAExec.exe Signed By: N/A, hr = 0x80070002
    OGAAddin.dll Signed By: N/A, hr = 0x80070002
    OGA Data-->
    Office Status: 103 Blocked VLK
    Microsoft Office Enterprise 2007 - 103 Blocked VLK
    OGA Version: N/A, 0x80070002
    Signed By: N/A, hr = 0x80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3
    Browser Data-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default Browser: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
    Download signed ActiveX controls: Prompt
    Download unsigned ActiveX controls: Disabled
    Run ActiveX controls and plug-ins: Allowed
    Initialize and script ActiveX controls not marked as safe: Disabled
    Allow scripting of Internet Explorer Webbrowser control: Disabled
    Active scripting: Allowed
    Script ActiveX controls marked as safe for scripting: Allowed
    File Scan Data-->
    File Mismatch: C:\Windows\system32\wat\watadminsvc.exe[Hr = 0x80070003]
    File Mismatch: C:\Windows\system32\wat\npwatweb.dll[Hr = 0x80070003]
    File Mismatch: C:\Windows\system32\wat\watux.exe[Hr = 0x80070003]
    File Mismatch: C:\Windows\system32\wat\watweb.dll[Hr = 0x80070003]
    Other data-->
    Office Details: <GenuineResults><MachineData><UGUID>{0CCF5533-C044-4067-9F28-CF5C833D5D28}</UGUID><Version>1.9.0027.0</Version><OS>6.1.7601.2.00010100.1.0.001</OS><Architecture>x64</Architecture><PKey>*****-*****-*****-*****-HYRR2</PKey><PID>00426-OEM-8992662-00006</PID><PIDType>2</PIDType><SID>S-1-5-21-2399280593-193699623-3160228986</SID><SYSTEM><Manufacturer>TOSHIBA</Manufacturer><Model>Satellite
    L750-X5317</Model></SYSTEM><BIOS><Manufacturer>INSYDE</Manufacturer><Version>2.20</Version><SMBIOSVersion major="2" minor="7"/><Date>20110713000000.000000+000</Date></BIOS><HWID>CC523707018400FE</HWID><UserLCID>0409</UserLCID><SystemLCID>0409</SystemLCID><TimeZone>India
    Standard Time(GMT+05:30)</TimeZone><iJoin>0</iJoin><SBID><stat>3</stat><msppid></msppid><name></name><model></model></SBID><OEM><OEMID>ACRSYS</OEMID><OEMTableID>ACRPRDCT</OEMTableID></OEM><GANotification/></MachineData><Software><Office><Result>103</Result><Products><Product
    GUID="{90120000-0030-0000-0000-0000000FF1CE}"><LegitResult>103</LegitResult><Name>Microsoft Office Enterprise 2007</Name><Ver>12</Ver><Val>ACD7202654E586</Val><Hash>fFic3JgCreGGRxyF8uMWB4R4Jcg=</Hash><Pid>89388-707-1528066-65612</Pid><PidType>14</PidType></Product></Products><Applications><App
    Id="15" Version="12" Result="103"/><App Id="16" Version="12" Result="103"/><App Id="18" Version="12" Result="103"/><App Id="19" Version="12" Result="103"/><App Id="1A" Version="12" Result="103"/><App Id="1B" Version="12" Result="103"/><App
    Id="44" Version="12" Result="103"/><App Id="A1" Version="12" Result="103"/><App Id="BA" Version="12" Result="103"/></Applications></Office></Software></GenuineResults>  
    Spsys.log Content: 0x80070002
    Licensing Data-->
    Software licensing service version: 6.1.7601.17514
    Name: Windows(R) 7, Ultimate edition
    Description: Windows Operating System - Windows(R) 7, OEM_SLP channel
    Activation ID: 7cfd4696-69a9-4af7-af36-ff3d12b6b6c8
    Application ID: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00426-00178-926-600006-02-1033-7601.0000-3602011
    Installation ID: 009046933085046584525573073645695632936540052790536966
    Processor Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use License URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product Key Certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial Product Key: HYRR2
    License Status: Notification
    Notification Reason: 0xC004F200 (non-genuine).
    Remaining Windows rearm count: 4
    Trusted time: 12/26/2011 8:25:15 PM
    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0x80072EFD
    HealthStatus: 0x0000000000000000
    Event Time Stamp: 12:25:2011 23:08
    ActiveX: Not Registered - 0x80040154
    Admin Service: Not Registered - 0x80040154
    HealthStatus Bitmask Output:
    HWID Data-->
    HWID Hash Current: NAAAAAMAAQABAAEAAAACAAAAAwABAAEA6GHETXD3zVB3FrJ6NqRIx6CDnsqot4Z4Jjkucw==
    OEM Activation 1.0 Data-->
    N/A
    OEM Activation 2.0 Data-->
    BIOS valid for OA 2.0: yes
    Windows marker version: 0x20001
    OEMID and OEMTableID Consistent: yes
    BIOS Information: 
      ACPI Table Name OEMID Value
    OEMTableID Value
      APIC TOSQCI
    TOSQCI00
      FACP TOSQCI
    TOSQCI00
      HPET TOSQCI
    TOSQCI00
      BOOT TOSQCI
    TOSQCI00
      MCFG TOSQCI
    TOSQCI00
      WDAT TOSQCI
    TOSQCI00
      ASF! TOSQCI
    TOSQCI00
      SLIC ACRSYS
    ACRPRDCT
      SSDT INSYDE
    INSYDE  
      ASPT TOSQCI
    TOSQCI00
      SSDT INSYDE
    INSYDE  
      SSDT INSYDE
    INSYDE  

  • How to make the workflow users as active users in SAP R/3

    Hi All,
    We have got an issue in R/3 system where a certain number of users who are created only to approve work flows via Outlook emails.
    They are not required to log in to the system at all. Due to this,the users are getting locked by a Security background job which locks all the inactive users.
    Now My question is how to make these work flow users as active users in R/3 system so that we can avoid locking of these users.
    Awaiting your response.
    Thanks in advance
    Ramkumar C

    Hi All,
    We have got an issue in R/3 system where a certain number of users who are created only to approve work flows via Outlook emails.
    They are not required to log in to the system at all. Due to this,the users are getting locked by a Security background job which locks all the inactive users.
    Now My question is how to make these work flow users as active users in R/3 system so that we can avoid locking of these users.
    Awaiting your response.
    Thanks in advance
    Ramkumar C

  • How do i make a tab active and make it stay that way always. If i put a website in my home page in order for the tabs to open automatically in that same homepage , this setting is not working, every time I open a tab , a white window appears .

    How do i make a tab active and make it stay that way always. If i put a website in my home page in order for the tabs to open automatically in that same homepage , this setting is not working, every time I open a tab , the window appears white .

    By default Firefox opens a blank page for a new Tab, there is no setting to change that action without installing an add-on.
    New Tab Homepage extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/777

  • HT201269 Phone call activity on new iPhone, how to make it work??

    Does anybody know how to get PHONE CALL activity on your new iPhone device AFTER you have already backed up your old phone and transferred EVERYTHING onto your new iPhone already ??? I can use the Internet , receive texts... But I cannot make calls !! Everything else works except receiving and making calls. I even updated the phone

    If data connection is working on cellular, then you need to contact your carrier. Phone calls are a carrier responsibility. They need to check your account provisioning.

  • How to make the condition type active

    hi,
    how to make the condition type active when its in inactive stage and its showing yellow triangle and y in the control features of it.
    and
    how to solve if is showing a statement as "INITAILISED".
    regards,
    balajit

    Dear Balaji,
    Yes it will come as Inactive mode.....If you make the 2 condition Class is same in single Pricing procedure ,In Standard system will display like this only..
    For Example:PR00-Condition class is Price
    EX00-Condition class is Price
    Then first Condition type will become Inactive.. change the Class of the Second Condition Type.
    Best Regards
    raj.

  • How to make a Button to work Actively even if there is a mandatory field..?

    Hi All..
    How to make a Button to work Actively even if there is a mandatory field to be fulfilled..???
    I am badly in need of this logic, as i have to incorporate in my code..
    Points will be rewarded without fail..

    Hi Pavan,
    I also faced the same requirement. U can do one thing like remove the obligatory keyword of that parameter/select-option. U can handle the same using the program in at selection-screen event. See this sample of code,
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:  s_land1 for T005-LAND1 <b>[Needs to be mandatory]</b>                 no intervals no-extension.
    SELECT-OPTIONS:  s_panid FOR zoindex_val-zopanid.
    SELECT-OPTIONS:  s_effdat FOR zoexchrate-zedate.
    SELECTION-SCREEN END OF BLOCK b2.
    *-- AT SELECTION-SCREEN
    AT SELECTION-SCREEN.
      CASE sscrfields-ucomm.
    *-- Obligatory Country Code
      IF s_land1[] IS INITIAL.
        MESSAGE e050 WITH text-050.
                     "Please select the Country Code
      ENDIF.
    So whenever u do F8/Enter other than that push button, it will prompt u to enter the country code first then only u can proceed.
    Hope this would help u in some way. Please do reward the helpful answers.

  • How can I access SCXI gain settings from the niconfig.daq file using Labview 6.1?

    I'm using NT, Labview 5.0 and NI-DAQI 6.8.1. also LV 6.1 w/NI-DAQ 6.9.2 and would like labview to determine the current SCXI gain settings. How can I parcel the ni-config.daq file into text?

    Hi,
    niconfig.daq is a binary configuration file and cannot be parced into a text file; the format of the data stored in it is not available.
    Regards,
    RamziH.

  • Can anybody tell me how to make daily activity report

    can anybody tell me how to make daily activity report

    Hi,
    Can you elaborate more about your requirement.
    With repect to which module are you talking about a report?
    Regards,
    Anji

  • I am new How to make internet enable group in my active directory 2003 ?

    I am new How to make internet enable group in my active directory 2003 ?
    Thanks & Regards, Amol . Amol Dhaygude

    Greetings!
    What is Internet Enabled Group? Would you please clarify this?
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

Maybe you are looking for

  • Filter using "List" is not working when Exporting Data

    Hi All, We have built a BI publisher report with 10 different layouts, each layout is corresponds to one separate report. In one layout we have one table view and "List" tool bar to select the required data. When we select a particular value in the l

  • MacBook Pro won't boot up after updating to Lion

    I just updated my MacBook Pro to Lion. After install restart the computer is stuck on the white screen with the apple logo and spinning wheel. I manually restarted it after 1 hour but that didn't solve the issue. What do I do? Any advice would be gre

  • OS9 classic getting connection failed message but starts up ok

    I'm working on OSX Tiger and when starting up OS9 Classic, I get this message,"The server may not exist or is not operational at this time. Check the server name or IP address and try again." OS9 starts up eventually but I want to get rid of the anno

  • PS Elements Update fails.  Suggestions?

    Adobe Photoshop Elements 9.0.3 Update Patch cannot be applied. Please contact product support. Error Code: U44M1P2003

  • Mail sees old IMAP

    I moved all my Inbox mail via my ISP web based interface to one Inbox and when I open Mail on my Mac I see the old mail in the other Inboxes. I've waited about two hours to see if it would "refresh" but it is still there. Is there some setting where