Is it possible to run Ard File on 64 bit OS

Hello,
I have Created & Compiled my addOn source code on to a 32 bit OS and also created an ard file which is running successfully
on Win XP & Windows Server - 2003 . But While installing the AddOn on Windows Server - 2008 the System is giving an error
Message
" An attempt was made to load a program with an incorrect format (Exception from HRESULT: 0x8007000B)".
I am unable to install Addon on 64 bit OS.
Is their any steps i have to do run this addon on 64 bit OS.
Thanks & Regards,
Amit

Link: [Add-on is not working in Vista;

Similar Messages

  • Is it possible to run OBIEE on linux 64 bit mchine with oracle 64 bit

    Is it possible to run OBIEE 10.1.3.4.0 on linux 64 bit machine with oracle 64 bit(10.2.0.1.0) installed
    Thanks in Advance

    Yes, assuming your hardware has the supported CPUs. OBIEE binaries are 32 bits and requires 32 bits OCI libraries to connect Oracle DBs. See the OBIEE [System Requirements and Supported Platforms|http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10417.pdf] for more information.

  • Is it possible to run .sql files in oracle

    Hi
    I have a .sql file which contains the scripts of the tables .Is it possible for me to run the .sql file in oracle or will i have to run the scripts of each tables separately becoz there is about 240 table scripts in that single .sql file. In mysql by giving " \.filename.sql " the whole scripts in the .sql file will get executed .Is there any thing like this in oracle9i.Also i want to know how to make a dump file in oracle and to run that?
    Thanking you in advance

    Hi
    I did the way u said the whole script file is running but the execution of the script is not happening. The below is a part of script but the table creation is not happening at the end of each table script
    5946 drop table lms_class_permission;
    5947 CREATE TABLE lms_class_permission (
    5948 pk_permission_id NUMBER(11) NOT NULL ,
    5949 fk_class_Id NUMBER(11) default NULL,
    5950 fkSysGroupId NUMBER(11) default NULL,
    5951 perm NUMBER(11) default '0',
    5952 CONSTRAINT pk_permission_id_lms_class PRIMARY KEY (pk_permission_id),
    5953 CONSTRAINT uk_lms_class_permission UNIQUE (fk_class_Id,fkSysGroupId),
    5954 CONSTRAINT fk_lms_Class_Permission_1 FOREIGN KEY (fk_class_Id) REFERENCES lms_class (pk_class
    5955 CONSTRAINT fk_lms_Class_Permission_2 FOREIGN KEY (fkSysGroupId) REFERENCES t_system_groups (g
    5956 );
    5957 create index fk_class_Id_lms_class_perm on lms_class_permission (fk_class_Id);
    5958 create index fkSysGroupId on lms_class_permission (fkSysGroupId);
    5959 CREATE SEQUENCE lms_class_permission_SEQ INCREMENT BY 1 START WITH 1 MAXVALUE 2147483647 NO
    5960 CREATE OR REPLACE TRIGGER TR_lms_class_permission_BI
    5961 BEFORE INSERT
    5962 ON lms_class_permission
    5963 REFERENCING NEW AS NEW OLD AS OLD
    5964 FOR EACH ROW
    5965 BEGIN
    5966 SELECT lms_class_permission_SEQ.NEXTVAL INTO :NEW.pk_permission_id FROM dual;
    5967 END ;
    5968 drop table lms_contact_us ;
    5969 CREATE TABLE lms_contact_us (
    5970 pkautoid NUMBER(10) not null ,
    5971 user_name VARCHAR2(255) default '0',
    5972 email VARCHAR2(255) default '0',
    5973 subject VARCHAR2(1000),
    5974 message VARCHAR2(1000),
    5975 loginId VARCHAR2(255) default NULL,
    5976 status NUMBER(11) default NULL,
    5977 classId NUMBER(11) default NULL,
    5978 CONSTRAINT pkautoid_lms_contact_us PRIMARY KEY (pkautoid)
    5979 );
    5980 CREATE SEQUENCE lms_contact_us_SEQ INCREMENT BY 1 START WITH 1 MAXVALUE 2147483647 NOCYCLE NO
    5981 CREATE OR REPLACE TRIGGER TR_lms_contact_us_BI
    5982 BEFORE INSERT
    5983 ON lms_contact_us
    5984 REFERENCING NEW AS NEW OLD AS OLD
    5985 FOR EACH ROW
    5986 BEGIN
    5987 SELECT lms_contact_us_SEQ.NEXTVAL INTO :NEW.pkautoid FROM dual;
    5988 END ;
    5989 drop table borland_feedback ;
    5990 CREATE TABLE borland_feedback (
    5991 pkautoid NUMBER(10) not null ,
    5992 FeedTitle VARCHAR2(1000),
    5993 FeedBody VARCHAR2(1000),
    5994 EnteredBy NUMBER(11) default '0',
    5995 FeedStatus NUMBER(11) default '0',
    5996 FeedEnteredDate TIMESTAMP,
    5997 CONSTRAINT pkautoid_borland_feedback PRIMARY KEY (pkautoid)
    5998 );
    5999 CREATE SEQUENCE borland_feedback_SEQ INCREMENT BY 1 START WITH 1 MAXVALUE 2147483647 NOCYCLE
    6000 CREATE OR REPLACE TRIGGER TR_borland_feedback_BI
    6001 BEFORE INSERT
    6002 ON borland_feedback
    6003 REFERENCING NEW AS NEW OLD AS OLD
    6004 FOR EACH ROW
    6005 BEGIN
    6006 SELECT borland_feedback_SEQ.NEXTVAL INTO :NEW.pkautoid FROM dual;
    6007 END ;
    Thanking you advance
    dinny

  • ERROR ORA-30200 IN RUNNING CREATION FILE - Forms [32 Bit]

    Running a process of Forms [32 Bit] Version 6.0.5.35.3 get the error ORA-30200 while running the same process from a different computer file creation occurs in a correct way (This is a client-server)
    The form uses the TEXT_IO and specifically the following functions
    TEXT_IO.FILE_TYPE;
    TEXT_IO.FOPEN (FILE, 'W');
    TEXT_IO.PUT_LINE (OUT_FILE CR);
    TEXT_IO.FCLOSE (OUT_FILE);
    At this point I believe that the problem is not in form but more in the PC used for the implementation thereof; Can you help on what to monitor and especially if there are requirements for the client so that TEXT_IO functions properly.
    Thank you very much ...

    Daniele,
    What is the format of the file name you are creating? I did a quick Google search and the common thread I found was a reference to a file name used "Long File Names" instead of the old 8.3 format. It is also possible that this error could result from the user not having permission to write to the file location.
    Craig...

  • Running exe files from java applications

    Hello All,
    Is it possible to run executable files from java applications?
    I need to run an exe file on the client from the server machine, the exe could reside on either the server or any other machine on the LAN. Is it possible to specify the path of where the exe resides, and run it on a client machine?

    HI,
    I tried to launch a MS Word application using runtime.exec but it gives me some problem
    The foll. code to launch a txt file using notepad works.
    Runtime rt = Runtime.getRuntime();
    String[] callAndArgs = {"notepad.exe","C:\\coo7\\wizard.txt"};
    Process child = rt.exec(callAndArgs);
    However, oif I try to launch a MS Word application, it asks for the entire path of WINWORD.exe, (unlike just specifying notepad.exe as the first argument in String[] callAndArgs) and this can vary from one machine to another.. how do I get around this?
    The foll. code snippet works but the complete path of where WINWORD.exe might be installed on any machine, is not fixed:-(
    Runtime rt = Runtime.getRuntime();
    String[] callAndArgs = {"C:\\Program Files\\Office\\Office10\\WINWORD.exe","C:\\coo7\\wizard.doc"};
    Process child = rt.exec(callAndArgs);
    Any idea/suggestions pls..

  • Is it possible to run a command prompt(or DOS Command) through flash and run a Activex(.OCX) file from flash

    Hi all
        Is it possible to run a command prompt(or DOS Command) through flash.If it possible please guide me to do that throug AS 3.0.
       and
    Is it Possible to run a activex (.OCX) file from flash. If it is so please guide me the way to do it
    Thanks and Advance
    Sankar.M.S

    Or create a desktop shortcut (in Windows) or an application launcher ( in Linux GUI).

  • Is it possible to run a jar file in another program???

    Hello members,
    i am sanketh. is it possible to run a jar file in another program.
    if possible plz reply with an example or good links to go thru.

    What do you mean "run a jar file in another program"? It's not very clear.

  • Is it possible to run a command prompt(or DOS Command)  and Activex File(.OCX)

    Hi all
    Is it possible to run a command prompt(or DOS Command) through flash.If it possible please guide me to do that throug as 2.0. and is it possible to run a Activex File(.OCX) through flash.
    Thanks and Regards
    Sankar.M.S

    Or create a desktop shortcut (in Windows) or an application launcher ( in Linux GUI).

  • Problem in creation of .ard file

    Hi Experts
    I am developing .ard file for a add-on using B1DE1.5 in SAP 2007B PL08 . Visual Studio is 2008. I have created a add-on . It was running successfully. Then I select File->Add-> New Project.    Here I select SAP B1 Add-OnInstaller .Net Wizard
    This wizard Ask for file .exe, UI DLL, DI DLL and Wizard DLL. I add all these files. It finished successfully.  I Rebuild this project . then I search the .ard file in BIN folder but could not find anywhere. Can anyone suggest me for this problem.
    Regards
    Gorge

    Hi Gorge,
    In the same folder as bin folder, you should find a AddOnRegDataGenFile folder. In this, you'll find a .bat file which you need to run in order to generate the .ard file.
    Regards,
    Vítor Vieira

  • Creation of  .ard file

    hi all,
    Can any body Suggest me regarding my .ard file creation . i am doing like this to create .ard file ie E:\Program Files\SAP\SAP Business One SDK\Tools\AddOnRegDataGen i am going this  and creating my .ard file r else any other way to Create .ard file iam following for creation of .ard file other process for this ie when installation wizard running that coding Bin folder D:\Anoop\DEMO\B1AddOnInstallerNET1\B1AddOnInstallerNET1\AddOnRegDataGenFile in one Batch file is their but when iam running this Batch file i am n't getting the .ard file Can u plzz suggest me regarding Creationg this process how to approach this Can u solve this problem regarding this.
    Regards
    ANAND

    Anand,
    you can download the Business One Development Tools here:
    SAP Business One Tools [original link is broken]
    Also, there are recorded Business One Expert Sessions on SDN that demo the usage of our tools. Take a look at them and let me know if they help you understand this process better:
    Recording 1:
    https://www.sdn.sap.com/irj/sdn/softwaredownload?download=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/business_packages/a1-8-4/business_one_live_expert_sessions/on_sdn_articles_and_tools_for_add-on_development.zip
    You can go to segment "Demo 1", which addresses this topic.
    You can download the presentation for this WebEx here:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/83138994-0e01-0010-428f-ae6e0af49449
    Recording 2 (no in English, but still very good illustrating the creation of an Add-On):
    https://www.sdn.sap.com/irj/sdn/softwaredownload?download=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/business_packages/a1-8-4/business_one_live_expert_sessions/b1de_b1te_add-ons_development_and_certification.zip
    You can download the presentation for this WebEx here:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/92af3198-0e01-0010-27aa-8859890672c9
    If this helps answer your questions, please go ahead and close this thread.
    Torsten Budesheim

  • Is it possible to run Posture using ISE 1.2 without NAC Agent provisioning?

    Is it possible to run Posture using ISE 1.2 without NAC Agent provisioning?
    -My customer does not want to push NAC Agent installation on BYOD type of computers (non-managed by the company computers).
    -The requirement is to check for posture only company owned wired, wireless, and VPN connected Windows computers. The rest of the endpoints should be considered as posture incompliant, and limited access to the network should be allowed.
    -No certificates are used.
    -I’ve configured the required posture check, and it all works fine if a PC has NAC Agent manually installed (without ISE Client Provisioning). However, when I use a PC without NAC Agent, it is redirected to Client Provisioning Portal and is stuck there as Client Provisioning is deliberately not configured in ISE.
    -If I remove Posture Remediation Authorization Profile that does URL redirect, the posture does not work.
    -For now I'm testing it on wired endpoints.
    Is there a way to configure ISE to fulfill the listed above requirements?
    Any ideas would be appreciated.
    Thanks,
    Val Rodionov

    Everyone who finds reads this article,
    I'm answering my own quesiton "Is it possible to run Posture using ISE 1.2 without NAC Agent provisioning?"
    The answer is Yes.
    After doing research and configuration testing I came up with a solution, and it works fine for wired and VPN connections. I expect it to work on wireless endpoints as well.
    ISE configuration:
    Posture General Settings - Default Posture Status = NonCompliant
    Client Provisioning Policy - no rules defined
    Posture Policy - configured per requirements
    Client Provisioning (under Administration > Settings) - Enable Provisioning = Enable (it was disabled in my first test)
    Authorization Policies configured as regular posture policies
    The result:
    After successful dot1x authentication posture redirect happens. If the PC does not have NAC Agent preinstalled, the browser is redirected to Client Provisioning Portal and a default ISE message is displayed (ISE is not able to apply and access policy... wait one minute and try to connect again...). At the same time, the endpoint is assigned NonCompliant posture status and proper authorization policy is applied. This is what I wanted to achieve.
    If NAC Agent was preinstalled on the PC, after successful dot1x authentication the NAC Agent pops up and performs posture check. If posture is successful, posture compliant authorization policy is applied. If posture check fails, NonCompliant posture status is assigned and posture non-compliant authorization policy is applied. Which is the expected and needed result.
    The only part that is not perfect it the message displayed to the end-user when posture is about to fail. I did not find a place to change the text of that message. I might need to open TAC case, so this file can be manually found and edited from CLI (root access).
    Best,
    Val Rodionov

  • Is it possible to outline multiple files in one go?

    Hi all,
    I'm new to this platform, so forgive me if I haven't posted this question in the right place. I've gone through Google as well as the FAQ section and couldn't find an answer to the question above.
    Here are some details:
    I've got 75 files that I need to outline. I know from Photoshop and other software that it is possible to create a process to resize images, for example. Is there something similar for Illustrator CS5? I've played around with Actions, but couldn't figure out if (and if, how) it is possible to get all files outlined in one go.
    Any answers are much appreciated.
    Thanks!

    do you mean create outlines from paths or text or what?
    you could make an action select all, then object > path > outline stroke, or type > create outlines (or both), then use the batch options (bottom of the drop-down menu for the Actions panel) to pick a folder to run the action on.
    maybe the batch option is all you're looking for here, not sure.

  • How do I save a running sequence file

    Part of my testing requires a large number of variables to be passed to and from the UUT within TestStand. I can store some of these variables in the station globals, but I'd like the option to store others in the sequence files at run time and save them to disk (save the sequence file) at the end of the test. I can create variables in the station globals and commit the globals to disk just fine (LabVIEW vi's using the TestStand API). However, I cannot figure out how to do the same thing with a sequence file. My code is able to create and populate the locals variables with no problem, but I cannot save the running sequence file to disk with the new locals (or file globals) intact (they disappear when the sequence ends.) The reason I want to save the sequence file is to avoid manually entering all these variables into each sequence file locals list.
    So, I think the questions are:
    How do I make the new locals or file globals a part of the running sequence file?
    How do I save the sequence file to disk before it stops running?
    I can increment the change count on the file. I have figured out two or three ways to save the file while it's running without errors (although I doubt it's actually doing anything.) I'm using the TestStand API in LabVIEW vi's to pull this off and cannot find the functions I'm looking for.
    Sorry if this is rambling, it's kind of hard to describe.

    Hi Lars,
    The reason that we can't save the local variables created during
    runtime is because TestStand creates a runtime copy of the variables
    when the sequence starts. After the sequence is finished executing,
    this copy is discarded. The reason behind this is that TestStand allows
    for a single sequence to have multiple executions at the same time, and
    each instance gets its own runtime copy of the local variables. If new
    locals could be saved to the actual sequence file in memory, it could
    cause major problems for other execution threads of that particular
    .seq file.
    You can use the API to add variables to the actual file using
    GetSequenceFileEx and incrementing the Change Count, or create a
    separate sequence that modifies another sequence file, but adding these
    locals to the sequence file from itself isn't possible.
    Hope this helps Lars,
    Have a good one.
    Dan Weiland
    Applications Engineer
    National Instruments
    www.ni.com/support
    Dan Weiland

  • Is it possible to run a java application within a web browser?

    Hello everyone here! I have a question about running a java application within a web browser and I would appreciate it very much if anyone here can give me some answers.
    I have a standalone java application written with AWT. Basically this free application lets users to select spectral lines from a big file based on some criteria and plot those selected lines. Yes, it is a very simple application. Now I want to run this application within a web browser so that users don't need to download the application from the ftp site and thus don't need to install in their machine. Is it possible to run this application within browser? If yes, can we get the same plotting function as we run the application separately and where should I start out?
    Thanks in advance!
    kuilian

    Please see the signed applet discussion group for details of how to avoid the applet security restrictions. You can sign the applet, or use the policy file containing {AllPermission} for testing purposes (though not suitable for widespread deployment).
    Regards
    Matthew

  • Is it possible to deploy .fmx files to different directories on the 10g OAS

    All,
    I have 10g R2 App Server (10.1.2.0.2) with a BI & Forms Middle Tier.
    Currently, all of my .fmx files are placed into the middle tier's $ORACLE_HOME/forms directory.
    I use a URL similar to the following to run the forms in a browser:
    http://machinename.domain/forms/frmservlet?form=test.fmx
    I now have some additional applications that are coming online. Some of the .fmx files for the new application are named identically to .fmx files of my current application.
    So I would like to be able to segregate all .fmx files related to each application into their own directories on the 10g OAS. I've been poking around in this form and on Metalink and so far, have not found any solution.
    I've seen references to using the FORMS_PATH environment variable that that is not going to work for us.
    For example, let's say that I have two different forms applications that have a file named frame.fmx. The frame.fmx form is completely different between these applications.
    I would like to be able to put all of application 1's files into $ORACLE_HOME/forms/app1 and all of application 2's .fmx files into $ORACLE_HOME/forms/app2.
    Is this possible when running forms on the web? What URL would I use to invoke the frame.fmx file in the app2 or the app1 sub-directory? Is there such a thing as virtual directories in forms?
    Any help is greatly appreciated.
    Cheers
    John S.

    Make different config's in your formsweb.cfg which include different default.env files
    The url will then be something like
    http://machinename.domain/forms/frmservlet?config=app1&form=test.fmx
    http://machinename.domain/forms/frmservlet?config=app2&form=test.fmx
    Where application1 and application2 are config definitions in your formsweb.cfg file.
    [app1]
    envfile=default_app1.env
    [app2]
    envfile=default_app2.env
    In the different env files, use diffent FORMS_PATH environment variables.
    default_app1.env: FORMS_PATH=$ORACLE_HOME/forms/app1
    default_app2.env: FORMS_PATH=$ORACLE_HOME/forms/app2

Maybe you are looking for

  • Open Captivate 6 projects with Captivate 7 error - loading video

    Hi! I have several projects created by Captivate 6 and now we upgrade to captivate 7. When I tried to open it with Captivate 7 a Loading video window appears several times, the project is opened but I cannot to do anything because these loading video

  • Modify unbounded task flow for login process

    I wonder if I can use the unbounded task flow for login process. I have a login page, a home page and a change password page. As per the requirements, I need to show the login page first, if user password is expired, I need to show change password pa

  • What is wrong with this elapsed time counter?

    I have been using this simple counter for a while. After unbundling the timestamp - there is always a '19' in the hours indicator. At first I was simply subtracting '19' and it worked fine. Then I ran a program for about 5 hours and the hour display

  • Schedule broadcasting issue after SP 17

    Hi, When I schedule a broadcasting in BI, users are not receiving the report via email. We just apllied SP 17 and before that broacasting was working fine. Please you help me to resolve this issue? Thanks.

  • Need to know the steps to setup 'Configurable Search' in PeopleSoft CRM 8.8

    Hi, Could you please let me know the steps to setup 'Configurable Search' in PeopleSoft CRM 8.8(PeopleTools 8.48)? Thanks