Running a .EXE off a CD

I'm trying to call .PDF files stored locally on a CD from my
Flash projector. Using a 'VIEW' button, I want to launch Acrobat
Reader and open a pdf from the CD.
How is this done?

Now that you've heard from the "buy my product too" sheep,
here's a
FREE solution you can try
Check out the original thread from FlashKit (link below) to
find a
link to the ZIP file with the examples that the post below
talks
about.
http://board.flashkit.com/board/showthread.php?t=674688&highlight=pdf+topmost
Here's a BAT file that will make sure the Acrobat Reader is
made the
topmost application after your PDF file is opened. It uses a
BAT file
for loop to repeatedly call topmost so the PDF has time to
load. In
the BAT file in the ZIP file I attached there are a lot more
X's which
translates into a better chance of topmost working.
----- code ----
start test.pdf
set repeat=x x x x x x x x x x x x x x x x x x x x x
for %%i in (%repeat%) do call topmost Adobe
----- /code -----
In the ZIP file I also included a file called test.exe which
is a
renamed copy of my PROXY utility to hide the ugly DOS box
that appears
when you run a BAT file.
Put everything in the ZIP file in the fscommand folder, then
if you
want to just run the BAT file you can just add
fscommand("exec",
"test.bat"); to your FLA.
If you use fscommand("exec", "test.exe"); you'll be using the
proxy
utility to launch the BAT file indirectly. What this does is
hide the
DOS box that appears when you run a BAT file.
If you want to open other PDF files, just make copies of
TEST.BAT and
TEST.EXE and rename them to say MYFILE.BAT and MYFILE.EXE and
edit
MYFILE.BAT to open the correct PDF file. Then use
fscommand("exec",
"myfile.exe") to open the PDF.
You'll need a BAT and EXE file for each PDF file you want to
open.
Tim Goss
Northcode Inc.
http://www.northcode.com

Similar Messages

  • AppLocker prevents DWM.exe running at log off

    Hi All,
    We are testing Windows 8.1 for release at our site, and have come across an AppLocker issue with DWM.exe being denied access to run at log off - this results in a black screen whenever a users chooses to log off of a PC and nobody being able to logon again
    until the PC is restarted.
    Event Logs on the PC indicate this as Event ID 8004 under "Application and Services Logs\Microsoft\Windows\AppLocker\EXE and DLL" and specifically states that AppLocker is preventing it. DWM.exe continuously tries to run and keeps logging errors
    for a period of time before giving up.
    Applocker is configured as:
    Executeable Rules:
    DOMAIN\Domain Users - Signed by O=MICROSOFT CORPORATION, L=REDMOND, S=WASHINGTON, C=US
    DOMAIN\Staff - Allow anything for staff members
    DOMAIN\special.user - Allow anything for a specific user.
    DOMAIN\Domain Users - C:\programdata\* (This allows AppV Packages)
    DOMAIN\Domain Users - C:\Program Files (x86)\*
    DOMAIN\Domain Users - All Files located in program files folder
    DOMAIN\Domain Users - All files located in the Windows folder
    BUILTIN\Administrators - (Default Rule) All Files
    Packaged app Rules, Windows Installer Rules and Script Rules all have the default rule values enabled (Though, none of these rules are set to Enforced in the base AppLocker setup - I did find that 8.1 Modern UI apps would not function without the default
    rules enabled for Packaged app Rules).
    These rules appear to allow everything else to function happily, with the only error showing in the Event viewer logs being the DWM.exe issue.
    I have attempted to specifically allow DWM.exe via direct file, publisher, path rules for all users as above and even NT AUTHORITY\System - all with no effect on the situation.
    Has anyone else encountered this issue with AppLocker and Windows 8.1 before?
    Regards,
    /Glaic

    Hi,
    Could you please paste the complete Event 8004 here so we can better know what happened?
    Are there any domain or OU level group policies applied?  Local group policy will be overriden by higher lever gpos which might cause this issue.
    Does this issue happen on a local user account?
    Yolanda Zhu
    TechNet Community Support

  • I cannot uninstall Firefox, either through Control Panel Add/Remove or by running helper.exe from Program Files.

    Nothing happens when I click on REMOVE for Mozilla Firefox from the Add/Remove screen of Control Panel. I then tried to run helper.exe from the Mozilla Firefox folder in Program Files, but that wouldn't run either. Any suggestions?
    == This happened ==
    Just once or twice
    == When I tried to uninstall Firefox

    unistalled foxtab, however the window saying "want to add this pers. button to toolbar" no matter what I do I can't get it off , close firefox, remove or delete or get a new firefox download to replace it in the harddrive etc. Its locked up firefox and I have to use safari to access the web. how do I get this circular message etc. off ?

  • Error while running sawserver.exe file

    Hi All ,
    I installed OBIEE 11.1.5 in my machine and Database is in different machine (For RCU) .OBIEE reports are working fine but, I tried to run sawserver.exe file to register new instanceconfig file to implement multiple rpds and Catalogs in OBIEE 11G by referring the below link.
    http://rnm1978.wordpress.com/2009/08/25/multiple-rpds-on-one-server-part-2-presentation-services/
    Command that I used is : sawserver.exe -c D:\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfigdemo.xml
    Am getting the Error : the procedure entry point long jmp count not be located in the dynamic link library orauts.dll
    Thanks in Advance .

    Hi,
    How can i do it in OBIEE 11G? Any help will be grateful
    Regards,
    Joni

  • Running an exe from within Oracle WebLogic 10g R3 does not find dll

    Hi,
    I am facing a strange issue with Oracle WebLogic 10g R3.
    I use the code as shown in Listing 1 below to run a windows based application exe (batch job) from within my web application hosted on Oracle WebLogic 10g Release 3.
    Note that this code woks fine on Tomcat 6.x and OC4J (JDeveloper TP4).
    The exec gets executed but the log of the exe program shows it could not load certain DLLs.
    Note that these DLLs are in the same directoy as the Batch program and this directory is in the PATH.
    Running through simple Java Program Successful*
    When I run the same program from a java program it runs successfully. So this means some WebLogic environment does not get set properly.
    Running directly BatchProg.exe rather than cmd.exe fails*
    Also note that when I run the exe directly e.g. BatchProg.exe rather than through cmd.exe it gives me a error the system did not find the file specified.
    CreateProcess error=2, The system cannot find the file specified with cause java.io.IOException: CreateProcess error=2, The system cannot find the file specified
    Listing 1:*
    String[] commandArgs = new String[|http://forums.oracle.com/forums/] { "cmd.exe", "/C", "BatchProg.exe \"param1\" \"param2\" " },null , l_workingDir)
    Runtime rt = Runtime.getRuntime();
    Process proc;
    proc = rt.exec( commandArgs, envParams, workingDir );
    ProcessIO errStream = new ProcessIO( proc.getErrorStream(), "ERROR");
    ProcessIO outStream = new ProcessIO( proc.getInputStream(), "OUTPUT");
    errStream.start(); // process any errors from the command
    outStream.start(); // process any output from the command
    System.out.println("Error=" +errStream);
    System.out.println("Out" + outStream);
    return (p_waitToFinish ? proc.waitFor() : this.SUCCESS);

    OK.
    I have posted this on the WebLogic Forum.
    Thanx.

  • T400 with ATI Radeon HD 3400. Driver not found after running ImageX.exe /Capture

    Hello,
    I was able to reproduce the following problem on a T400.
    - unattended installation of WXP-SP3 (slipstreamed)
    - reboot
    - install latest ATI driver from Lenovo/IBM site (8.503.2.2-080818a-069536C)
    - reboot
    At this point, the video driver is well configured.
    - Reboot once or twice, video driver still good.
    - Boot the T400 on WinPE 2.0
    - Capture the C:\ to a network file share using ImageX.exe (from Microsoft's WAIK 1.1)
    - Shutdown the T400, and reboot on C:\
    - At this point, video driver is "lost". The Hardware Wizard says "new driver found", but stick with default VGA.
    Then I get an ATI error telling the driver is missing or not well installed.
    - When rebooting several times, suddenly the card is back in the device manager as a Radeon HD 3400.
    (without re-installing the driver ...)
    Anyone has an explanation ?
    Please not I did not run "sysprep.exe" before capturing with ImageX.exe
    stefan

    Update on this problem.
    After running "sysprep.exe -mini -quiet -reseal -shutdown", I ran the "ImageX.exe /capture".
    After rebooting the T400, the ATI driver was fine.
    Either is a coincidence (but I could repeat it 3 times...) or it is not advised to run "ImageX.exe /Capture" on a non-syspreped Windows XP.
    I know that a non-syspreped Vista system has a limitation if captured with ImageX.exe. But I am not aware on any limitation with XP.
    Stefan

  • I can download firefox, but when I try to run it, windows 7 asks me to select a program type to run the *.exe file

    I am running windows 7 with IE 10. I want to switch to Firefox as my browser. I am able to download the Firefox Setup 22 0 exe, but when I try to open or run it, windows prompts me to "choose the program you want to use to open this file". This happens with both the Firefox Setup Stub 22 0 exe (274kb) and the Firefox Setup 22 0 exec (21,239Kb). I can't find any program on Windows to run this exe. Same thing happens when I try to run the troubleshooter exe.

    Hello annsboland
    Do you have also problem with others exe files ?
    try to create a new user account in Windows 7 and check it again
    see if the next articles in the links helps to create the new account:
    http://www.bleepingcomputer.com/tutorials/create-new-user-account-in-windows-vista-7/
    http://www.pcadvisor.co.uk/how-to/windows/3326039/how-add-new-user-account-in-windows-7/
    thank you

  • Requirement is to run CMD.EXE under the Local System Account. So that we can map a network drive to be used by a windows service, which will be created by command: - net use z: \\servername\sharedfolder /persistent:yes

    Environment:
    OS:  Windows 7 32/64 bit, Windows 2008 Server 64
    bit/ Windows 2012 Server 64 bit
    Priority:
    - Critical
    Requirement: - Since
    the Windows Service is running under the Local System Account, we would like to emulate this same behaviour.
    Basically, we would like to run CMD.EXE under the Local System Account. So that we can map a network drive to be used by a service using following
    command
    net use z: \\servername\sharedfolder /persistent:yes.
    Already Attempt:
    We tried to launch the CMD.exe using the DOS Task Scheduler AT command.  Here’s a sample command:
    AT 10:36 /interactive cmd.exe
    But I received a warning that “due
    to security enhancements, this task will run at the time excepted but not interactively.”
    It turns out that this approach will work for XP, 2000 and Server 2003 but due to session isolation
    Interactive services no longer work on Windows 7, Windows Server 2008 and above.
      2.  We
    tried to create a secondary Windows Service via the Service Control (sc.exe) which merely launches CMD.exe.
    <Drive>:\sc create RunCMDAsLSA binpath= "cmd" type=own type=interact <Drive>:\sc
    start RunCMDAsLSA
    In this case the service fails to start and results it the following error message:
    FAILED 1053: The service did not respond to the start or control request in a timely fashion.
      3. One
    suggestion, we found to launch CMD.exe via a Scheduled Task, but
    it is not giving any option to launch CMD.exe in interactive mode; so that I can map network drive using net command.
      4. I read an article, which
    demonstrates the use of PSTools from SysInternals. I launched the command line and executed following command
    psexec -i -s cmd.exe
    PSTools worked fine, but It seems that in scope of Sysinternals Software License
    Terms. You may not "use the software for commercial software hosting services."
    Application will deploy on client, which will be like commercial,
    so we are not able to use PSTools.         
    Kindly assist us for achieving the requirement. We have tried all the ways, but nothing is working for us. Kindly suggest.
    I will be really thankful.

    Hi Sir,
    Nothing worked from above for us. You can see our remarks on posted query.
    That’s why, we posted on forum.
    And there will not be any vulnerability, because, if we will use "net
    use ..."
    in network domain; definitely,
    we will provide username and password of mapped drive system.
    And, that system, itself is given by client; so that, there must not be any vulnerability; they are ready to provide user name and password.
    We need a way; by which we can complete the requirement. Kindly assist.
    Regards,
    S. P. Singh

  • How many times can I run PSConfig.exe -cmd upgrad .... command

    I'm getting VSS error in my eventlog -> application. I was getting 8213 and followed http://technet.microsoft.com/en-us/library/cc734219(v=ws.10).aspx and
    now I'm gettting 8230.
    Meanwhile my backups not are running. I remember running PSConfig command when I first installed windows and sharepoint 2010 on this box for system backup to work correctly.
    Now I run WMIC  QFE  LIST  FULL /Format:HTable > C:\Temp\HotfixList.html to retrieve all the installed update to check if KBs
    2460045 or 2687453 are installed unnoticed but I don't have any history of installed updates suprising eh!
    Now I want to run
    PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent
    -install -cmd installfeatures
    just incase one of them have been installed unnotice.
    How many times can I run this PSConfig command? How dangerous is this decision?

    You can run it as many times as you want, but it will take SharePoint down on that particular server (resets IIS, for example), while it executes.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...

    I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...what should I do?

    Hi Arika,
    The drivers that you need to install to make your executable work depends on what your executable is doing. To get started, you need to have the LabVIEW Run-Time Engine installed on your target machine (the Win2000 machine you are planning to use) in order to run your executable. Next, you need to determine what drivers your executable uses, if any. For example, if you are using GPIB instrument control, you will need to install the NI-488 drivers on your target machine. If you are performing data acquisition, you will need to install NI-DAQ drivers. If you are doing image acquistion, you will need to install NI-IMAQ drivers.
    All these drivers are available for downloading on ni.com. To get the drivers, go to ht
    tp://www.ni.com/support , click on the link that takes you to Drivers and Updates (under Option 3), and click on the links to get to the driver(s) you need. For example, if you need the LabVIEW 5.1.1 Run-Time engine, click on the All Drivers and Updates by Application link on the main page (http://www.ni.com/softlib.nsf/). Then click on the LabVIEW link, Windows 2000, Run Time Engine, and then you will see the link to get to the page to download the LabVIEW 5.1.1 Run-Time Engine.
    I hope this information helps.
    Best Regards,
    Wilbur Shen
    National Instruments

  • Error while running sapccmsr.exe on Netweaver Trial

    Hi there,
    I've installed Netweaver Trial on my laptop, and I'm trying to run 'sapccmsr.exe -R' from the command to register the CCMS monitoring agent.
    It almost works, but then comes up with the following error:
    "After entering the RFC logon info for the user, the password
    will be stored here on this machine in a Secure Storage.
          client [000]                        :
          user  [CSMREG]                      : sap*
          language  [EN]                      :
          hostname of NSP message server [localhost] :
          use Load Balancing  [n]/y ?         : n
          hostname of application server [localhost] :
          system number (00 - 98)  [00]       :
          [optional] route string             :
          trace level    [0]                  :
          please enter password for [NSP:000:sap*]: *******
    Try to connect ...
    INFO: Updated saprfc.ini in agent work directory C:\saploc\PRFCLOG\sapccmsr
    ERROR: Registration failed: Can't get version of NSP. RfcRc = 2, C_CALL_FAILED
    RFC Error Info for SALS_MS_GET_LOCAL_MS_INFO
    message:
    status:  EXCEPTION C_CALL_FAILED RAISED
    intstat:
    INFO: dsr: dsrlib unloaded.
    EXITING with code 1"
    any help much appreciated, I'm a SAP newbie !
    TIA.
    Stuart.

    Hi,
    I have exactly the same problem.
    sapccmsr -R -j2ee pf=<dir>
          client [000]                        :
          user  [CSMREG]                      :
          language  [EN]                      :
          hostname of PIT message server  :
          use Load Balancing  [n]/y ?         :
          hostname of application server  :
          system number (00 - 98)      :
          [optional] route string             :
          trace level    [0]                  :
          please enter password for [PIT:000:CSMREG]:
    Try to connect ...
    INFO: Updated saprfc.ini in agent work directory /usr/sap/ccms/<SID>_<SN>/sapccmsr
    ERROR: Registration failed: Can't get version of PIT. RfcRc = 2, C_CALL_FAILED
    RFC Error Info for SALS_MS_GET_LOCAL_MS_INFO
    message:
    status:  EXCEPTION C_CALL_FAILED RAISED
    intstat:
    INFO: dsr: dsrlib unloaded.
    I have tried to register it via visual admin but the same error appeared.
    OS: AIX
    DB: oracle 10.2.0.4.0
    SAP component: PI7 (SAP NetWeaver 2004s)
    Any help?
    Thanks in advance
    Edited by: Jan Hinka on Jul 2, 2009 6:46 PM

  • Getting error while running sapinst.exe

    Hi Gurus,
    I have an error while running sapinst.exe.
    ===============================
    Error: Home directory is not available for user sapsdt
    Opened sylib722.dll
    exe dir is I:\usr\sap\***\tmp\3\sapinst_exe.10440.1359197818
    MessageLib initialized successfully.
    Creating file I:\usr\sap\***\tmp\3\sapinst_exe.10440.1359197818\dev_sap_kernel_test_26_Jan_2013_05_57_02.
    Removed file I:\usr\sap\***\tmp\3\sapinst_exe.10440.1359197818\dev_sap_kernel_test_26_Jan_2013_05_57_02.
    Initialized SAP kernel tracing to file I:\usr\sap\***\tmp\3\sapinst_exe.10440.1359197818\dev_sap_kernel
    Opened I:\usr\sap\PD3\tmp\3\sapinst_exe.10440.1359197818/iaguieng722.dll
    Initialized SAP kernel tracing to file dev_sap_kernel
    receiving and sending on port 21200
    existence check for user PD3ADM returned true.
    inserted account (***ADM, S-1-5-21-2072974133-1425365782-667646791-181569, USER) into the accountcache.
    Account sapsdt has ADS path 'WinNT://US5885SPAD/sapsdt'
    existence check for user sapsdt returned true.
    inserted account (sapsdt, S-1-5-21-1572296251-1555274763-1146236042-1004, USER) into the accountcache.
    Password set for account sapsdt.
    Environment variable SAPINST_JRE_HOME set to value 'I:/usr/sap/***/tmp/3/sapinst_exe.10440.1359197818/jre'.
    System call failed. Error 2 (The system cannot find the file specified.
    ) in execution of system call 'ATL::CRegKey::Open' with parameter (hKeyParent, SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\S-1-5-21-1572296251-1555274763-1146236042-1004, 0x20019), line (95) in file (d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcos.hpp), stack trace: sixxbmanagement.cpp: 2573: CSiComponentSet::startGUI()
    syxxbuser.cpp: 92: *** syslib entry point CSyUser::getHomeDirectoryPath(void) const ***
    synxcuser.cpp: 763: CSyPath CSyUserImpl::getHomeDirectory() const
    synxcuser.cpp: 671: CSyUserImpl::getProfileDirectory() const
    d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcos.hpp: 87: CSyRegKey::sap_open(HKEY hKeyParent, const iastring & keyName, REGSAM samDesired)
    Exception thrown near line 95 in file d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcos.hpp
    Stack trace:
    sixxbmanagement.cpp: 2573: CSiComponentSet::startGUI()
    syxxbuser.cpp: 92: *** syslib entry point CSyUser::getHomeDirectoryPath(void) const ***
    synxcuser.cpp: 763: CSyPath CSyUserImpl::getHomeDirectory() const
    synxcuser.cpp: 671: CSyUserImpl::getProfileDirectory() const
    d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcos.hpp: 87: CSyRegKey::sap_open(HKEY hKeyParent, const iastring & keyName, REGSAM samDesired)
    At line 95 file d:\depot\bas\720_rel\bc_720-2_rel\gen\optu\ntamd64\ins\sapinst\impl\src\syslib\synxcos.hpp
    Call stack:
    sixxbmanagement.cpp: 2573: CSiComponentSet::startGUI()
    ======================================
    can someone please help me out for error.
    Thanks in advance

    check user profile in AD, add a path in the user profile Home folder directory of user SAPSDT, restart sapinst.

  • Error while running 'ldifde.exe' to import the schema file

    Hello,
    I'm doing a practical in exchange server. I have two servers, First one is the domain controller it's a Server 2012 R2 and the Second one is the server planing to install exchange 2010. it has server 2008 R2. My issue is when i'm trying to setup Exchange
    Server 2010 it comes error while installing "error while running 'ldifde.exe' to import the schema file" I tried to fix but i couldn't. Please if anyone know about this error give me a solution. 
    Regards.
    Ashane Deshapriya ( MCP )

    Can you run these commands from an elevated powershell and try to install exchange. 
    Import-Module ServerManager
    Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart
    If that also fails please post the error.
    Thanks, MAS
    Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

  • Cannot overcome Exchange Server 2013 Install Error - "There was an error while running 'ldifde.exe' to import the schema file

    Hello,
    I am attempting to install Exchange 2013 on to a 2008R2 Server on a domain running 2008R2 DC's.  I have worked every error resolution I can find, but I can't get past this error.
    Error:
    The following error was generated when "$error.Clear();
    install-ExchangeSchema -LdapFileName ($roleInstallPath + "Setup\Data\"+$RoleSchemaPrefix + "schema27.ldf")
    " was run: "There was an error while running 'ldifde.exe' to import the schema file 'C:\Windows\Temp\ExchangeSetup\Setup\Data\schema27.ldf'. The error code is: 8224.
    Any assistance is appreciated.

    Are you running the installation from an ISO-file?
    If so, then copy the files (preferably
    Exchange 2013 w. SP1) to the local disk
    and run the install with elevated privileges.
    Martina Miskovic

  • Error while running clustersetup.exe

    Hi,
    Can somebody please help me on installing Oracle9i RAC.
    I have 2 nodes ( Dell poweredge 6300 with Windows 2003 Advance server ). I have already configured public and private ip. Also, i am able to ping private and public ips from both the nodes. The storage is also configured.
    I am running clustersetup.exe from pre_install folder. The screen where it asks for pulic and private names , the nodes are not automatically displayed. I have to manually key in the pulic/private names. In the end the cluster setup fails with following error
    Unexpected signal : Exception_Access_violation at pc = ...
    Finally, i checked the required files are already copied on windows\system32\osd9i folder on both nodes. The registry entry is also updated under hkey_local\software\oracle\osd9i. But, OracleCMservice9i , OracleOjectService and OracleClusterVolumeService services are not created.
    Can someody please help me resolve this.
    Thanks in Advance
    Regargds
    -Firoz

    Did you add "D:\jdk1.4\bin" to the end of the Path variable? Perhaps the OS is finding another java.exe before it finds the one in d:\jdk1.4\bin. Try putting "D:\jdk1.4\bin;" at the start of the Path variable.

Maybe you are looking for

  • Official carrier of my iphone

    Hi guys, if I would like to know to which carrier is my iphone locked to, how can I know such thing?

  • Unzipping an archive file-permission denied

    Each time I try to unzip (with the system "Archive Utility") a file in an external drive i get an error message. "operation can not be opened, permission denied" I have just repaired permissions and verified in my SYS HDD without success. Any ideas h

  • Broker cleanup on startup/shutdown

    Looking for some details on observed behaviour with the 3.6 Broker. We've been seeing some odd stuff in our production broker this week -- old transactions (using imqcmd list txn) that we can't get rid of, "phantom" messages in queues which just hang

  • Error: 16 when I try to launch after install Photoshop CS6

    Hi. I had a problem in my MacBook Pro (something to do with permissions) and had to wipe out the entire hard drive and reinstall everything from Time Machine Back Ups. Everything seems to be running again, except Photoshop CS6, which I had just purch

  • How SAP posts transactions

    Hi, I need to understand how SAP posts transactions (posting logic) that ultimately end up in the trial balance (FMUSFGA table).  I figure developers will probably know this. I need to know the fields (and tables) that together govern how SAP posts t