How to change table RSRPARAMETRIZA manually

Dear friend,
I would like to schedule some of our report using broadcast.
to change variables value dynamically we create variants and
now i want to change the values of those variabels using program.
For this purpose i followign this link.
Re: abap program to maintain variants in RSRPARAMETRIZA
I wrote a program but its giving me error
Caused by: com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XML declaration must be in lower case
I am unables to understand why its doing like this.
Any help will be highly appricated.
Regards
Malik

You are right Danny i also want same what you are doing.
But BI 7 is not update table RSRVARIANT.
BI 7 update table RSRPARAMETRIZA and all the values of this table in XML format.
any how i solved the problem by this link.
http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f048c590-31a4-2c10-8599-bd01fabb93d4
Thanks for your help danny.
Regards
Malik

Similar Messages

  • How to change table of content font in captivate 6

    Hi There,
    Can somebody please suggest me how to change table of Content Text font English to Arabic in Captivate 6 and which font supports Arabic language.
    Please refer below image, highlighted text font should be changed.
    Looking forward for help.
    Thanks,
    Srikanth

    The weird sliding navigation is Apples pride and joy!
    That TOC allows you to slide between chapters, sections and pages.
    iBooks Authjor was designed to do what it does and what Apple wanted it to do.
    Some things can be changed during the books production,  but the " weird navigation"  is not something you can change to do what you want.
    iBooks Author is does not produce ePubs.. at least not as "ePub" is known from Pages, inDesign etc,.
    If you want what is available in ePubs.. then iBooks Author is not the application to produce it.
    You could drag a section page above chapter on and create an index type page using book marks for links - but whats the point? 
    People using iPads and familiar with iBooksAuthors special way of book presentation.. are quite happy its so easy to use.

  • How to change table content ...

    Hi All,
    Pl. give us soltution for the following :
    1. How to change table content of standard table ?
        (eg. mara content not from MM02.).
    2. How to add field in standard table ?
    waiting reply.
    Yusuf

    Hi  Yusuf,
    Modifying a standard table through a program using SQL statements is highly risky. However if u wish to do it programatically and not through MM02, you have the option of using BAPIs.
    Goto transaction BAPI and through the application hirarchy, goto Material Management section. There i am sure u will find some BAPIs to modify material master and they are the most stable mode of update programatically.
    Hope this helps.
    Regards,
    Aditya

  • How to change Table Cell Field Type Dynamically?

    Hi All,
    I am fetching some news data from backend DB and displaying them in a WD Table. Now one News Item may or may not have a URL behind it. If I find the URL as null then I want to display the news as simple TextView otherwise as LinkToUrl. How can I change this input type dynamically for each row in the runtime?
    If I use LinkToUrl all the time then the items which has URL as null gets displayed as normal text, but they are of very faint color and I can not change the text design. Whether if I user TextView I can set some text design like Header2, Header 3 etc.
    Can anybody please help with some code block? My main requirement is how to change the table cell input type dynamically.
    Thanks in Advance.
    Shubhadip

    Hi Shubhadip,
    This is the sample code for creating and adding a table cell editor table dynamically.
    public static void wdDoModifyView
    (IPrivateDynamicTableCreationView wdThis, IPrivateDynamicTableCreationView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
    //@@begin wdDoModifyView
    /*** 1.Create Table **/
    IWDTable table =
    (IWDTable) view.createElement(IWDTable.class, "table1");
    table.setWidth("100%");
    table.setVisibleRowCount(data.length);
    /*** 2.Create nameColumn **/
    IWDTableColumn nameColumn =
    (IWDTableColumn) view.createElement(IWDTableColumn.class, "Name");
    IWDCaption colHeader =
    (IWDCaption) view.createElement(IWDCaption.class, "NameHeader");
    colHeader.setText("–¼‘O");
    nameColumn.setHeader(colHeader);
    IWDTextView nameViewer =
    (IWDTextView) view.createElement(IWDTextView.class, "NameViewer");
    nameViewer.bindText(nameAtt);
    IWDTableCellEditor editor = (IWDTableCellEditor) nameViewer;
    nameColumn.setTableCellEditor(editor);
    table.addColumn(nameColumn);
    IWDTableColumn nationalityColumn =
    (IWDTableColumn) view.createElement(
    IWDTableColumn.class,
    "Nationality");
    IWDTableCellEditor nationalityEditor =
    (IWDTableCellEditor) nationalityViewer;
    nationalityColumn.setTableCellEditor(nationalityEditor);
    table.addColumn(nationalityColumn);
    /** 3. Bind context to table **/
    table.bindDataSource(nodeInfo);
    //@@end
    Bala
    Kindly reward appropriate points.

  • How to change JSESSION ID manually

    Guys,
    i am oracle jdeveloper10x version
    Below code return the coookie NAME as "JSESSIONID".But acutally we are getting different cookies names....But in code we are getting JSESSION ID.
    Cookie[] cookies = req.getCookies();
    for (int i = 0; i < cookies.length; i++) {
    logger.debug(" cookies Name)"+ cookies.getName());
    logger.debug(" cookies Name)"+cookies[i].getValue());}
    this JSESSIONID would hard coded in oc4j.jar.
    Do anyone know how to change the JESSION ID manually to get actual cookie values from http requests.
    How will re-make his code Cookie[] cookies = req.getCookies(); to get the actually cookie names/values from httpreq instaed of JSESSION ID....
    Please help me GUYS
    Thanks
    ABU

    I don't understand your question.
    Why would anybody change the value of JSESSIONID manually? This will break the contract between the client and server. The server uses the id to which client he's talking to.
    You should give us a use case so that we better understand your problem. There is a solution to it (I hope).
    Timo

  • How to change table border color in DW CS6

    I need to know how to change the color of the border around my tables in Dreamweaver CS6. I saw a article on how to change it on http://forums.adobe.com/message/4451812, but i really couldnt follow because im just starting out using dreamweaver and i dont know anything about code. Is there a simple way to change the border color or can you give me a basic step process on how to change the border color in the code?

    Just an FYI, nobody uses Table-based layouts anymore.  It's much better to use CSS for layouts.  Only use tables for tabular data like spreadsheets and charts.
    Dreamweaver has a bunch of pre-built CSS Layouts for you to use as starter pages.  Just go to File > New > Blank page > HTML.  Pick a layout from the 3rd panel and hit Create button.  See screenshot below.
    Nancy O.

  • How to change the plant manually in the order

    Hi All,
           I have created a debit memo for two items in va01 with ref to the service order,for 1 item wrong plant has been triggered.We have created the billing document for two different item,now i have to change the plant of 1 item,so i have deleted the billling documnet of  1 item for which the plant should be changed.
    When i tried to change the plant manually its greyed out,where is the control to change that.
    What is the solution for this issue.
    THX

    Dear Venu,
    The Document that System is refering is basically your Accounting Document, generated as a result of Creation/ Cancellation of Invoice.
    Also, reverse the PGI for the said Item and remove the item from the Delivery Document.
    Afterwards, Consult your FI-Consultant to Clear the Accounting Docs generated as a result of Creation/ Cancellation of the Invoice.
    Once done, you will able to remove and re-enter your item with correct Plant.
    Regards,
    Amit

  • How to change table value set using FND_LOAD

    Hi ,
    I need to change my existing " table valueset " tablename .
    As i know we cont change it from front end if it is created once. but i am trying to create same value set in other instance and uploading it using FND_LOAD .
    Is it Possible ?
    IF yes please guide ?
    I feel greate if any one helps me.
    Regards ,
    Azam.

    Hi,
    You could use FNDLOAD to download the values, and edit the ldt file before uploading it back using FNDLOAD.
    Search My Oracle Support for "FNDLOAD afffload.lct", you should get couple of hits which should be helpful.
    Note: 252853.1 - 11i AOL : How to Load Value Set Values When Using Fndload To Load A Concurrent Program
    Note: 274528.1 - How To Download Single Context Using FNDLOAD For Descriptive Flexfield
    Regards,
    Hussein

  • 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 -

  • How to change table but don't touch SQL using it?

    we have old_table (date, key, value1, value2, value3)
    where we have values on every key for every day
    values are changed very rarely, so we are considering to redesign table to slow changing dimension:
    new_table (date_start, date_end, key, value1, value2, value3)
    where new record with new date_start + date_end + key entry is added only when values are changed
    BUT all SQL which used to query old_table:
    SELECT ...
    from old_table
    where date = date '2010-01-01'
    - will not work anymore!
    We know one straightforward approach - VIEW based multiplication of rows - which will help to use old SQL:
    create table table_new(date_start date, date_end date, key number, value1 number, value2 number, value3 number)
    Table created
    insert into table_new values(date'2010-01-01',date'2010-01-05',1,1,2,3);
    1 row inserted
    insert into table_new values(date'2010-01-06',date'2010-01-15',1,11,22,33);
    1 row inserted
    create or replace view old_table as
    select trunc(date_start)+rn as date_, key, value1, value2, value3
    from table_new tn
    , (select rownum-1 rn from all_tables where rownum < 100) p
    where p.rn <= trunc(date_end-date_start)
    View created
    SELECT *
    from old_table
    where date_ = date '2010-01-01';
    DATE_ KEY VALUE1 VALUE2 VALUE3
    01/01/2010 1 1 2 3
    SELECT *
    from old_table
    where date_ = date '2010-01-10';
    DATE_ KEY VALUE1 VALUE2 VALUE3
    10/01/2010 1 11 22 33
    But we dont believe than it is efficient on rowcount about a million.
    Is there any approach?
    ref cursor, pipelined, something else?
    the only one requirement is - OLD SQL with "where date = date '2010-01-01'" should work unchanged.

    I don't think that helps because it isn't just that there is a different table, but the queries are different. In hindsight, the way to avoid this problem rather than "fix" it is to isolate your queries into packages and then the application is calling the modified (or overloaded?) function or procedure and the impact is minimized.
    If the OP is trying to minimize storage by saving only ranges instead of the data for each and every day, then one solution would be to make the new view generate the values for each day within the range on the fly. (There was a similar question in this forum just this week about generating missing data.) The queries think they are going after the original table because there is in fact a row in the view for each day. But that would (possibly) make sense only if it was storage that was being minimized. I don't think this approach would be as efficient as using the actual date ranges if the data is migrated to such a table. I wasn't clear from the OP what the goal was behind the table change.

  • How to change tables in from  clause dynamically

    Hi,
    I have to add some join conditions in where clause and tables in from clause based on some input parameters and data in other tables.
    How can i achieve this ? I must use procedure/function or dynamic query preparation or any more alternatives?
    Regards,
    Krishna

    Yes, you can use dynamic sql for that.
    But be aware that you'll be needing to concatenate the table names in your FROM-clause, you cannot bind them...
    So you'll be trashing the shared pool.
    Maybe alternative approaches are possible, but you provide too little input for my crystal ball here...

  • How to change table defnition after upgrade from 9 to 10 ?

    after upgrade from 9 to 10, tables ddl still like 9i:
    .................PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255..........
    ................ inndex PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS..........
    Is there a method to convert it all tables to new 10g style without re-create thousands tables then emp/imp one by one?
    Thanks

    What do you mean by "10g style"? Do you want tables to be using ASSM? If that's the case, that's a feature of tablespace itself. So it means that your tables need to be in those tablespace which are having Segment Space management auto set in them.I don't think that there is any automatic package which can do the same on the fly.
    One way ,which may not be very less time consuming but still can help is to convert the segment space management using EM.But again,this does recreate teh tablespace so I don't think that this is any different from exp/imp.
    HTH
    Aman....

  • How to change the limitation of Table name's length?

    The length of table's name or field's name is limited to 30 characters.
    Can I change it? If I want to create a long name table,then how can I do?
    Thanks in advance!

    This is a duplicate of another question
    How to change Table name's length?
    The short answer is no, you cannot.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Dynpro table -dynamically change table header name

    how to change table header name at runtime ?
    for instance, when i bind to a dataNode with this attribute:
    smsid, usrid, crdate, stdate,enddate
    change to
    message_id, user_id, create_date, start_date, end_date  during runtime.

    Hi yzme,
    To change the column header for each field you have to set the [Caption-Header] text value.
    Use this code inside "wdDoModifyView" method.
        //@@begin wdDoModifyView
         IWDCaption smsid_caption = (IWDCaption)view.getElement("smsid_header");
         smsid_caption.setText("message_id");
         IWDCaption usrid_caption = (IWDCaption)view.getElement("usrid_header");
         usrid_caption.setText("user_id");
         IWDCaption crdate_caption = (IWDCaption)view.getElement("crdate_header");
         crdate_caption.setText("create_date");
         IWDCaption stdate_caption = (IWDCaption)view.getElement("stdate_header");
         stdate_caption.setText("start_date");
         IWDCaption enddate_caption = (IWDCaption)view.getElement("enddate_header");
         enddate_caption.setText("end_date ");
            //@@end
    Regards,
    Mithu

Maybe you are looking for

  • Stored Procedure for Zero Price in GRPO

    Hi all,    Can anybody let me know the required stored procedure for restricting zero price in the GRPO transaction . Thanks in advance , Aditya

  • Using a macbook air?

    Can a macbook air and a external drive work well enough to do basic editing in Fcp? Thanks.

  • Dreamweaver Relative Image and Link Issue

    Hi there I have just created a website in Dreamweaver. It previews fine in Firefox but when previewing it in IE neither the images are loading or the internal links working. I think it has something to do with roots or relative linking as links are a

  • Monitor color temperature is switching after launching a CC product

    Hello, i'm running OS X 10.8.5 on a Macbook Pro I didn't change nothing and never play with color profil on my computer Since this morning when i launch Photoshop CC or Illustrator CC color temperature switch automaticly to a cold white during softwa

  • Missing or Offline Images

    Hi; I have about 9000 missing or offline images according to my Lightroom3 software. However, they're not! I can see them in the folders on an external drive where Lightroom says they are not. I'm confused, baffled, fed-up! When I try to reimport the