REF Problem

My Problem is insertion in object tables.
Senario is as under:
--Creating type
create type dept_a as object
(deptno number(2),
dname varchar2(14),
loc varchar2(13) );
--Creating object table
create table dept1 of dept_a
(deptno primary key,
dname not null
--Creating type with REF of dept_a
create type emp_a as object
(empno number(4),
ename varchar2(14),
job varchar2(10),
sal number(8,2),
hire_date date,
deptno ref dept_a)
--Creating object table
create table emp1 of emp_a
(empno primary key)
--insertion in dept1
insert into dept1
values
(10,'ACCOUNTING','NEW YORK');
--insertion in emp1
INSERT INTO EMP1 (EMPNO,ENAME,JOB,SAL,HIRE_DATE,DEPTNO)
VALUES
(1,'FAISAL','MANAGER',3000,'10-JAN-2001',(SELECT REF(D) FROM DEPT1 D WHERE DEPTNO=10))
This insertion caused an error.
ORA-00936: missing expression
at lin 3 (select ref(d)....)
Please solve my problem

hai muhammad..
A required part of a clause or expression has been omitted. For example, a SELECT statement may have been entered without a list of
columns or expressions, or with an incomplete expression. This message is also issued in cases where a reserved word is misused, as in
SELECT TABLE.
Action:
Check the statement syntax and enter the missing component.
here we can use like that muhammad..
read that ,it will help u
bye now..
null

Similar Messages

  • SIP Refer problem

    Hi Guys,
    I have problem at one of our customer side. When an operator received a call, and try to do a transfer (consult transfer) to a colleague, the colleague's phone ring one time and the call failed. The operator have to take back the call and give the full external number of the colleague to the caller.
    After a reboot of the phone (unplugged/plugged) the transfer work fine !
    I tried to find the cause in the CUCM traces but I need help.
    Saw that Refer messages:
    14:49:26.294 |//SIP/SIPTcp/wait_SdlSPISignal: Outgoing SIP TCP message to 22.212.126.35 on port 50108 index 227
    [21667403,NET]
    REFER sip:[email protected]:50108 SIP/2.0
    Via: SIP/2.0/TCP 22.214.10.18:5060;branch=z9hG4bKf63095b1b37b1
    From: <sip:[email protected]>;tag=435147058
    To: <sip:[email protected]>
    Call-ID: [email protected]
    CSeq: 101 REFER
    Max-Forwards: 70
    Contact: <sip:[email protected]:5060;transport=tcp>
    User-Agent: Cisco-CUCM8.6
    Require: norefersub
    Expires: 0
    Refer-To: cid:[email protected]
    Content-Id: <[email protected]>
    Content-Type: application/x-cisco-remotecc-request+xml
    Referred-By: <sip:[email protected]>
    Content-Length: 341
    <x-cisco-remotecc-request>
      <answercallreq>
        <dialogid>
          <callid>[email protected]</callid>
          <localtag>6511241~ada938a2-d3e6-4928-be65-07fc5a6e0f23-49485024</localtag>
          <remotetag>3cce73acbe00bd3fda57ded7-91adfcf9</remotetag>
        </dialogid>
      </answercallreq>
    </x-cisco-remotecc-request>
    |2,200,21,1.3256060^22.214.10.2^SEP3CCE73ACBE00
    After the OK:
    14:49:26.317 |//SIP/SIPTcp/wait_SdlReadRsp: Incoming SIP TCP message from 22.212.126.35 on port 50108 index 227 with 442 bytes:
    [21667404,NET]
    SIP/2.0 200 OK
    Via: SIP/2.0/TCP 22.214.10.18:5060;branch=z9hG4bKf63095b1b37b1
    From: <sip:[email protected]>;tag=435147058
    To: <sip:[email protected]>;tag=3cce73acbe00bd40ed051b81-4b2d068b
    Call-ID: [email protected]
    Date: Thu, 07 Feb 2013 13:49:17 GMT
    CSeq: 101 REFER
    Server: Cisco-CP7962G/9.3.1
    Contact: <sip:[email protected]:50108;transport=TCP>
    Content-Length: 0
    |3,100,63,1.7871803^22.212.126.35^*
    And thats the last messages with call ID starting by: 2e587c80
    So could you say me how I can find the Transfer "destination" and why the call failled ?
    Thanks,
    Hervé Jacquemin

    Hi hjacquemin,
    Have you solved this problem? I found the same thing with my customer. We are using
    6921 with SIP Firmware. It is very weird that my IP Phone was hanged and must reset by unplug and plug.
    Winai. 

  • EJB-REF problem

    Hi for all
    I am having problems when I have that reference other EJB from an EJB. I put the reference in the file ejb-jar.xml but like I use the weblogic server a error is generated when I try to do the deploy my EJB where it asks to do the reference in the file weblogic-ejb-jar.xml, that is the configuration of the ejb in the server.
    If somebody knows as doing that reference for the weblogic, please, help me.
    Thanks

    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 5.1.0 EJB//EN' 'http://www.bea.com/servers/wls510/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>CentroCustoBO</ejb-name>
    <caching-descriptor>
    <initial-beans-in-free-pool>1</initial-beans-in-free-pool>
    </caching-descriptor>
    <jndi-name>CentroCustoBO</jndi-name>
    </weblogic-enterprise-bean>
    <weblogic-enterprise-bean>
    <ejb-name>PedidoPagamentoBO</ejb-name>
    <caching-descriptor>
    <initial-beans-in-free-pool>1</initial-beans-in-free-pool>
    </caching-descriptor>
    <reference-descriptor>
    <ejb-reference-description>
    <ejb-ref-name>FornecedorBO</ejb-ref-name>
    <jndi-name>FornecedorBO</jndi-name>
    </ejb-reference-description>
    <ejb-reference-description>
    <ejb-ref-name>CentroCustoBO</ejb-ref-name>
    <jndi-name>CentroCustoBO</jndi-name>
    </ejb-reference-description>
    </reference-descriptor>
    <jndi-name>PedidoPagamentoBO</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>

  • ejb-ref problems in WLE 5.0.1

    Platform : WLE 5.0.1 on Solaris 2.6
    I'm having a problem with EJB deployment in WLE 5.1. The ejb-spec
    specifies that you must add <ejb-ref> entries for each entity or
    session bean in your ejb-jar.xml that references another bean. So, in
    this case both A and B reference C in the code.
    <ejb-jar>
    <enterprise-beans>
    <entity>
    <ejb-name>C</ejb-name>
    <home>com.xxx.CHome</home>
    <remote>com.xxx.C</remote>
    <ejb-class>com.xxx.CBean</ejb-class>
    </entity>
    <session>
    <ejb-name>B</ejb-name>
    <home>com.xxx.BHome</home>
    <remote>com.xxx.B</remote>
    <ejb-class>com.xxx.BBean</ejb-class>
    <ejb-ref>
    <ejb-ref-name>ejb/CBean</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>com.xxx.CHome</home>
    <remote>com.xxx.C</remote>
    <ejb-link>C</ejb-link>
    </ejb-ref>
    </session>
    <session>
    <ejb-name>A</ejb-name>
    <home>com.xxx.AHome</home>
    <remote>com.xxx.A</remote>
    <ejb-class>com.xxx.ABean</ejb-class>
    <ejb-ref>
    <ejb-ref-name>ejb/CBean</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>com.xxx.CHome</home>
    <remote>com.xxx.C</remote>
    <ejb-link>C</ejb-link>
    </ejb-ref>
    </session>
    </enterprise-beans>
    <ejb-jar>
    In this case, upon starting the JavaXAServer I get a
    javax.naming.NameAlreadyBoundException thrown. The EJB spec
    specifically states that I should be able to refer to C with the same
    name from A and B. Is this a bug?
    I can get around this by changing the name of the second reference to
    something like "ejb/CBean2".
    Additionally, I get a NameNotFoundException when looking up the
    reference from within A or B as follows :-
    Context ic = new InitialContext();
    Object ob = ic.lookup("java:comp/env/ejb/CBean");
    The only way I can work around this, is to construct the
    InitialContext using the 'client' view, passing
    com.beasys.jndi.WLEInitialContextFactory as the factory name, passing
    the ISL host/port in the PROVIDER_URL and then using the JNDI names
    for the lookup.
    What's going wrong?
    TIA

    this seems to be a WLE 5.0.1 bug
    Developer wrote in message <[email protected]>...
    Platform : WLE 5.0.1 on Solaris 2.6
    I'm having a problem with EJB deployment in WLE 5.1. The ejb-spec
    specifies that you must add <ejb-ref> entries for each entity or
    session bean in your ejb-jar.xml that references another bean. So, in
    this case both A and B reference C in the code.
    <ejb-jar>
    <enterprise-beans>
    <entity>
    <ejb-name>C</ejb-name>
    <home>com.xxx.CHome</home>
    <remote>com.xxx.C</remote>
    <ejb-class>com.xxx.CBean</ejb-class>
    </entity>
    <session>
    <ejb-name>B</ejb-name>
    <home>com.xxx.BHome</home>
    <remote>com.xxx.B</remote>
    <ejb-class>com.xxx.BBean</ejb-class>
    <ejb-ref>
    <ejb-ref-name>ejb/CBean</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>com.xxx.CHome</home>
    <remote>com.xxx.C</remote>
    <ejb-link>C</ejb-link>
    </ejb-ref>
    </session>
    <session>
    <ejb-name>A</ejb-name>
    <home>com.xxx.AHome</home>
    <remote>com.xxx.A</remote>
    <ejb-class>com.xxx.ABean</ejb-class>
    <ejb-ref>
    <ejb-ref-name>ejb/CBean</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <home>com.xxx.CHome</home>
    <remote>com.xxx.C</remote>
    <ejb-link>C</ejb-link>
    </ejb-ref>
    </session>
    </enterprise-beans>
    <ejb-jar>
    In this case, upon starting the JavaXAServer I get a
    javax.naming.NameAlreadyBoundException thrown. The EJB spec
    specifically states that I should be able to refer to C with the same
    name from A and B. Is this a bug?
    I can get around this by changing the name of the second reference to
    something like "ejb/CBean2".
    Additionally, I get a NameNotFoundException when looking up the
    reference from within A or B as follows :-
    Context ic = new InitialContext();
    Object ob = ic.lookup("java:comp/env/ejb/CBean");
    The only way I can work around this, is to construct the
    InitialContext using the 'client' view, passing
    com.beasys.jndi.WLEInitialContextFactory as the factory name, passing
    the ISL host/port in the PROVIDER_URL and then using the JNDI names
    for the lookup.
    What's going wrong?
    TIA

  • Ref: problem after installing patch3 of 9ids

    correction:
    browser's status bar shows 'done' and nothing else occurs..

    Hi,
    Patch3 obviously conains another version of JInitiator and you are using IE as a Browser. You need to change the following lines in formsweb.cfg with the new information
    jinit_classid=clsid:CAFECAFE-0013-0001-0009-ABCDEFABCDEF
    jinit_exename=jinit.exe#Version=1,3,1,9
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.9
    IE is very sensitive about the classid used with Jinitiator.
    Check "Program Files"-->Oracle --> Jinitiator <version> --> doc --> jinit-version.ini for the calls id expected by teh new Jinitiator.
    if you haven't installed the latest Jinitiator, just make sure, that the classid entry in formsweb.cfg file contains what the client Jinitiator version expects.
    Hope this helps you solving the problem as here and then does for me.
    Fran

  • About REF problem

    Hi, everybody:
    I declare the type as below:
    CREATE TYPE tmp_t AS OBJECT (cc     VARCHAR2(10));
    CREATE TABLE tab1 (id NUMBER(3), tt REF tmp_t);
    CREATE TABLE tab2 (id NUMBER(3), tmp tmp_t);
    INSERT INTO tab2 ...;
    when I input the SQL statement:
    INSERT INTO tab1
    SELECT id, REF(tmp) FROM tab2 WHERE id=...;
    will report the error message:
    ORA-00904: "TMP": invalid identifier.
    but the column name tmp is exist.

    This is because ref works on object table as a whole not on column name. i.e you must create table of object tmp_t as
    SQL> create table tmp_t_tab of tmp_t;
    Table created.
    SQL> insert into tmp_t_tab values (tmp_t('c'));
    1 row created.
    SQL> commit;
    And now this can be ref'ed as below...
    SQL> select ref(t) from tmp_t_tab t where cc = 'c';
    REF(T)
    0000280209721C3E28D7D5461382952F34182151A812A6CC31D9C347DD955BBA5A587038EF0040C6
    A20000
    Now you can use this to insert into a table of ref as below..
    SQL> create table tab2 (id NUMBER(3), tmp ref tmp_t);
    Table created.
    SQL> insert into tab2 select 2,ref(t) from tmp_t_tab t where cc = 'c';
    1 row created.
    SQL> commit;SQL> select * from tab2;
    ID
    TMP
    2
    0000220208721C3E28D7D5461382952F34182151A812A6CC31D9C347DD955BBA5A587038EF
    SQL> select id,deref(tmp) from tab2;
    ID
    DEREF(TMP)(CC)
    2
    TMP_T('c')
    SQL>

  • Getting Error while creating device configuration (Schema Node ref problem)

    Hi,
    In MDM 2.0.1, I created the following(in order) :
    1.UOM
    2.Measuring Component Type
    3.Device Configuration Type
    4.Service Provider
    5.Device Type
    6.Device
    But when trying to Configure the created Device, its showing some error as...
    Schema node isNewCase (/schema/[includeDA F1-CommonToDoEntryData]/isNewCase) references non-existent service field NEW_CASE_SW.
    After this has happened, i couldn't even add another configuration to some of my Existing Devices..
    (But for Some existing devices, adding a new configuration doesn't throwing errors..)
    Please help regarding this...

    Is the Measuring Component Type u created is added in DeviceType's ConfigType list..?

  • Query Ref Problem:Would like UserField updated on adding item to Quotation

    This query works without variable in it - SELECT T1.[U_NPS_QD] FROM OITM T1  INNER JOIN QUT1 T2 ON T1.ItemCode = T2.ItemCode WHERE T1.[ItemCode] = T2.[ItemCode]
    I would like above query to populate a user defined field on Sales Quotation whenever an item is added to quotation or the item is changed. The field I have on Sales Quotation is U_NPS_D2 (it is not in above query). I used form setting to make U_NPS_D2 visible on Sales Quotation. The value I want updated in U_NPS_D2 is from U_NPS_QD (from Item master data).
    I would actually want U_NPS_D2 updated automatically even without user entering Shift F2.
    Where should the $ sign be placed in above query with the right syntax?
    I tried many things and failed.
    Appreciate help.
    Thank you.

    Hi,
    Try This:
    SELECT T1.U_NPS_QD
    FROM OITM T1 INNER JOIN QUT1 T2
    ON T1.ItemCode = T2.ItemCode
    WHERE T1.itemcode =  $[QUT1.itemcode]
    Auto update the field when Item number changes.
    Regards
    Ashutosh
    You should not write " http://"  this is a " [   ] "  actually. But wile i am posting it it comes like http://qut1....
    Cheers..
    Edited by: Ashutosh T on Jun 14, 2010 7:38 AM

  • Problem in msg mapping

    Hi all,
       I have 3 fields (Emp_no,Name,Salary)...i am sorting those values based upon  Emp_no.  Now the problem is only the emp_no is getting sorted and the remaining things are coming as it is.
    Source Structure=Target Structure
    Mt_src
      Employee
         emp_no
         name
         salary
    Mapping:(mine)
    Mt_src---->Mt_tgt
    Employee--->Employee
    emp_no>removecontext>sort>splitbyvalue(eachvalue)>emp_no
    name-->name
    salary-->salary
    Regards
    Arivarasu S

    HI,
    Practically records r sorted based on the mandatory and unique filelds. But if in ur scenario that couldnt happen, then check if that node exists using "exists" function and then only proceed fot the sorting
    Currently the Queue of emp_no is not matching with the other fields,
    Use the node function mapWithDefault to align all the queues
    Refer
    Problem in sorting the records
    As the functions sort and sortByKey only sort the elements within the same context, we have to use the function removeContexts before sort. After sort we have to restore the original contexts. We do this with the node function splitByValue
    /people/stefan.grube/blog/2005/12/29/new-functions-in-the-graphical-mapping-tool-xi-30-sp13
    Thanks
    Swarup
    Edited by: Swarup Sawant on Jun 23, 2008 11:50 AM

  • Regarding the File Adapter with Code Page problem

    Hi All,
    I have a scenario where I am processing file at receiver end. The code page of the file is Cp037. When I try with this, I am facing the problem. Is there anyway where I can chage the code page of the file which is to processed by File adapter receiver.
    I have one idea but I don't know whether it is possible or not. It is to use XML Anonymizer Module.
    Please get back to me with your ideas.
    Regards,
    Achari

    Hi Achaari,
    Cp037 ( EBCDIC ) is not a basic but an extended encoding set which might not be supported by the file encoding parameter at the receiver file adapter.
    Either you can try the code page conversion using java code  as mentioned in  this[ post|Code page conversion;
    Please refer Problem with EBCDIC
      Michale's reply and the sriram's reply which talks about  some work around using .BAT files.
    Regards,
    Srinivas

  • Connection problem with Cloud Websense security

    Hi -
    We are unable to login Skype through our office proxy server, the proxy server is Cloud Websense Security.
    we contacted Websense support they told me that Skype not sending packets in rfc format and send all traffic using IP addresses instead of host name.
    please refer problem discription below:
    # Problem Reported:  Skype app is not working via Websense Cloud
    # Setup: Window 8, Skype v6.14.0.104, user connects from known IP with no Websense Endpoint but PAC is configured in IE.
    # Findings from the wireshark capture:
    1023    2014-04-15 12:38:26.[removed for privacy]       172.18.3.49     116.50.59.180 HTTP     228      CONNECT a.config.skype.com:443 HTTP/1.0
    1555    2014-04-15 12:38:39.[removed for privacy]       10.91.11.12     172.18.3.49     DNS      240      Standard query response CNAME dsn9.skype-dsn.akadns.net A 65.55.223.44 A 111.221.74.18 A 111.221.77.159 A 157.56.52.47 A 111.221.74.31 A 65.55.223.33 A 157.55.235.158 A 65.55.223.15
    1) When you follow the below TCP stream, there Skype is not sending "Host" header.
    2233    2014-04-15 12:38:54.[removed for privacy]       172.18.3.49     116.50.59.180 HTTP     56        CONNECT 157.56.52.47:443 HTTP/1.0
    CONNECT 157.56.52.47:443 HTTP/1.0
    Proxy-Connection: keep-alive
    HTTP/1.1 407 Unauthorized
    X-Bst-Request-Id: qZkqFh:Gqp:260276
    X-Bst-Info: ch=req,t=1397545734,h=05c,p=41032_152:2_1027,f=CategoryFilter,r=_internal_MustAuthRule_,c=2343,v=7.9.28796.118 1393243334
    Content-Type: text/html; charset=utf-8
    Pragma: No-cache
    Content-Language: en Cache-Control: No-cache
    Proxy-Authenticate: Basic realm="FilteringProxy"
    Content-Length: 6080
    Connection: keep-alive
    2) Skype does not support NTLM authentication. Hence, we need to bypass authentication for all the IP address involved. Also, it may be almost impossible to add all the IP address when Skype uses random & dynamic address.
    3) Creating auth bypass rule for *.skype.com will not help here because there is no "Host" header in the CONNECT request. This should be fixed from Skype side.

    Ok, I thought so. My advice would have been to just run skype of the border router, and not via proxy (there isn't really any point in doing that anyway).
    Skype as many other services uses several layers of services, first an authentication server (or servers more perecicely) then catalog servers (to find users a bit like user DNS), and relays (that governs traffic and routes users. This can easily be firewalled to death.
    If your proxy is set to allow outbound traffic on port 443 (it really should) then Skype should be able to log on atleast. I'm guessing that you are running a proxy this way to do protocol (and other, eg intrusion detection and malwarefiltering) filtering, which probably is why skype is being blocked.
    If your proxy is just a proxy, I really cannot understand why running Skype on the outside is not permitted, unless it is for logging purposes (but I guess it isn't because that way you really wouldn't need a proxy).
    I assume you have set up proxy settings in Skype itself (not just IE or other browser) in tools > advanced > connection settings.
    Running Skype this way means you will be relayed, meaning you are dependant on your traffic passing through Skypes relays, which is some of the IP's you are seeing around the world as you say.

  • Add a link in the displayed error massage

    Key Words: BAdi, BBP_DOC_CHECK_BADI, Error Massage
    Ref: Problem with BBP_DOC_CHECK_BADI
    (Problem with BBP_DOC_CHECK_BADI)
    Hi,
    I am able to display a simple custom message using the BBP_DOC_CHECK_BADI implementation.   My question is how do I add the link to the line item?  The standard SAP messages have a link to the line item (the link is the description of the item).  I want the same links on my messages.
    If you could provide a sample code that would be great.
    Hope you understand my question.
    Thanks,
    Naing Zaw-Tun

    Hello,
    In the ET_MESSAGE internal table there is a field ITEM_GUID,populate your custom message with the item guid and now you can navigate to the exact item no from your custom message and if you mention FIELD_NAME then you can navigate exactly to the cell .
    Regards,
    Mani
    null

  • Control record mapping in IDOC

    Hi All,
    I am doing File to IDOC scenario. In this I am using MBGMCR03. In EDI_DC40 segment I have mapped constants to the sender n receiver port, partner frofile etc. And in IDOC receiver adaptor i have selected take sender from payload. It is working fine.
    However when i will transport my scenario to quality , How am i going to change all these constants with the new names?
    is there any better way of doing it? Like my sender details will be automatically determined by PI system.
    Thanks,
    Atul

    Hi Atul,
    1.if i use full export for transporting SLD from DEV to QA,can i use the same tecnical systems and business systems in QA?
    Can T.S and B.S also get transported from DEV to QA?
    You can use same technical systems and Business systems.
    1. Go to Dev SLD and Export all your SWCV, Products, Technical and Business Systems. This is nothing but saving of the SLD objects as a CIM file on your local machine. You would also need to export the Technical And Business System poitning to your XI integration server .
    2. Go to the QA SLD and then import these objects exported in Step 1 in QA SLD
    3. Now, create the QA Tech and Business Systems in the QA SLD
    4. Go to the Dev Business systems imported on the QS SLD and you will have an option Transport Targets. In this map the Source Business System to the Target Business Systems.
    Make sure that all Dev Business Systems have the correspodning Transport Targets for the QA Business SYstems
    5. Now if you import the ID objects in QA , the business systems name will be renamed automatically.
    2.In such case how to define business systems groups and transport targets?
    You need to create Transport Groups on your QA SLD. One for Dev and One for QA. You can create Transport Groups only for Integration Server Business Systems.
    And this is why you would need to export the Dev XI technical System and Business System from the SLD of Dev and Import it into the QA SLD.
    2. Create the transport groups and then assign all Dev Business Systems to Dev Group, all QA Business Systems to QA group and then create the transport targets.
    You use the Option related Integration server in the Business Systems to assign a Business System to a Group.
    Refer
    Problem regarding xi transport
    How to handle SLD for Tranporting Dev to Quality ser
    https://service.sap.com/~sapdownload/011000358700001684302005E/HowToSLDandXI.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/0fa2c490-0201-0010-61b4-df12869c4753
    Overview of Transition from Dev to QA in XI
    /people/sravya.talanki2/blog/2005/11/02/overview-of-transition-from-dev-to-qa-in-xi
    /people/sap.india5/blog/2005/11/09/xi-software-logistics-ii-overview
    Thanks,
    Satya Kumar
    Reward if it is useful..

  • Code to get the all Records in Work Book

    Hi,
    I have a Report to show on work book, Now I am used REFERENCE to get the data.
    In Work book i have used formula for one cell and i draged that to few rows(for example 100).
    Here my problem
    If i get below 100 records there is no problem, if it exceds 100 i won't get the records.
    some times I get in my result <b>REFF #</b>
    to solve this problems any macro code or any other solution?
    cause my report is dynamic report some times it give 1000 records some times 100, it should be automatically .
    i know dragging the cell poor quality of coding.
    any code which help my problem will be appreciated.
    Thanks
    Priya

    Hi Priya,
    I do not understand the problem.  Please show the formula you are using.
    Does the REF# problem occur when you first put the formula in the cells, or only after the query is refreshed?
    If the former, you have an Excel problem.  If the latter, the problem is that BW will delete the old query result table before it inserts the new query result table, and the REF# means that the reference cells were deleted.  In this case, the solution is simple and a simple macro will fix the problem for you.
    I can help you if I understand which problem you are having.
    - Pete

  • Transporting from DEV to QA

    We have 3 different sld's for DEV,QA,and PRD systems.
    i need to transport my XI objects from DEV to QA.i'm working on standard XI contents.
    i need answers for my following questions.
    1.if i use full export for transporting SLD from DEV to QA,can i use the same tecnical systems and business systems in QA?
      Can T.S and B.S also get transported from DEV to QA?
    2.In such case how to define business systems groups and transport targets?
    pls don't send any blogs..i've all the blogs
    thanks
    Abhijit

    Hi,
    1.if i use full export for transporting SLD from DEV to QA,can i use the same tecnical systems and business systems in QA?
    Can T.S and B.S also get transported from DEV to QA?
    You can use same technical systems and Business systems.
    1. Go to Dev SLD and Export all your SWCV, Products, Technical and Business Systems. This is nothing but saving of the SLD objects as a CIM file on your local machine. You would also need to export the Technical And Business System poitning to your XI integration server .
    2. Go to the QA SLD and then import these objects exported in Step 1 in QA SLD
    3. Now, create the QA Tech and Business Systems in the QA SLD
    4. Go to the Dev Business systems imported on the QS SLD and you will have an option Transport Targets. In this map the Source Business System to the Target Business Systems.
    Make sure that all Dev Business Systems have the correspodning Transport Targets for the QA Business SYstems
    5. Now if you import the ID objects in QA , the business systems name will be renamed automatically.
    2.In such case how to define business systems groups and transport targets?
    You need to create Transport Groups on your QA SLD. One for Dev and One for QA. You can create Transport Groups only for Integration Server Business Systems.
    And this is why you would need to export the Dev XI technical System and Business System from the SLD of Dev and Import it into the QA SLD.
    2. Create the transport groups and then assign all Dev Business Systems to Dev Group, all QA Business Systems to QA group and then create the transport targets.
    You use the Option related Integration server in the Business Systems to assign a Business System to a Group.
    Refer
    Problem regarding xi transport
    Thanks
    Swarup
    Edited by: Swarup Sawant on Feb 26, 2008 11:55 AM

Maybe you are looking for

  • IPhone Best Practices - A Work In Progress

    Hello all. I've been tasked with introducing my coworkers into the inner workings of the iPhone, and there are a good number of pointers that I find myself saying over and over again. I'd like to share my best practices with everyone, as well as coll

  • Iphone wont receive mail till i open my lap top ??? please help

    my work email will not go to my phone until i open my lap top. once i open my lap top and all the mail loads into 'mail'.... then they pop up on my phone. Its an exchange account. i have also tried it as an imap account. i have 4 other accounts that

  • How to keep a notification message in my lock screen?

    For instance, when I receive an SMS I get a notification message in my lock screen. After that, if I unlock my phone, without reviewing/opening the iMessage app, and then I lock it again, is there any way to keep my SMS notification in the lock scree

  • How to change the logo in the display of the 7912 and 7940 ?

    i convert the logo.bmp with atributes to logo.logo with bmp2logo and i create el gkdefault.cnf upgradelogo:10,10.67.3.67,logo.logo i must do more ? thank a lot

  • Permissions impossible to repair (10.5.7)

    These following permissions are impossible to repair. Disk Utility on instsall DVD or Onyx repair them but they are still there next repair session.: -- Quote Started verify/repair permissions on disk disk0s3 HD Permissions differ on "System/Library/