Cannot change table-name in persistent.xml

I've successful deployed a Entity EJB on "SAP Enterprise Portal 6.0 SP4 NetWeaver Developer Sneak Preview"
After changing the Table Name in persistent.xml and re-deploying the new EAR, the Entity EJB still writes to the old table.
How can I get SAP Web AS to accept the new persistent.xml/persistent-ejb-map/entity-beans/entity-bean/table-name entry ?
I've already tried:
1) Re-deploy EAR and re-boot the server
2) Delete all old copies of EAR directories and temporary files, reboot and re-deploy.
Note: Expanding new EAR confirms that persistent.xml/table-name has been updated on the SAP Web AS.  However, EJB still writes to the old table.
Alton

In Web AS 6.40 the application data is stored in the database, therefore it is restored even if you delete the folders in the file system.
To undeploy the application, you can use the Deploy Service runtime in Visual Administrator. Start the Visual Administrator using the <i>go</i> script file in <drive>:\usr\sap\<SID>\JC00\j2ee\admin. Then expand the <i>Services</i> tree under the server node, and choose <i>Deploy</i>. On the right-hand side of the screen switch to <i>Application</i> view, select your application, and choose <i>Remove</i>.
Zornitsa

Similar Messages

  • How can I change the name of the XML file which is submitted by mail?

    Hello Everybody,
    If I submit my pdf file as XML
    I will get something like this:
    MyFile.PDF -> submit as XML -> MyFile_data.XML
    My problem is with the _data at the end of the file name -> this addition is coming from the windows logon language,
    I know that because if the windows logon is in spanish I get the addition _datos for example: MyFile_datos.XML
    Is there a way to change the name of the xml file for example : MyFile.XML
    Thank you all in advance,
    Eran

    Hello Uti,
    I found out it is something with the adobe reader installation.
    If it is in English the suffix is _data
    If it is in Spanish the suffix is _datos
    If it is in Hebrew the suffix is _נתונים
    So Now I think i will have to open OSS for this issue.
    Thank you so much for your reply - I thought i was the only one with this problem...
    Best Regards,
    Eran

  • CHANGING TABLE NAME

    What is the SQL command for changing table name? OR is there any sequence of commands for it.
    Thanks
    null

    ALTER TABLE name_A RENAME TO name_B ;
    (Oracle 8 SQL Reference, p. 4-131)
    null

  • How to pass the table name dynamically in xml parsing

    Hi All,
    I have created one procedure for parsing xml file which is working perfectly.
    FORALL i IN t_tab.first .. t_tab.last
             INSERT INTO Test_AP VALUES t_tab(i);Now I want to put the table name dynamically+. For that I have added one query and modify above code as follow:-
    I have already declare dml_str varchar2(800) in declaration part.
    Query is as follows:-
    select table_name into tab_name from VERSION_DETAILS where SUBVERSION_NO=abc;  -- here abc is variable name which contains values.
    FORALL i IN t_tab.first .. t_tab.last
              dml_str := 'INSERT INTO ' || tab_name || ' values :vals';
              EXECUTE IMMEDIATE dml_str USING t_tab(i);But it's not working. How I will resolve this or through which way I achieved the intended results. Anyone can guide me on this matter.
    Thanks in advance for your help...

    Hi,
    But it's not working.Don't you think it would help to give the error message?
    Put the assignment before FORALL.
    FORALL only accepts one subsequent DML statement (static or dynamic SQL) :
    dml_str := 'INSERT INTO ' || tab_name || ' values :vals';
    FORALL i IN t_tab.first .. t_tab.last          
    EXECUTE IMMEDIATE dml_str USING t_tab(i);

  • HT2497 Airport is not recognizing my wireless network because my wireless network has the same name as another apartment in my builing.  I cannot change the name because my room mate controls it, is there any way I can make it find my wireless network?

    It used to be that the other apartment with the same name didn't have theirs password protected so even though only one or the other would show up, I could always get onto one.  Now, they have password protected theirs and it seems to be that 100% of the time only theirs shows up which I only can tell because it says "invalid password" when I try to connect to the Internet.
    I have asked my room mate to just change the name of the network but she is really slow to do anything about it and I need to be able to get the internet at home and the internet is in her and set up through her computer so I really don't have any way of being the one to just go in and fix it myself.
    Is there any other way to make Airport recognize that there are two different networks with the same way so it will find mine?  I feel like I have tried everything including mannually typing in the name of my network and typing my password and it still just says "invalid password."  I have also double checked that I was typing in the correct password and I am.  My room mate is not having any problems accessing the Internet so I know the problem is not with our connection (she also has a Mac, almost the same model as me, I have a MacBook Pro purchased in 2011).  I am also able to connect to the Internet on my Mac at coffee shops and the library so I know that the problem is not my computer or my wireless connection so I'm pretty sure it is just that Airport is somehow only recognizing one of the two "WLAN" networks
    Any help???!

    Hi - you can do what you want to do with AirPlay from your iPhone - but unfortunately it is not as easy as the people in the Apple store told you - your first problem is that you have a non Apple router - you cannot extend a non Apple router wirelessly with the Express - you can only join the network and connect an ethernet device to it - you can however connect via ethernet and have it create a wireless network of its' own - you can set this up from your iPhone or the XP - but this is a complicated setup and would involve many different discussion areas of this forum - therefore I would suggest that you use your 90 days of support and consult directly with Apple to do this - go to this link - http://www.apple.com/support/contact/

  • Cannot change short name of computer in Workgroup Manager

    When a computer is bound to Open Directory on the client side I cannot change the short name of the computer. If the computer is added through Workgroup Manager I do not have this problem. When I try to change the name it reverts back to the old name and sometimes adds a .local at the end of it, but the new name I choose is displayed on the left side. When I log out and log back in the name on the left side reverts back to the old name.
    Could it be the way I am naming the computers? I am using dept-username.location as a way to name all computers. Why does this problem only occur on computers that have been bound through the LDAPv3 service on the workstation?

    I can't comment for sure on this one; but my educated guess may be that you're causing problems with your DNS (or DHCP) by specifying an extra dot in the name - Although I can't say for certain as my OD doesn't run my DNS.
    Try using dept-username-location.domain.local instead of dept-username.location.domain.local.
    Have you checked the console output to see if any errors are being returned?
    -Kogen

  • Change table name on fly

    Guys I have a common function that I want to use for many different table.I believe the only alternative is EXECUTE IMMEDIATE ... statements so that I can change the table name while execution.Do you think I am following the right approach or is there a better way to deal with this.
    thx
    m

    Frank I have say 10,000 records in a employee staging table .And I have to say do
    EMP CODE validation
    DATE VAKIDATION
    AGE VALIDATION
    SEX VALIDATION.
    What I do is I do each validation in one go rather than having a seperate routine.
    execute immediate
    ' insert into submission_error ' ||
    ' (submission_error_id, ' ||
    ' submission_id, ' ||
    ' error_id, ' ||
    ' submitted_value, ' ||
    ' record_id) ' ||
    ' select ' ||
    ' submission_error_seq.nextval, ' ||
    n_SubmissionId || ', ' ||
    ' 830, ' ||
    ' 40, ' ||
    ' s.emp_code, ' ||
    ' s.record_id ' ||
    ' from ' || s_EmpTableName || ' s ' ||
    ' where ' ||
    ' s.submission_id = ' || n_SubmissionId ||
    ' and ' ||
    ' trim(s.emp_code) is not null ';
    similarly other validation.This is faster.
    Hence I need to change the table name ...

  • How to change Table Name

    hi
    i have created a Z table, in my development server,
    can i now change the name of the table, is it possible.
    abhishek suppal

    you have to copy it.
    from se11
    regards
    how many table entries it have
    if too much then create small program to download from original table and upload in new one.
    Message was edited by: Surpreet Singh Bal

  • How to change table name after creating page and application

    Hi HTMLDB Team,
    i have created a application with page where the region use master detail form with table name emp.Now after developing the page and the application i want to change the table from emp to emp2 where emp2 is the table with same structure of existing emp and same field properties.How can i edit the table as emp2 ?
    Thanks in advance,
    Cheers,
    koushik

    Koushik,
    Depending on the amount of customizations that you did, it may be easier to use the wizard to re-create the master-detail form & report.
    If you still want to give it a go:
    Assuming that you created the 2-page Master Detail report & form:
    On the first page, you will have to chage the SQL to reflect the new table name. Once you do that, you'll have to re-create the link on the EMPID column.
    On the second page, you'll need to do some more work. You'll have to change both Page Rendering Processes: Fetch Row from EMP and Get Next or Previous Primary Key. You'll then need to change the Page Processing Process: Process Row of EMP. Also, ensure that you have a proper Foreign Key relationship between EMP2 and DEPT (or your detail table).
    Thanks,
    - Scott -

  • HELP! Suddenly cannot change file names..

    Last night after a brief power cut I found, inevitably, I had lost a photoshop image I hadn't saved, but everything else seemed OK. To be sure I checked Disk Utility. The HD was OK but some odd issues appeared in permissions which I told to repair. This then said all OK.
    Whether my present problem is related to the power cut or repairing permissions I don't know, but -
    Now I cannot change file titles. If I click on an icon title to bring up the normally re-typeable title pane, and try, nothing happens. I'm stuck with the existing name. Is there a simple way of rectifying this?
    Guidance please........
    Intel iMac 24" 2.16Ghz 2GB   Mac OS X (10.4.10)   G4 OS9

    Ooops... I just did a Restart and the title function works OK again! But why did it lose its functionality last time?

  • How to change the name of an XML data element in link editor?

    Hi,
    Is it possible to change the name of a data element dynamically while doing the assignment in the link editor?
    Something like Transaction.ReceiveXML{/Rowsets/Row/Name1 (name="Name2")}?
    Regards,
    V M.

    Hi VM,
    in the link editor you can use the Dynamic Link (see [Expression Editor|http://help.sap.com/saphelp_mii121/helpdata/EN/45/b89adfaf1447f7e10000000a114a6b/frameset.htm]).
    With the dynamic link, you can enclose the property that contains the value with "#", which makes MII evaluate the value rather than use the property name. In your example, it looks something like this:
    ReceiveXML{/Rowsets/Row[name='#MyProperty#']}
    Hope this helps.
    Michael
    Edited by: Michael Otto on Oct 27, 2010 8:09 AM

  • BEx Brodcaster for Workbook - Cannot change the name of attachment file.

    Dear All Experts,
    I am using the BEx Broadcaster to distribute report of workbook via email. The name of attchament file in email is the technical of workbook. I want change the name of attchment file and found this thread
    [Broadcasting Workbook - Change attachment filename|Broadcasting Workbook - Change attachment filename] that reference to method in background process. Can I create customize program or method to change the name of file.
    Thank you and really appreciate your help.
    Zilla D.

    Hello Zilla,
    By SAP methods, this is not possible. There is no way to do that. May you can suggest it on our Community of Innovation. See note 11.
    This is not only your concern. Some customers already request this functionallity.
    Best Regards,
    Edward John

  • Run report from forms - Cannot change file name in report node

    I am running a report (9i) from forms (9i) and I changed the name of the report in the filename field in the report node (in object navigator).
    I noticed that I get the error FRM-41214 on the RUN_REPORT_OBJECT line when I run the form, if I've changed the filename from what it originally was. e.g. It was originally rep44.rdf and I changed it to rep55.rdf, but I get this error unless I keep the rep44.rdf filename. Why? Is there somewhere else I should change this filename?

    To view the reports queue open this URL:
    http://<server>:<port>/reports/rwservlet/showjobs?server=<repserver>
    Also, try running the report stand alone, not from Forms.
    http://<server>:<port>/reports/rwservlet?server=<repserver>&report=rep55.rdf&userid=<un>/<pw>@<db>&destype=cache&desformat=PDF

  • Change Table Names in Universe to a Fully Qualified Table Name

    We have implement the HR Rapid Datamart. The table names just have the table. We need programmically to have the table use a fully qualified name. Example Company table needs to read the schema.table name DM.Company. Is there a way to set it in the Custom Parameters section of the Edit connection window to automatically add the schema name to the table name programmically without having to rename the table names in the universe?

    You can add the schema name for all tables in one pass if you select all of them (press the CTRL key while selecting them) and them go to the properties window and type in the schema name in the owner field.
    Regards,
    Stratos

  • Reminder - cannot change list name

    Quote from help file:
    "Update or delete reminders:
    Double-click the reminder’s name, enter a new name, and then press Return"
    Following this instruction will not edit the name ! what's wrong ??

    On the right side of the Reminder there is what looks like an i when you move the curser there. Open the Reminder and you can change the name there by highlighting the name at the top.

Maybe you are looking for