Table of customisation requests

Hi all ,  when we create customisation request, in which table it get stored?
In any project there are many requests , so when I want to release or transport it to Development or Production client then is there any option to transport it in bulk like when w upload master data through LSMW ?
Bhushan

you have to prepare this before your start with customizing.
you need to create one transport manually and add all your consultants to this transport.
and then you communicate to all consultants that they should add to this transport when they create transport request for the project.
Then you can easily transport it in one go.
But after the fact, you can combine the various transports into one transport, but in this case I dont see much benefit compared to the individual transport.

Similar Messages

  • No fact table at the requested level error.

    I have one dimension
    Account
    Two fact tables
    Threshold and Transaction
    These tables are joined to the Account Dim using Account Number.
    Now when I create an analysis using Account Numbers from all three tables, it says no fact table at the requested level. If I include any other fact from both the fact tables, it populates null. It works right when I create an analysis from one dimension and either of the fact tables.
    Why do we get this error and how else should it be modeled.
    Edited by: 979130 on Dec 29, 2012 12:52 AM

    I'm not sure about your data.. I give couple of options try them out any of one should work.
    Assuming both facts are at same granular: You need to create Logical Fact table in BMM add first fact as source then, open properties wizard and add other fact table.
    Assuming both facts are at Different or Same granular: You need to create Logical Fact table in BMM add first fact and then add 2nd fact as 2nd logical table source and set the content tab for both facts
    Using any of the option you'll be going for metrics and use them in report.
    In general: You need to let BI server let know how data is spread across tables so that BI Server can respond as you expected.
    Hope this helps, Appreciate if you mark as correct/helpful
    Edited by: Srini VEERAVALLI on Dec 29, 2012 12:58 PM

  • Loading XML File in Oracle Tables through Concurrent Request

    I am posting a working program which reads an XML File and loads in Oracle database table through Concurrent Request. Input parameter for this program is file name. I have added directory name ASPEN_DIR as /interface/inbound in ALL_DIRECTORIES table.
    /* This is a sample program reading an input xml file and loads data in Oracle Database table
    This program is executed through concurrent request and it has an input file name
    it also creates a log for reading and inserting records from file and into a table
    CREATE OR REPLACE PACKAGE BODY CBAP_ACCRUENT_XML_PKG AS
    PROCEDURE read_emp_xml_file (errbuf out varchar2,
    retcode out number,
    in_filename in varchar2)
    is
    my_dir varchar2(10) := 'ASPEN_DIR';
    l_bfile BFILE;
    l_clob CLOB;
    l_parser dbms_xmlparser.Parser;
    l_doc dbms_xmldom.DOMDocument;
    l_nl dbms_xmldom.DOMNodeList;
    l_n dbms_xmldom.DOMNode;
    l_temp VARCHAR2(1000);
    v_empno number(10);
    v_ename varchar2(50);
    v_job varchar2(30);
    v_mgr number(10);
    v_hiredate date;
    v_sal number(10);
    v_comm number(10);
    src_csid NUMBER := NLS_CHARSET_ID('UTF8');
    v_read NUMBER(5);
    v_insert NUMBER(5);
    dest_offset INTEGER := 1;
    src_offset INTEGER := 1;
    lang_context INTEGER := dbms_lob.default_lang_ctx;
    warning INTEGER;
    BEGIN
    v_read := 0;
    v_insert := 0;
    l_bfile := BFileName(my_dir, in_filename);
    dbms_lob.createtemporary(l_clob, cache=>FALSE);
    dbms_lob.open(l_bfile, dbms_lob.lob_readonly);
    dbms_lob.loadclobfromfile(l_clob, l_bfile, dbms_lob.getlength(l_bfile), dest_offset,src_offset, src_csid, lang_context, warning);
    dbms_lob.close(l_bfile);
    -- make sure implicit date conversions are performed correctly
    dbms_session.set_nls('NLS_DATE_FORMAT','''DD/MM/RR HH24:MI:SS''');
    -- Create a parser.
    l_parser := dbms_xmlparser.newParser;
    -- Parse the document and create a new DOM document.
    dbms_xmlparser.parseClob(l_parser, l_clob);
    l_doc := dbms_xmlparser.getDocument(l_parser);
    -- Free resources associated with the CLOB and Parser now they are no longer needed.
    dbms_lob.freetemporary(l_clob);
    dbms_xmlparser.freeParser(l_parser);
    -- Get a list of all the nodes in the document using the XPATH syntax.
    l_nl := dbms_xslprocessor.selectNodes(dbms_xmldom.makeNode(l_doc),'/EMPLOYEES/EMP');
    -- Loop through the list and create a new record in a tble collection
    -- for each record.
    FOR cur_emp IN 0 .. dbms_xmldom.getLength(l_nl) - 1 LOOP
    l_n := dbms_xmldom.item(l_nl, cur_emp);
    v_read := v_read + 1;
    -- Use XPATH syntax to assign values to he elements of the collection.
    dbms_xslprocessor.valueOf(l_n,'EMPNO/text()',v_empno);
    dbms_xslprocessor.valueOf(l_n,'ENAME/text()',v_ename);
    dbms_xslprocessor.valueOf(l_n,'JOB/text()',v_job);
    dbms_xslprocessor.valueOf(l_n,'MGR/text()',v_mgr);
    dbms_xslprocessor.valueOf(l_n,'HIREDATE/text()',v_hiredate);
    dbms_xslprocessor.valueOf(l_n,'SAL/text()',v_sal);
    dbms_xslprocessor.valueOf(l_n,'COMM/text()',v_comm);
    insert into emp(empno,ename,job,mgr,hiredate,sal,comm)
    values(v_empno,v_ename,v_job,v_mgr,v_hiredate,v_sal,v_comm);
    v_insert := v_insert + 1;
    END LOOP;
    -- Free any resources associated with the document now it
    -- is no longer needed.
    dbms_xmldom.freeDocument(l_doc);
    --remove file to another directory
    commit;
    fnd_file.put_line(fnd_file.LOG,'Number of Records Read : '||v_read);
    fnd_file.put_line(fnd_file.LOG,'Number of Records Insert : '||v_insert);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_lob.freetemporary(l_clob);
    dbms_xmlparser.freeParser(l_parser);
    dbms_xmldom.freeDocument(l_doc);
    retcode := sqlcode;
    ERRBUF := sqlerrm;
    ROLLBACK;
    END read_emp_xml_file;
    END;
    <?xml version="1.0" ?>
    - <EMPLOYEES>
    - <EMP>
    <EMPNO>7369</EMPNO>
    <ENAME>SMITH</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7902</MGR>
    <HIREDATE>17-DEC-80</HIREDATE>
    <SAL>800</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7499</EMPNO>
    <ENAME>ALLEN</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>20-FEB-81</HIREDATE>
    <SAL>1600</SAL>
    <COMM>300</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7521</EMPNO>
    <ENAME>WARD</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>22-FEB-81</HIREDATE>
    <SAL>1250</SAL>
    <COMM>500</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7566</EMPNO>
    <ENAME>JONES</ENAME>
    <JOB>MANAGER</JOB>
    <MGR>7839</MGR>
    <HIREDATE>02-APR-81</HIREDATE>
    <SAL>2975</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7654</EMPNO>
    <ENAME>MARTIN</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>28-SEP-81</HIREDATE>
    <SAL>1250</SAL>
    <COMM>1400</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7698</EMPNO>
    <ENAME>BLAKE</ENAME>
    <JOB>MANAGER</JOB>
    <MGR>7839</MGR>
    <HIREDATE>01-MAY-81</HIREDATE>
    <SAL>2850</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7782</EMPNO>
    <ENAME>CLARK</ENAME>
    <JOB>MANAGER</JOB>
    <MGR>7839</MGR>
    <HIREDATE>09-JUN-81</HIREDATE>
    <SAL>2450</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7788</EMPNO>
    <ENAME>SCOTT</ENAME>
    <JOB>ANALYST</JOB>
    <MGR>7566</MGR>
    <HIREDATE>19-APR-87</HIREDATE>
    <SAL>3000</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7839</EMPNO>
    <ENAME>KING</ENAME>
    <JOB>PRESIDENT</JOB>
    <HIREDATE>17-NOV-81</HIREDATE>
    <SAL>5000</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7844</EMPNO>
    <ENAME>TURNER</ENAME>
    <JOB>SALESMAN</JOB>
    <MGR>7698</MGR>
    <HIREDATE>08-SEP-81</HIREDATE>
    <SAL>1500</SAL>
    <COMM>0</COMM>
    </EMP>
    - <EMP>
    <EMPNO>7876</EMPNO>
    <ENAME>ADAMS</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7788</MGR>
    <HIREDATE>23-MAY-87</HIREDATE>
    <SAL>1100</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7900</EMPNO>
    <ENAME>JAMES</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7698</MGR>
    <HIREDATE>03-DEC-81</HIREDATE>
    <SAL>950</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7902</EMPNO>
    <ENAME>FORD</ENAME>
    <JOB>ANALYST</JOB>
    <MGR>7566</MGR>
    <HIREDATE>03-DEC-81</HIREDATE>
    <SAL>3000</SAL>
    </EMP>
    - <EMP>
    <EMPNO>7934</EMPNO>
    <ENAME>MILLER</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7782</MGR>
    <HIREDATE>23-JAN-82</HIREDATE>
    <SAL>1300</SAL>
    </EMP>
    </EMPLOYEES>

    http://download-west.oracle.com/docs/cd/B13789_01/appdev.101/b10790/toc.htm
    Take a look at Examples 4-8 and 4-9. Even thought this is 10g doc code should work on 9.2.4 or later

  • How to include a table into transport request

    Hello,
    please, i want to export 2 tables into a request order, then i will import this order on an other system; is it possible?
    how please?
    Regards

    Hi,
    In that case it will help you
    http://searchsap.techtarget.com/tip/How-to-transport-table-entries
    Regards,

  • Master  table for RFQ(Request For Quotation). Field name is RFQ

    hi,
    I need to know the master table for RFQ(Request For Quotation) number . The field name is ANFNR . In the T.code ME42, i found that it is using the structure RM06E. But i need to know its corresponding master table

    the table EKKO (EKPO Items table) and you can find the Quote number in EBELN field. Don't go by the structure / field name on the screen
    Forgot to metnion that you need to use the right document category and the document type.
    Regards,
    Ravi
    Note : Please mark the helpful answers
    Message was edited by: Ravikumar Allampallam

  • Product Category - Customisation Request

    Hi All,
    We have maintained chineese language descriptions for some of the product category ID's in our development server.(TCode used is COMM_HIERARCHY).
    At this stage there was no customisation request created for the above changes.Could some one give an idea to capture the above process in the form of customisation  request as we need to move the same to Quality and Production.
    Help is appreciable.
    Thanks and Regards,
    Sri Naveen Dasari.

    Product Categories have GUIDs associated and these GUIDs are system dependent. So it is not advisable to have them in a Transport request. Thats why when you creating them it wont prompt for request. You would need to recreate them.

  • Customising request

    hai all,
        What is customising request,
    what is work bench request,
    How we differentiate betwwen customising request and work bench request while releasing in se09,
    Regards,
    Keyur.p

    Hi,
    Customising request is the request generated when you do any configuration changes.Ex.creating new sales off.and assigning it to Sales area.
    The flow is you define and assign in DEV Server and later on move it to QAS and then PRD,i.e.,DEV->QAS-->PRD.
    When you drill down the request,it will show all the details of changes,you can easily find wheather it is Functional or Tec.
    Workbench request is concernd to ABAP
    Hope this makes the doubt clear,encourage by rewarding points
    SriRam

  • Table that has requests currently IN cube?

    Hello,
    I am trying to find a way using ABAP to get a list of all requests currently in an InfoCube.  I am not looking for all the requests ever in the cube as some tables have, JUST the requests currently available under "Manage" on the cube.  Does anyone know how to do this? 
    All I've been finding is tables with ALL requests that have ever been on the cube, not just current reportable requests on the cube.  Anyone know how to do this?
    Thanks for looking,
    -Gary

    Hi Frined,
    as the table RSICCONT showing all the requests in the cube, which you have been selected, you can select the timestap colum > by  filtering in Assending order > in this way you can findout the last load to that particular data target as well as the request .
    i am assuming this is as a alternative to findout the latest request from table.
    Regards.
    Edited by: Rambabu velanati on Nov 3, 2009 4:31 PM

  • Tables for deleted request.

    Hi experts,
    Is there any table which stores the deleted request number?
    Tahnks,
    Abhishek.

    Hi,
    Use below tables for Transport Requests E070 and E071.
    Regards
    Jana

  • WHICH TABLE STORES SPOOL REQUEST GENERATED BY BACKGROUND JOB ?

    Background job is generating multiple request.
    i am not able to find the table which stores all the spool request for a particular background job.

    i know the table for spool request :  TSP01
    But how should i link it to background job name ?
    i want the link between background job name and spool request generated by it......
    TBTCPV is the view but it stores only one spool request.....rather than multiple spoolreq generated by background job..

  • Data not received in PSA Table - Data of request already deleted

    Hi
    I'm running a delta load on a BI 7.0 system and get this error Data not received in PSA Table.
    And when I click on the PSA table it telling me that  Data of request XXXXXX already deleted.
    I have tried to do a consistency check in RSRV. See if there's any IDOCs in pb87.
    And the short dump analysis just say: 
    A RAISE statement in the program "SAPLRSSM" raised the exception
    condition "NOT_EXIST".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    I've also tried to repeat the load but with no luck.
    Anyone know how to fix this?
    Thank you in advance

    Hi,
    Delete the bad requests in 3 targets and delete the data mart status in Source DSO.
    Also delete the green request in the Source DSO and repeat it.
    Once it loads successfully then load the data to other 3 targets.
    Rgds,
    Ram

  • How to get detailStamp working in an af:table when using request scope ?

    <af:table var="row" id="t1" value="#{listUsers.users}" summary="Userlist" binding="#{listUsers.ATable}" [...]
    <af:column sortable="false" headerText="Username" id="c13" filterable="true">
    <af:outputText value="#{row.username}" id="ot13"/>
    </af:column>
    <f:facet name="detailStamp">
    <af:panelFormLayout rows="4" labelWidth="33%" fieldWidth="67%" inlineStyle="width:795px" id="pfl1" labelAlignment="start" >
    <af:group id="g1">
    <af:panelLabelAndMessage id="plamNumber" label="Number" for="number">
    <af:outputText value="#{row.address.number}" id="number"/>
    </af:panelLabelAndMessage>
    I feel there is nothing special with this.
    But I've tested with 2 rows in my table and when I disclose rows, I get random results :
    sometimes I get the details related to the row disclosed, but sometimes I get the details of the other row.
    I've read several posts on the subject but none really helpful.
    Another problem ; I've noticed that when I disclose or close a row, getUsers() is called, this method fetch the data from the DB, any way to prevent it ?
    For the second problem, the solution I see would be to : change scope of listUsers to session instead of request, fetch from the DB only when "refresh", not when "detailStamp",
    but I've no clue on how to actually do the "only when part"
    Thanks in advance,
    JP

    Ok when I change the scope of ListUsers to session it's "ok" since I only load the list from the DB once (just like the demo that does not have this problem since the demo does not use the DB)
    When I change the scope for request and that the page is refreshed then the object ListUsers is "recreated" and the data reloaded : that's the expected behavior
    So I prefer to have the scope sets to request
    The problem is that when a user disclose/close a detailstamp and that the scope is set to request,
    then the data is reloaded from the DB
    because apparently this event acts like a "refresh"
    because this event (disclose/close) cause the destruction of what is in the request scope ...
    That's my understanding, probably few mistakes, I'm beginning with ADF/JSF
    It seems that when I load the data from the DB, it's not always in the same order, causing the problem itself probably, which is not ADF related BUT ;
    what I would like to know is how to (elegantly) prevent the event of "disclose/close" to act like a "refresh" ?
    Because even if I fix the "not ADF related problem" (if there is one), loading the list from the DB each time, appears really useless and the DBA won't like me !
    A solution could be to leave the session scope, but then my question would be ;
    *how to know I've to reload from the DB ?"
    I could just "reload it on page load", seems ok to me but
    I'm not sure it's the best, I would like to have your opinion, I've found this article for the "on page load" part ;
    http://groundside.com/blog/DuncanMills.php?title=adf_executing_code_on_page_load&more=1&c=1&tb=1&pb=1
    Thanks,
    JP

  • Table for Travel request status

    Hi Experts,
    Please let me know in which table travel request status is stored.settlemet status like "TO BE Settled" "Settled" Travel status like "Request Recorded" "Request approved" "Trip approved" etc.
    Thanks and Regards
    Shilpashree

    Thanks Rajesh and Dora,
    I wanted to know table name but got to know that it is a data element with no value table.
    Thanks and Regards,
    Shilpashree.

  • Problem in tables of transport request !!!!

    Hi all,
    When i doing the Charm Process....nd during that when the developer generates the transport request....at that time that tp request appears in table /tmwflow/trordhc but it does not appear in /tmwflow/track .... nd after releasing the subtasks and then finally the whole transport request....at that point also it does not appear in /tmwflow/track ..... after this when the basis person pass that transport request to quality....then the /tmwflow/track shows 1 record for that transport request.....so finally after the whole flow /tmwflow/track will show 2 records for that transport request i.e 1 of quality and 1 of production....logically 'dev' record should also be there.....what i am noticing is after few hours like 2 or 3 hours that development record started appearing in table /tmwflow/track .... so is it a problem in configuration of solution manager or this sudden appearance of dev record is ok....coz ive to build a report in which it displays the tracking of tp requests....
    Any suggestions would be helpful...
    Regards,
    Deadlocks

    Hey deadlocks,
    many ChaRM tables are updated as Fernando said when cmssyscol job finished.
    I guess those 2/3 hours correspond to the time u waited before the job runned. The transaction solar_eval and a couple of others allow u updating data as well.
    U have to know that this job may sometimes/quite often give unsupected/missing data; and also delayed. The best you can do is simply read the tr log using a function modul and interpretate info concerning the transport requests
        CALL FUNCTION 'TRINT_TDR_USER_COMMAND'
          EXPORTING
            iv_object  = lv_object
            iv_type    = ls_sel_node-type
            iv_command = lv_command
          IMPORTING
            ev_exit    = pv_exit.
    LV_OBJECT                                             SLMK900004
    LS_SEL_NODE-TYPE                                     REQU
    LV_COMMAND                                             TAST
    for example.
    You can debug log reading in SE01 and put a watchpoint on instruction 'CALL FUNCTION'. It is the second one.
    This will display log on screen
    Good luck
    Khalil

  • Travle Mgmt : Table used:  travel request & travel expenses form input !!!

    HI
    what are all the tables used to store the travel request details of a particular trip & advance amt  / estimated cost details.
    and also explain : bapi_trip_create_data_from  - how we can include the advance amount  when executing the bapi.
    regards
    Giri

    Travel Request data is stored in tables FTPT_REQ* - look at:
    FTPT_REQ_HEAD
    FTPT_REQUEST
    FTPT_REQ_ADVANCE
    FTPT_REQ_ACCOUNT
    FTPT_REQ_REASON
    Travel Expense data is stored in tables PTRV_* and in the PCL1/TE clusters - look at:
    PTRV_HEAD
    PTRV_PERIO
    PTRV_KMSUM
    PTRV_SADD
    PTRV_SCOS
    PTRV_SHDR
    PTRV_SREC

Maybe you are looking for

  • Links in Preview

    Hi, I'm using Preview 5.0.3 to read a PDF document that I've written in LaTeX. For some reason, the links to other parts of the document don't always work. For example, I write "See page 21", then click on the link for it in Preview, and it takes me

  • Email settings in J4580 All-In-One Solution Center

    Hi there, For some time i use my all-in-one J4580 printer with the Windows Vista application on my computer. But recently i change and did run an upgrade to the Windows 7 application and everything did goes verry well without any problems accept for

  • Dynamic Translations - Sometimes Translated Sometimes not

    Apex 3.1 Oracle 10.2.0.2 on aix I am having a little issue with dynamic translations. All of the translations work okay in the LOV's, however when I use the values in reports, they sometimes appear translated and sometimes don't appear translated. I

  • What are crystals reports

    Hi Experts, I works on web Dynpro JAVA and i want to know what is crystal reports, and how can i use them with web dynpro jAVA Regards Upendra

  • Activation date in February?

    Given that I have only just placed my order for Infinity but I have been told to expect my service to be activated in February? This seems an exceptionally long wait. Having just tracked my order I have found out that seemingly an engineer is not req