Programming and Automator Related Post?

Hello Mac OS X users,
I have some questions regarding programming on Mac OS X with either the Automator app or using the developer tools. Is this an appropriate category to post questions regarding programming on the Mac? If not, where could I post?
Thanks!

automator questions can be asked here. xcode questions should be asked in the developer forum under OS X technologies.

Similar Messages

  • Ho to find script and the related print program for print preview of PO

    Hi All,
    We are getting some text output on the print preview of a purchase order.
    How can we determine the driver script and the corresponding print program for this.
    Can you please guide on this.
    Thanks in advance.
    Regards,
    Sanjeet

    U Can check Driver program and form related to that program table is TNAPPR
    Goto NACE t.code
    Selct Application ---> click on output types
    then u wil get one window there select proper output type and
    double click on  processing  routines u wil get form name and related driver program name also
    Plz try this....
    Edited by: Upender Verma on Feb 9, 2009 1:33 PM
    Edited by: Upender Verma on Feb 9, 2009 1:37 PM

  • HOW TO PROGRAM THE ERRORS IN POSTING A DOCU USING BAPI_ACC_DCOCUMENT_POST

    MY INTERNAL TABLES ARE :
    TABLE FOR INTERNAL CUSTOMER.
    DATA:   BEGIN OF T_ICUSTOMER OCCURS 0,
               BUKRS   LIKE BKPF-BUKRS, "COMPANY
               BELNR   LIKE BKPF-BELNR, "ACC.DOCUMENT NUMBER
               GJAHR   LIKE BKPF-GJAHR, "FISCAL YEAR
               MONAT   LIKE BKPF-MONAT, "FISCAL PERIOD
               EBELN   LIKE EKKO-EBELN, "DOCUMENT NUMBER
             KUNNR   LIKE LIKP-KUNNR,"DEALER
               KUNNR   LIKE EKPO-KUNNR, "INTERNL DEALER NUMBER
               HKONT   LIKE BSEG-HKONT, "G/L ACCOUT NUMBER
               KOSTL   LIKE BSEG-KOSTL, "COST CENTRE NUMBER
           END OF T_ICUSTOMER.
    table to pass data to bapi header
    DATA:  BEGIN OF STR_BAPI_HDR,
              TCODE        LIKE  SY-TCODE,  " VALUE 'RFBU'
              USERNAME     LIKE  SY-UNAME,
              BUKRS        LIKE  BSEG-BUKRS,
              DOC_DATE     LIKE  SY-DATUM ,
              PSTNG_DATE   LIKE  SY-DATUM,
              YEAR         LIKE  BSEG-GJAHR,
              DOCTYPE      LIKE  BKPF-BLART, " VALUE 'ZZ',
              BELNR        LIKE  BKPF-BELNR,
           END OF STR_BAPI_HDR.
    table for debit/credit data of a dealer
    DATA:  BEGIN OF T_ITEM_DATA OCCURS 0,
              BELNR   LIKE BSEG-BELNR," DOCUMENT NUMBER
              BSCHL   LIKE BSEG-BSCHL," POSTING KEY
              SHKZG   LIKE BSEG-SHKZG," DEBIT/CREDIT INDICATOR
              WRBTR   LIKE BSEG-WRBTR," AMOUNT
              PSWSL   LIKE BSEG-PSWSL," CURRENCY
              HKONT   LIKE BSEG-HKONT," G/L ACCOUNT
              KUNNR   LIKE BSEG-KUNNR," DEALER
              PRCTR   LIKE BSEG-PRCTR," PROFIT CENTRE
           END OF T_ITEM_DATA.
    table to pass data to bapiacgl09
    DATA: T_ACCOUNTGL   TYPE STANDARD TABLE OF BAPIACGL09,
          WA_ACCOUNTGL  TYPE                   BAPIACGL09.
    *table to pass data to bapiaccr09
    DATA: T_CURRENCYAMOUNT    TYPE STANDARD TABLE OF BAPIACCR09,
          WA_CURRENCYAMOUNT   TYPE                   BAPIACCR09.
    NOW I NEED TO PASS DATA TO BAPI 'BAPI_ACC_DOCUMENT_POST".
    SO I CONSTRUCTED THE STRUCTURE AND TABLES TO PASS TO THE BAPI AS FOLLOWS:
    LOOP AT T_ICUSTOMER.
    SELECTING HEADER DATA VALUES TO PASS TO STRUCTURE BAPIACHE09
         CLEAR STR_BAPI_HDR.
         STR_BAPI_HDR-TCODE        = 'RFBU'.
         STR_BAPI_HDR-USERNAME     =  SY-UNAME.
         STR_BAPI_HDR-BUKRS        =  T_ICUSTOMER-BUKRS.
         STR_BAPI_HDR-DOC_DATE     =  SY-DATUM.
         STR_BAPI_HDR-PSTNG_DATE   =  SY-DATUM.
         STR_BAPI_HDR-YEAR         =  T_ICUSTOMER-GJAHR.
         STR_BAPI_HDR-DOCTYPE      =  'ZZ'.
         STR_BAPI_HDR-BELNR        =  T_ICUSTOMER-BELNR.
    SELCETING DATA  FROM BSEG
            CLEAR T_ITEM_DATA.
            REFRESH T_ITEM_DATA.
         SELECT BELNR
                BSCHL
                SHKZG
                WRBTR
                PSWSL
                HKONT
                KUNNR
                PRCTR
                FROM BSEG
                INTO CORRESPONDING FIELDS OF TABLE T_ITEM_DATA
                WHERE BELNR = T_ICUSTOMER-BELNR.
          ITEMNO_ACC = 1.
          LOOP AT T_ITEM_DATA.
    *declare a variable here to pass to item tab..
              IF  T_ITEM_DATA-BSCHL  = '31' AND
                  T_ITEM_DATA-SHKZG  = 'H'.     " IF CREDITING THE INVENTORY
                    CONCATENATE TEXT T_ICUSTOMER-EBELN  INTO ITEM_TEXT.
                        WA_ACCOUNTGL-ITEMNO_ACC         = ITEMNO_ACC.
                        WA_ACCOUNTGL-GL_ACCOUNT         = T_ICUSTOMER-HKONT.
                        WA_ACCOUNTGL-ITEM_TEXT          = ITEM_TEXT.
                        WA_ACCOUNTGL-COSTCENTER         = T_ICUSTOMER-KOSTL.
                        WA_ACCOUNTGL-DE_CRE_IND         = 's'.
                        WA_CURRENCYAMOUNT-ITEMNO_ACC  = ITEMNO_ACC.
                        WA_CURRENCYAMOUNT-CURRENCY    = T_ITEM_DATA-PSWSL.
                       WA_CURRENCYAMOUNT-CURRENCY_ISO = T_ITEM_DATA-PSWSL.
                        WA_CURRENCYAMOUNT-AMT_DOCCUR   = T_ITEM_DATA-WRBTR.
                        APPEND WA_ACCOUNTGL TO T_ACCOUNTGL.
                        APPEND WA_CURRENCYAMOUNT TO T_CURRENCYAMOUNT.
                        CLEAR: WA_ACCOUNTGL,WA_CURRENCYAMOUNT.
             ELSEIF T_ITEM_DATA-BSCHL   = '99' AND
                    T_ITEM_DATA-SHKZG  = 'S'.
                        WA_ACCOUNTGL-ITEMNO_ACC       =  ITEMNO_ACC.
                        WA_ACCOUNTGL-GL_ACCOUNT       =  T_ITEM_DATA-HKONT.
                        WA_ACCOUNTGL-PROFIT_CTR       =  T_ITEM_DATA-PRCTR.
                        WA_ACCOUNTGL-DE_CRE_IND       =  'H'.
                        WA_CURRENCYAMOUNT-ITEMNO_ACC  = ITEMNO_ACC.
                        WA_CURRENCYAMOUNT-CURRENCY    = T_ITEM_DATA-PSWSL.
                       WA_CURRENCYAMOUNT-CURRENCY_ISO = T_ITEM_DATA-PSWSL.
                       WA_CURRENCYAMOUNT-AMT_DOCCUR   = T_ITEM_DATA-WRBTR.
                       APPEND WA_ACCOUNTGL TO T_ACCOUNTGL.
                       APPEND WA_CURRENCYAMOUNT TO T_CURRENCYAMOUNT.
                       CLEAR: WA_ACCOUNTGL,WA_CURRENCYAMOUNT.
             ENDIF.
               ITEMNO_ACC = ITEMNO_ACC + 1.
    ENDLOOP.
    NOW I CALL THE BAPI AND PASS THESE STRUCTURE AND TABLE:
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader          = STR_BAPI_HDR
      CUSTOMERCPD             =
      CONTRACTHEADER          =
    IMPORTING
      OBJ_TYPE                =
      OBJ_KEY                 =
      OBJ_SYS                 =
      tables
        ACCOUNTGL               =  T_ACCOUNTGL
      ACCOUNTRECEIVABLE       =
      ACCOUNTPAYABLE          =
      ACCOUNTTAX              =
        currencyamount          = T_CURRENCYAMOUNT
      CRITERIA                =
      VALUEFIELD              =
      EXTENSION1              =
       return                 =
      PAYMENTCARD             =
      CONTRACTITEM            =
    NOW I WANT TO CHECK IF THE DOCUMENT IS POSTED OR NOT.SO I NEED TO CONSTRUCT THE TABLE RETURN....
    CAN ANY ONE HELP ME IN CONSTRUCTING THE TABLE AND HOW TO CHECK IF IT IS SUCCESSFULL OR NOTAND DO THE NECESSARY POST PROCESSING..I.E. CALL THE REURN VALUE INTO
    THE PROGRAM AND DO THE POST PROCESSING..
    ENDLOOP.

    I guess this is what you want:
    DATA: BEGIN OF return OCCURS 0.
            INCLUDE STRUCTURE bapiret2.
    DATA: END   OF return.
    DATA: do_commit.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader = str_bapi_hdr
      TABLES
        accountgl      = t_accountgl
        currencyamount = t_currencyamount
        return         = return.
    CLEAR do_commit.
    LOOP AT return..
      WRITE: /001 return-message.
      IF  return-type = 'S'.
        do_commit = 'X'.
      ENDIF.
    ENDLOOP.
    IF NOT do_commit IS INITIAL.
      CLEAR   return.
      REFRESH return.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait   = 'X'
        IMPORTING
          return = return.
    ENDIF.
    Rob

  • SLA Pre- upgrade programs and process and SLA Post upgrade

    Hi Guys
    Can anybody please let me know what are the SLA Pre- upgrade programs and process we have to run and SLA Post upgrade process and programs.
    Thanks
    Ajeesh

    Pl post details of OS and EBS versions. Pl see if MOS Doc 604893.1 (R12: FAQ for the SLA Upgrade: SLA Pre-Upgrade, Post-Upgrade, and Hot Patch) can help
    HTH
    Srini

  • How to uninstall Windows Intune Center and its related programs permanently from the Windows 7 64 bit OS?

    Hi,
    I am Srikar,
    I installed Windows Intune End Point protection in my PC (Windows 7 64bit).
    I am not able to uninstall it.It is eating all the resources and my pc is getting slower down day by day.
    I tried uninstalling via Control Panel->Programs and Feature->Windows Intune End point Protection.
    Its uninstalled,and after some time,it is installed automatically in my PC.
    Don't know whats happening.Please Please any one guide me.My PC is not even responding some times.
    Regards,
    Srikar Ananthula,
    Srikar

    Yes, removing a device will uninstall Windows Intune Center and its association with Windows Intune. Check this:
    http://onlinehelp.microsoft.com/en-us/windowsintune.latest/hh949661.aspx [Removing a Device by Using the Windows Intune Company Portal], and
    http://technet.microsoft.com/en-us/library/hh441723.aspx [Add Computers, Users, and Mobile Devices to Windows Intune].
    Hope this helps..
    Chaitanya( Twitter |
    Blogs )
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • What is the posting program and what kind of it is?

    HI,
    what is the posting program and what kind of it is?

    Hi,
    I am not sure in what context you are talking about. In case of a IDOC, there will be a function module which picks the data in the IDOC and posts the same to the respecitve application.
    If you require more details explain the context of the same.
    Regards,
    Ravi
    Note : Please close the thread, if the question is answered

  • Uninstalling programs and related components

    How do I uninstall programs and components from this machine. It was given to me with all the original owners stuff on it.

    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash. Applications may create preference files that are stored in the /Home/Library/Preferences/ folder. Although they do nothing once you delete the associated application, they do take up some disk space. If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application. In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder. You can also check there to see if the application has created a folder. You can also delete the folder that's in the Applications Support folder. Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item. Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder. Log In Items are set in the Accounts preferences. Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab. Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS. Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term. Unfortunately Spotlight will not look in certain folders by default. You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead. Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder. Usually with the same name as the program or the developer. The item generally has a ".pkg" extension. Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications. Here is a selection:
    AppZapper
    Automaton
    Hazel
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Call tcode KSB1 in a custom program and modify its output

    I was searching the forum for finding a way to create a program that has all details from KSB1 and some details from CJ13 (WBS details) and found some related posts. But none of the posts had any details on how to actually achieve this.
    I have to do a similar thing of getting the KSB1 output and add WBS details for each line item and then give the final output.
    If you have already done this before, please elaborate on the steps how you achieved it.
    Please specify the SUBMIT that you had written to call KSB1. If I can have all details from KSB1 in my memory, then I can read that in my program and add WBS details and give the output.
    Below is what I am doing but it gives the same error as one of you had - transaction code not defined.
    DATA: FCODE TYPE SY-TCODE VALUE 'KSB1'.
    SUBMIT RKAEP000 WITH SY-TCODE = FCODE.
    Any help would be appreciated. Thanks.
    Regards,
    Shipra

    Hi,
    try this code it will work..
    the data is stored in txtlines format the data by the field wise.
    * Data Declaration
      DATA:lt_listobject TYPE TABLE OF abaplist,
        l_tab_lines TYPE i.
      DATA: txtlines(1024) TYPE c OCCURS 0 WITH HEADER LINE.
      SUBMIT rkaep000                      "the program name
         USING SELECTION-SET 'BPC TEST'          "Pass varint BPC Test
               EXPORTING LIST TO MEMORY AND RETURN.
    * Read list from memory into table
      CALL FUNCTION 'LIST_FROM_MEMORY'
        TABLES
          listobject = lt_listobject
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.
      IF sy-subrc  0.
    *   Error in function module &1
      ENDIF.
    *Spool content in Ascii format
      CALL FUNCTION 'LIST_TO_ASCI'
        TABLES
          listobject         = lt_listobject
          listasci           = txtlines
        EXCEPTIONS
          empty_list         = 1
          list_index_invalid = 2
          OTHERS             = 3.
      CALL FUNCTION 'WRITE_LIST'       "Display report same as in KSB1... else not required
      TABLES
        listobject = lt_listobject
      EXCEPTIONS
        empty_list = 1
        OTHERS     = 2.
    CALL FUNCTION 'LIST_FREE_MEMORY'
      TABLES
        listobject = lt_listobject.
      LOOP AT txtlines.   "data will be stored in this..
        " split the txtlines-tdline with | and move into another internal table and do the validation...
      endloop.
    Prabhudas
    Edited by: Prabhu Das on May 20, 2009 11:28 PM

  • Deleting programs and files

    I recently hotsyncd and the computer asked if I wanted older information loaded.  Not thinking, I said YES.  I have no idea what was loaded, but the memory is so full that when I click on APPLICATIONS, it shuts off and reboots and says: 
    Extensions are not loaded because free data storage space on the device is low.  Delete application or data then reset the device again (APP 8004).
    Also:  The free data storage space on the device is very low.  Delete application or Data (APP 8002)
    How do I delete everything and start over?  I can hotsync to retrieve from my computer at work to restore all info.  Then, how do I delete that which I should not have added when I hotsyncd from my home computer?
    Thank you,
    Dave
    Post relates to: Palm TX

    Michael25, to "delete everything and start over" you need to perform a "Hard Reset".
    To perform a Hard Reset: (Palm Knowledgebase article #887)
    http://kb.palm.com/wps/portal/kb/common/article/887_en.html
    While pressing and holding the Power button down, tap and release the Reset button in back and continue to hold the Power button down. When the grey Palm logo appears, you can release the Power button.
    You should now see the warning page in about 5 languages. Press the UP direction on the 5-way pad to complete the task. Your Palm will reset itself several times as it re-installs the original programs and erases all your previous data.
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Program and product code mandatory for sales adj

    Hello Friends i have following change request on COPA. Could someone please help.
    There is an executive directive asking to report the actual sales and cost of sales by product line, program, including when the accounts are adjusted manually, through JE.  
    The accounts that must have the information related to the Program and Product code are the manual adjustments related to:
    -     gross sales accounts-     standard material adjustment account-     standard labor-     variable overhead
    -     fixed overhead-     standard scrap adjustment account. 
    The request is to be mandatory to fill the program and the product code for specific accounts through a new Field status group.
    Regards
    Vishal

    Hello,
    Look at 434393.1.
    http://oracled2k.pixnet.net/blog/post/25057800
    From this web
    Operation_Code, --Operation_Code:'INSERT' ,'UPDATE','DELETE'
    Regards,
    Luko
    Edited by: Luko on 2010-04-29 23:18

  • How to remove all OEM programs and get to a base OS - W7

    Is there a utility that will bring the machine back to just the base Windows 7 OS?  None of the OEM installed programs are needed, or wanted.
    Using Add/Remove Programs always leaves unwanted trash in the file system and registry.  So is there a utility that cleanly removes all non-OS related files/registry entries?
    What has been tried:
    1.)  Installed W7 Pro from an image downloaded from Digital River.  The product key on the machine was used for installation.  Activation via Internet and Automated Phone System failed.
    2.)  Repeat of #1 using a Lenovo XP/Vista to W7 Upgrade disk.  Installation works.  Activation fails.
    3.)  Repeat of #1 using a commercially purchased copy of Vista to W7 upgrade.  Installation works.  Activation fails.
    4.)  WAIK has been attempted with no success thus far.
    Any thoughts other than Add/Remove Programs?  Or a Volume Licensing Agreement?
    Is there a utility?  Does Lenovo have any remedy for the complete removal pre-installed programs? 
    We have 125 of these machines.  Too many to manually go through Add/Remove and still wind up with a less than pristine OS installation.

    Try using Pc decrapifier
    http://www.pcdecrapifier.com/
    Cheers and regards,
    • » νιנαソѕαяα∂нι ѕαмανє∂αм ™ « •
    ●๋•کáŕádhí'ک díáŕý ツ
    I am a volunteer here. I don't work for Lenovo

  • Error -2147220733 occurred at DAQ Assistant (in Measurement and Automation Explorer)

    Ok!  Just before the weekend I figured out how to make channels in Measurement and Automation Explorer for inputs through a couple different NI input devices (USB-9211A & PCI-6229 DAQ).  Things were going well.  Loaded up the computer today, added a few more channels.  Worked fine.  Now all of a sudden, any channel I make has an error and if I try modifying existing channels and saving, I get same error:
    "This global channel currently has an error.  You can save the global channel, but it cannot be used until all errors have been fixed.  Press "Yes" to save anyway, or "No" to cancel and show the error."
    If I hit yes, the channel is non functional.  After hitting no, I get:
    "Error -2147220733 occurred at DAQ Assistant.  Possible Reason(s): "
    with no possible reasons listed.  I tried restarting the program.  I tried restarting the computer.  I verified connections.  Searched for the above stated error number on ni.com, google.ca, and in the MAX help files, and found absolutely nothing.  I have no clue what to do.  Any help would indeed be very much appreciated.

    Hi there,
    This is my first time on here and I've only been using this software for a couple of days so it's possible I'm making a trivial error but I thought I'd post here anyway as I can't find anything on the net about my problem.
    I also get an error while trying to save:
    Error -2147220733 occurred at DAQ Assistant
    Possible Reason(s):
    Requested Code: -2147220733
    But mine comes about in different circumstances to the one in the original post on this thread by Kahless. I was editting a VI logger task and within that I was trying to edit an NI-DAQmx Task. I was trying to change the clock settings, specifically I was attempting to change the Rate (Hz) from the 1k default to just 20, or 200. I got the error while trying to save so changed it back to 1k, but the error persisted even though I'd set it back to what it was.
    I thought at first it might be simply that I was trying to edit an NI-DAQmx task within VILogger, so I tried making the ammendment directly but the problem was still there. 
    Any ideas?
    Many thanks.

  • Tough Problem: This action cannot be completed because the other program is busy. Choose 'Switch To' to activate the busy program and correct the problem

    Please, please help us!
    We have an intermitant problem which is badly affecting a group of our users.  Can anyone help identify what SERVER this message is talking about???
    Details:  CF-19 Panasonic Tough Book, McAfee Enterprise 8.7i, Windows XP 2005 Tablet Ed. SP3. 
    Problem at login intermittantly we get a unmanagable/unresponsive window stating the following:
    Window Name:  Server Busy
    Text:  This action cannot be completed because the other program is busy.  Choose ‘Switch To’ to activate the busy program and correct the problem
    Buttons:  Switch To, Retry, Cancel (Grayed out)
    Event Viewer Message:
    Source: DCOM, Type Error,
    Description:  The server
    {D6E88812-F325-4DC1-BBC7-23076618E58D} plus others with {6B19643A-0CD7-4563-B710-BDC191FCAD3B} did not register
    with DCOM within the required timeout.
    I searched the registry for {D63.....} and found keys relating to "TCServer.exe"  Little info available.  But found 
    ((KB895953 - Memory Leak in Windows XP Tablet PC Edition )) but this seems related to a pre SP3 update....  we have SP3 installed can I still install this patch?
    I searched {6B1....} and found keys relating to "TSFManager".  Again little information available.
    How can I identify the servers with the long {XXXXXXXXX} keys, and what is tcserver.exe?
    Please help,
    Tony Heslington.

    Hi,
    If the problematic XP PC is in a domain, please provide us more information on it, such as how many DCs, member servers and the OS versions. Does the error only
    occur on one XP PC? Does the issue occur when logging on as some certain users? When did the issue begin to occur? Have you installed software, hardware or updates recently?
    Please check whether the error occurs in Clean Boot mode.
    1. Click "Start", go to "Run", and type "msconfig" in the open box to start the System Configuration Utility.
    2. Click the "Services" tab, check the "Hide All Microsoft Services" box and click Disable All (if it is not gray).
    3. Click the "Startup" tab, click "Disable All" and click "OK".
    4. Restart your computer. If the "System Configuration Utility" window appears, please check the box and click "OK".
    What is the result? For further assistance, please help gather the following information for research:
    Event log
    =========
    1. Click "Start", click “Run”, input "eventvwr" and press Enter.
    2. Expand the "Windows Logs" node on the left pane, right-click on "Application" and click "Save All Events As"; in the pop-up window, click to choose the Desktop
    icon on the left frame, input "app" in the "File name" blank, and then click save.
    3. Right click on "System", with the same method, save it as "sys".
    4. Locate the two saved log files on the Desktop and send them to us.
    Collect HiJackThis log
    ==============
    1. Please download HijackThis from the following link:
    http://www.techspot.com/download317.html
    HijackThis is a tool to collect some system settings information which is useful for further troubleshooting.
    Please Note: The third-party products discussed here are manufactured by vendors independent of Microsoft. We make no warranty, implied or otherwise, regarding
    these products' performance or reliability.
    2. Right click the downloaded “HJTInstall.exe” file and choose "Run as administrator".
    Provide administrator password or click “Allow” if you are prompted to do so.
    3. Click the "Do a system scan and save a logfile" Button.
    4. A Notepad window will appear, please click “File”, “Save As...” to save it as HJT.log (or other file name you like) on the Desktop
    and sent it to us.
    Upload these file to the following workspace.
    You can upload the information files to the following link. 
    (Please choose "Send Files to Microsoft")
    Workspace URL: (https://sftus.one.microsoft.com/choosetransfer.aspx?key=900ac54d-301d-42da-876d-4546dc81a342)
    Password: Y^dh$J1KR2u%UKL
    Note: Due to differences in text formatting with various email clients, the workspace link above may appear to be broken. Please be sure to include all text
    between '(' and ')' when typing or copying the workspace link into your browser. Meanwhile, please note that files uploaded for more than 72 hours will be deleted automatically. Please ensure to notify me timely after you have uploaded the files. Thank you
    for your understanding.
    Thanks.
    Nina
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Form Data and Automation

    I have a few questions about collecting data and automating a process with a form. I've created a sample form to illustrate my questions.
    I would like to create a PDF form which could be distributed among workers at an office. I'll send the form to the office manager and won't know how many people will use it or how many times it will be distributed. I realize I could create a webpage form to accomplish the same thing but I don't to require users to go to a website, register, and then submit the form. I think a form (if feasible) may be more user-friendly considering the users.
    Questions...
    1. I'd like the data to be collected in a database on my server. This shouldn't be an issue in a stand alone form but how would the following criteria effect this?
    2. When the data is stored into a database on my server, this triggers an automatic email to whatever company was checked under #1 (lite pink). Could a copy of the form be sent to each company sent without disclosing the other companies solicited? Only part of the form is visible? With comments, you can display but not print. Is there a way to use these capabilities for something like this?
    3. I'd like capture who's using the form so info in 2, 3, and 4 (red). Its important for me to collect feedback from the user on the effectiveness of this form. Did the companies reply with a price?
    4. I would like the companies to answer specific questions about their product (yellow). For example, specific price, warranty or delivery. Sometimes when asking companies for this information, they may or may not provide all this information in their response. By using this form as the platform for their response, the company would need to answer the specific information. So, can this form then be sent back to the user after completed by the company?
    5. The company my want to attach a written proposal along with the information on this form (green). Can they attach to the form?
    I assume other systems will need to be developed in conjunction with the PDF to accomplish this wishlist. Essentially, i want the PDF form to be the conduit for communication back and forth between the parties and I want to capture the data behind the scenes in my server. This may be outside the realm of possibilities of the PDF form and more appropriate through a website but a form with this group would be more user friendly and used more frequently. They wouldn't have to bookmark a website, register with a name and password, or seek out this website. The PDF sits on their desktop.
    Any thoughts on one or more of these questions would be appreciated.

    A PDF form can be set up to submit to a web server, so what you outlined can be done with a PDF form. Most of what you need will have to be done server-side, so someone will have to write the program on the server that pocesses the incoming submissions and takes appropriate action.
    You can set up certain fields to be required so that if they are not completed, the user won't be able to submit the form.
    To include attachments, there are basically two options.
    1. Set up a field to work like a HTML file upload field. This involves a bit of JavaScript in the form: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.734.html
    If using this method, it might be best to submit as "HTML" and process the form as though it were an HTML form, with the exception of the response (usually FDF) that must be returned. There is a lot of mature code/libraries available for processing HTML forms.
    2. Set up the form to submit the entire PDF, as opposed to just the form data. This requires that the PDF be Reader-enabled, which allows Reader users to attach a file as a comment and submit the PDF form + attachment. The problem is the server-side processing become more difficult since you have to find a way to extract the form data from the PDF. If everyone will be using Acrobat, or Reader 11 (or later, presumably), then the document does not need to be Reader-enabled
    There's more to know, particularly in dealing with security and the client-side issues relating to how Acrobat/Reader respond when submitting and receiving a response from a web server, but I hope this can get you started.

  • Problems with Measurement and Automation Explorer (MAX)

    Hello LabVIEWers,
    I have been having a serious problem getting MAX to start and to remain stable. Here are the specifics:I am running LabVIEW 8.5 Full Development System on a Dell PC with 1GB of RAM and plenty of hard drive space. The OS is XP Pro and I also have McAfee Enterprise Virus Scan software.  MAX will start-up and appear to run for a few minutes and then the software bombs out. I get a "Measurement and Automation Explorer has encountered a problem and has to close" pop-up message. To fix the problem, I have uninstalled all NI software using MSI Blast. I have wiped the registry clean of NI keys as per instructions in previous posts. I have deleted any remaining NI software on teh hard drive including C:\program files\national instruments and C:\Documents and Settings\All Users\Application Data\National Instruments. I have then restarted the machine and did a complete fresh install from CD's, DVD's, and the harddrive (CD's written to hardrive and DVD written to harddrive first). I installed first the LabVIEW and then I installed the Device Drivers. I restarted the machine between installs. I have even installed the updated NIDAQ 8.6. After which I set protections on the NI directories to read/write. Ok, basically I have done all these things numerous times and I still cannot get things to work correctly.
    I was able to get into MAX for a little while (it is somewhat stable immediately after a fresh reinstall). I defined 4 Simulated DAQmx devices and none of them acted like they were simulated. I received various errors saying that the device was not found or could not be started. So I basically could not run my software with the simulated devices. LabVIEW sometimes seems to work ok but just now, I got a "Error loading nidmm_32.dll, initialization routine failed" error. I also get the same error for nilvaiu.dll. Both of these DLLs are in the C:\Program Files\IVI\Bin and  c:\windows\system32 directories respectively and prior to the last time I started the software, all worked ok with LabVIEW.
    Is my computer failing? Are there any other options to getting this installed without probems?
    Please help.
    Michael Froehlich

    Duplicate Post
    Keep discussion here
    National Instruments
    WSN/Wireless DAQ Product Support Engineer

Maybe you are looking for