Object after "FROM" keyword needed

hi Friends,
I have one question . I want to get the object in a variable in sql or pl/sql which is being queried against (the object after FROM key word)
For e.g. in the below statements
select *from v$active_session_history
select *from emp where empno=20;
How can i get v$active_session_history and emp ?
note: the object can be a view
One way is to REGEXP , but i am not too familiar with using it solve my problem.
Why i need it: I have 100s of sql texts and i want to get the object which these sqls are queried against and then use them for further activities.
10x

Hi Karthick Arp/BluShadow/#Nishe#/Dave Rabone Thanks for replying. Below are the details of what i want to achieve
I work on an OLTP application and check new queries which are doing FTS every week.
I have a script which is called from the cron. It runs a script every Saturday and checks v$sql_plan and v$sqlarea like below
+++++
operation = 'TABLE ACCESS'
AND options = 'FULL'
and upper(module) not like 'TOAD%' and upper(module) not like '%SQL%'
+++++
The script filters out those queries which i have already seen.
So i have the sql ids and few other details like rows in table etc.
For doing analysis i most of the times do the below:
1. TABLE
Check the indexes for understanding why it is not doing taking the indexes
2. VIEW
Check the metadata for the view as to what predicates would be better to avoid it going to FTS ,if possible.
I want to automate the above 2 steps
So what i want to do is get :
a. indexes list if the object is a table?
b. metadata for the view if the object is a view.
Below are answers to your questions
How about table or view that are part of join or scalar subquery or correlated subquery or subquery factoring etc.. Do you want them as well?
--Yes i want them all Are all your SQL statements simple selects? Or are they more complex, containing subqueries etc.?
--More complex And if the object is a view, do you need to know the base tables?
--No

Similar Messages

  • In which situation I need to active objects after transport

    Hi Experts,
        I'm wondering in which situation I need to active object after transport?  In some cases, I have to active transformation, DTP, infoobject, multiprovider....  Does any one make a conclusion of that?
        thanks in advance.
    Eric

    Sometimes, because of impact of a transport some other objects will be deactivated, then we need to manuaaly activate the objects after transport.
    Also, sometimes transport after import process could not be able to activate the objects, then also we have to activate them manually.
    Or suppose, you have moved and infoobject, due to which some other objects become inactive (where ever infoobjects is being used), then we have to activate them manually, if you dont want to transport them.

  • I have a scenario,  ECC-PI-Message broker. ECC sending IDOC to  PI, PI execute mapping and  sending data to Message borker.(with almost one to one mapping)., IDOC(AAE)-PI-JMS. Now my requirement is., from PI  after mapping we need to save file in SAP fold

    I have a scenario,  ECC-PI-Message broker. ECC sending IDOC to  PI, PI execute mapping and  sends data to Message borker(thru JMS channel).(with almost one to one mapping)., IDOC(AAE)-PI-JMS. Now my requirement is., from PI  after mapping we need to create file with same data what ever send to Message broker and put the file in SAP folder without touching mapping. Is it possible? Please advise with the steps. We are using the ICO for this senario. Quick response is appriciated.

    Hi Pratik,
         http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42?quicklink=index&overridelayout=true
    This link might help.
    regards
    Anupam

  • Create Info objects after extracting ds from ecc

    Hi All,
    I have replicated ds from ecc to bi and executed the infopackage. Now the data is upto psa level. How to create info objects after loading data to psa level to load the info objects to data targets like infocubes and dso. I have done to sucessfully to a flat file.
    Thank you.

    Hi Sudhir,
    You can go into 2 directions: use as much as possible Business Content InfoObjects or use custom InfoObjects. A combination is also possible.
    Especially in conjunction with SAP ECC extractions the Business Content InfoObjects are a safe choice. However, please consider the advantages it can have to use custom InfoObjects.
    If you would like to go into the direction of custom InfoObjects, then I suggest reading the following blogs:
    Generating Data Warehouse InfoObjects - Part 1: Introduction;
    Generating Reporting InfoObjects based on Business Content - Part 1: Introduction.
    Best regards,
    Sander

  • Am I need to Eliminate the object after used??

    Am I need to Eliminate the object after used to release the resource ? Which like C code: free(Dynamic variable). And why and how they works in java??
    Thank alot !!!

    You may want to read about garbage collection in java. Basic intro in [url http://java.sun.com/docs/books/tutorial/java/data/garbagecollection.html]tutorial, after that search around the site for garbage collection and related topics
    Mike

  • Pass object reference from TestStand to C#

    Hi,
    I have created a GUI in .NET which i invoke in TestStand (through a custom step type). User can enter a object reference teststand variable in the UI input expression box. So i need to get the object value in that variable and use it to call some .net functions. To get the values from expression box of UI and put in TestStand step variable i use:
             PropertyObject.SetValInterface("Step.TestStationObj", 0, tsexprTestStationObj.DisplayText.Trim()); To check the value in the step variable if i do:
             MessageBox.Show("TestStation obj after setting:",PropertyObject.GetValInterface("Step.TestStationObj",0).ToString());
    But i do not get any value. Guess it is null. Is this a correct way? My intension is to get the value corresponding to a teststand object reference and pass it to C#. The C# UI control is of type NationalInstruments.TestStand.Interop.UI.Ax.AxExpressionEdit

    Thanks Andy.
    I still get the error when i am trying to pass the object created from C# to Teststand. I have explained what i am trying to do. Kindly requesting your assitance on this issue.
    I have 2 classes in C# (code given below), I am trying to pass the object of "Counter" (c1) class from the "Mainfrm" to teststand. In teststand(counter.seq), I am trying to access the function "GetCount() and SetCount()". I have attached the snapshot of the error that i get from teststand.
    Class Counter
        private int count;
        public int GetCount ()
           return (count);
        public void SetCount(int _count)
           count = _count;
    Class Mainfrm : Form
        public Counter c1;
            private void Mainfrm (object sender, EventArgs e)
                InitializeComponent();
                axApplicationMgr1.Start();
                mEngine = axApplicationMgr1.GetEngine();
                currentFile = axApplicationMgr1.OpenSequenceFile(@"Counter.seq");
                pobj = mEngine.NewPropertyObject(NationalInstruments.TestStand.Interop.API.PropertyValueTypes.PropValType_Container, false, "", 0);
                pobj.NewSubProperty("Parameters.ObjRef1", NationalInstruments.TestStand.Interop.API.PropertyValueTypes.PropValType_Reference, false, "", 0);
                pobj.SetValInterface("Parameters.ObjRef1", 0, (object)c1);
                mExecution = mEngine.NewExecution(currentFile, "MainSequence", null, false, 0, pobj, null, null);
    Attachments:
    ErrorFromTestStand.JPG ‏28 KB

  • Note 1054131 - Invalid DB objects after upgrade

    HI,
    We performed a migration from SAP 4.6C/Oracle9i.solaris to SAP 4.6C/Oracle10g/HPUX.
    Now we need to upgrade SAP4.6C/Oracle10g/HPUX to ECC6.0.
    As a prerequisite, I have checked the note
    Note 1054131 - Invalid DB objects after upgrade
    And I ran the script
    SQL> SELECT OWNER, OBJECT_NAME, OBJECT_TYPE FROM DBA_OBJECTS
      2  WHERE STATUS='INVALID'
      3  AND
      4  OWNER='SYS';
    OWNER
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    SYS
    DBMS_REPCAT_FLA
    PACKAGE BODY        INVALID
    SYS
    DBMS_REPCAT_MAS
    PACKAGE BODY        INVALID
    OWNER
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    SYS
    DBMS_REPCAT_UTL2
    PACKAGE BODY        INVALID
    SYS
    DBMS_REDEFINITION
    OWNER
    OBJECT_NAME
    OBJECT_TYPE         STATUS
    PACKAGE BODY        INVALID
    All the invalid objects are package body, can anyone help me how to proceed with this, can I proceed my upgrade to ECC 6.0 or do I need to delete the package body.
    If I want to delete the package body,can you pl give me the commands and also post which whether I need to execute any steps
    Pl help
    Thanks
    Senthil

    Hi,
    I guess you are talking about the Oracle Upgrade and not ECC Upgrade, as following are the pre-requisites for an ECC upgrade.
    Making Database-Specific Preparations for Oracle
    1. Check the value of parameter shared_pool_size:
    4 Preparation
    Making Preparations at the Database Level
    Oracle 9.2: Check the value in file $ORACLE_HOME/dbs/init<SID>.ora.
    Oracle 10.1 and higher:
    select NAME, VALUE from v$parameter where name=’shared_pool_size’;
    select NAME, VALUE from v$parameter where name=’shared_pool_reserved_size’;
    If the value is lower than 150 MB, increase it to at least 150 MB (400 MB is better), and restart the
    database.
    2. Log on as user <sapsid>adm at the operating system level.
    3. Log on to the database as the Oracle user system with sqlplus
    4. Check the resource quotas of the database user SAPR3 or SAP<SAPSID>:
    Oracle error 1536 can occur during the upgrade if the resource quotas of database user SAPR3
    orSAP<SAPSID> are limited. Make sure that these quotas are unlimited. Check whether the table
    DBA_SYS_PRIVS contains one of the following entries:
    grantee=’SAPR3/SAP<SAPSID>’,privilege=’UNLIMITED TABLESPACE’,adm=’YES’
    grantee=’SAPR3/SAP<SAPSID>’,privilege=’UNLIMITED TABLESPACE’,adm=’NO’
    To do this, enter the following SQLPLUS statement:
    select * from dba_sys_privs where grantee = ’SAPR3/SAP<SAPSID>’;
    If this entry does not exist, enter the SQLPLUS statement:
    grant unlimited tablespace to sapr3/SAP<SAPSID>;
    5. Log off from the database with the command quit.
    6. Only if using the dictionary managed tablespaces function:
    Make sure that the storage parameters MAXEXTENTS and NEXT have the correct values for certain tables and indexes. Otherwise, they may overflow during the upgrade. The Oracle-specific upgrade SAP Note contains the tables and the required minimum values.You can display the current settings with BRSPACE. The index names are not constant. However, you can also determine these names with BRSPACE. SAP Note 11777 describes how to change the parameters NEXT and MAXEXTENTS.
    7. Only valid for: SAP R/3 3.1I
    Make sure that parameter OPTIMIZER_MODE is set to OPTIMIZER_MODE=RULE.
    For Oracle 9.2, check and, if necessary, edit the following Oracle profile:
    $ORACLE_HOME/dbs/init<SAPSID>.ora
    For Oracle 10.1. and higher, use the following statements:
    Sqlplus /nolog
    Connect /as sysdba
    Alter system set OPTIMIZER_MODE=’RULE’ scope=spfile;
    8. Only if you do not switch off archiving during the upgrade:
    If you want to leave brarchive running during the upgrade to avoid archiver stuck situations (brarchive -f ...), proceed as follows:
    a) Create a temporary copy of brarchive:
    4 Preparation
    4.23 Making Preparations at the SAP System Level
    cp /usr/sap/<SAPSID>/SYS/exe/run/brarchive /tmp
    b) Start brarchive as user ora<sapsid> from the temporary directory /tmp/brarchive -f ...
    c) After the upgrade, delete the copy of brarchive.
    This procedure avoids upgrade errors caused by the program files being overwritten during the upgrade.
    9. If your database version is already higher than the minimum version for the new release, we recommend that you exchange the DBA tools (such as BRSPACE) for the upgrade. The Database Software Oracle DVD for the database contains the up-to-date tools that you unpacked on the current kernel when you migrated the database. After you execute PREPARE, unpack this archive again into the exe subdirectory of the upgrade directory. This overwrites the DBA tools optimized for the minimum required database version with the tools best suited to your database version.
    And if you are talking about an Oracle Upgrade then you just need these to compare once you have upgraded to 10g.
    3.9 Checking for Invalid Database Objects
    This optional step lets you check if there are any invalid database objects before the database upgrade to Oracle database 10g starts. After the upgrade it helps you distinguish database objects that have become invalid due to the upgrade process from those that were already invalid to start with.
    Procedure
    1. Execute the following commands:
    SQL> spool invalid_objects
    SQL> select unique object_name, object_type, owner from dba_objects where status
    = 'INVALID';
    SQL> @?/rdbms/admin/utlrp.sql
    SQL> select unique object_name, object_type, owner from dba_objects where status
    = 'INVALID';
    SQL> spool off
    A list of invalid objects before the upgrade is now generated.
    2. Check the list of invalid objects after the upgrade.
    If any objects in the list from before the upgrade are also in the list of invalid objects after the upgrade, you can be sure that this is not due to the upgrade process.
    Regards,
    Suhas

  • Install Info Object 0BSTAT from business content

    Hi Guys,
    I am trying to install info object 0BSTAT from business content , i have selected the options
                                 grouing "only necessary obects"   "start automaticall" "Hierarchy" ad dragged info obect from left side into collected objects and selected the install and trasport option form Install, assigned the trasnport also, it didn't give any errpor message but info object is not getting activated.
    An body had the expericence with this issue, please share you ideas how to fix the issue.
    Thanks
    Best regards
    Shekar Gunda

    Thanks for your reply Matrin.
    I looked at the log 
    Log is:
    Installation of: Onfo Object (IOBJ)
    You onl have authroization to display info object 0BSTAT
    Transfer/Merge of the content version (Object Type Infoobject)
    Activation of obects with type Info Obect
    Saving Objects with type Infoobject
    Transferring the 1 objects from type IOBJ took 0.4 seconds
    Post-Processing of objects after activation
    The post-processing lasts 0.0 seconds
    Object IOBJ 0BSTAT was written to order/task EWD*******
    You onl have authroization to display info object 0BSTAT
    I looked at the SU53 also  there is one error message  related to info object BSTAT
    Currently aunthorization Field  ACTVT Activit is   "23"
    Does this mean i don't have autorization to install of info obects, do wee need any special activity is required in the for installing info object
    Please suggest me how to proceed.
    Thanks
    Best regards
    SG

  • Do not allow change of Reference Object after Order release

    Dear All,
    The requirement is that we should lock(not able to change) the Reference Object after the Maintenance Order is released. Can we acheive this in standard way or do we need to go for development.
    If going for development what should be the basic logic.
    Regards,
    MLN Prasad

    Prasad,
      You are accomplishing the same utilizing the built in enhancement framework([Implicit enhancements|http://help.sap.com/saphelp_nw70/helpdata/en/70/63da4023a28631e10000000a1550b0/frameset.htm]), WITHOUT making a MODIFICATION to the system. This technology / functionality is available from ECC 6.0 . You would need to be very careful in using the implicit enhancement functionality so that you don't break the flow. Your requirement seems to be a simple one which could be accomplished by tweaking the screen attributes of the field under certain conditions, for this specific screen in the program. You may also have to make the Priority field a display only, so that it doesn't trigger a change through it via the user exit or through standard.
    Regards
    Narasimhan

  • ORA-12838: cannot read/modify an object after modifying it in parallel

    I am getting the above error when i hit this part in my load ....
    can somebody suggest me why it could be in this case ?
    MERGE INTO PART1 H
    USING (SELECT PA1,                              PART1,                                   CON1,                                   GEO1,                                   COUN1,                                   KIT1                          FROM W1 ) WH ON
                                       (H.PART1=WH.PART1)                                   --on PK darshan 01-03-2006
         WHEN MATCHED THEN
    UPDATE SET                                   H.CON1     =WH.CON1,                         H.GEO1     = FN_GETGEOCODE ( WH.GEO1 ),               H.COUN1     =WH.COUN1,                         H.KIT1     =WH.KIT1,                    H.DT1     =TO_NUMBER(TO_CHAR(FN_GETGMTDATE(SYSDATE),'YYYYMMDD')),                              H.DT_LAST1          = FN_GETGMTDATE(SYSDATE)
              WHEN NOT MATCHED THEN
         INSERT     (H.PART1,                                   H.PART2,                                   H.CON1,                                   H.GEO1,                                   H.COUN1,                                   H.KITD1,                                   H.DT1,                                   H.DT_1,                                   H.DT_LAST_1)
              VALUES(CASE FN_MERGE_COUNTER(gpi_inserting)
                   WHEN 0 THEN     WH.PART1 END,                         WH.PARTN1,                              WH.CON1,                              FN_GETGEOCODE ( WH.GEO1),                    WH.COUNT1,                              WH.KIT1,
              TO_NUMBER(TO_CHAR(FN_GETGMTDATE(SYSDATE),'YYYYMMDD')),                                   PKG_COMMONACTIVITIES.FN_GETGMTDATE(SYSDATE),                                        PKG_COMMONACTIVITIES.FN_GETGMTDATE(SYSDATE)
                                            );

    does this give you a clue?
    SQL> CREATE TABLE t AS
      2  SELECT owner, object_name FROM all_objects
      3  WHERE 1=0;
    Table created.
    SQL> INSERT /*+ APPEND */ INTO t
      2  SELECT owner, object_name
      3  FROM all_objects;
    8982 rows created.
    SQL> SELECT * FROM t;
    SELECT * FROM t
    ERROR at line 1:
    ORA-12838: cannot read/modify an object after modifying it in parallelI bet that you need a commit after loading w1.
    John

  • How to get object type and object key from Bapi_acc_gl_posting_post

    Hi,
      Currently iam implementing FB01 transaction thru Bapi_acc_gl_posting_post.
    I got object key by including document no, fiscal year and Document data
    I got object type from TTYP table. But iam not sure it is correct.
    After implemeting the BAPI return code is giving successfull and i commited the process.
    But at last data is not updating in BKPF table. There is no document number displayed at BKPF...Please go thru and do the needful its urgent.
    Thanks in advance....
    Regards,
    Ganga

    Hi Max,
            I have executed it and it is working only for GL posting but i need to make this for different accounting types like vendors, customers, material customers etc.
    I found BAPI_ACC_DOCUMENT_POST. when i executed it is giving error as 'Line entered several Times'.
    I following is my code. If time permits please go thru my code and do the need ful..
    Thanks in advance.
    REPORT  zk_fi_fb01                     .
    Data: v_objkey(20) type c.
    Data: Docheader type BAPIACHE09.
    Data: ACCOUNTGL LIKE BAPIACGL09 occurs 0 with header line,
         ACCOUNTRECEIVABLE like BAPIACAR09,
          ACCOUNTPAYABLE like BAPIACAP09 occurs 0 with header line,
          CURRENCYAMOUNT like BAPIACCR09 occurs 0 with header line,
          RETURN like BAPIRET2 occurs 0.
    Data: obj_typ like BAPIACHE09-OBJ_TYPE,
          OBJ_KEY like BAPIACHE09-OBJ_KEY,
          OBJ_SYS like BAPIACHE09-OBJ_SYS.
    *Data: gv_belnr type belnr_d.
    *Data:file_Na type String.
    Data: lsys like TBDLS-LOGSYS.
    *START OF SELECTION
    START-OF-SELECTION.
    *CALL FUNCTION 'NUMBER_GET_NEXT'
    EXPORTING
       nr_range_nr                  = '19'
       object                       = 'RF_BELEG' "'FIAA-BELNR'
      QUANTITY                      = '1'
      SUBOBJECT                     = '7777'
      TOYEAR                        = '2007'
      IGNORE_BUFFER                = ' '
    IMPORTING
      NUMBER                        = gv_belnr
    QUANTITY                      =
    RETURNCODE                    =
    *CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
    IMPORTING
      OWN_LOGICAL_SYSTEM                   = lsys
    EXCEPTIONS
      OWN_LOGICAL_SYSTEM_NOT_DEFINED       = 1
      OTHERS                               = 2
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    *concatenate gv_belnr '7777' '2007' into v_objkey.
    *Filling Document Header Details
    *Docheader-OBJ_TYPE = 'BEBD'.
    *Docheader-OBJ_key = V_objkey.
    *Docheader-OBJ_SYS = lsys.
    docheader-BUS_ACT = 'RFBU'.
    Docheader-USERNAME = sy-uname.
    Docheader-COMP_CODE = '7777'.
    Docheader-DOC_DATE   = '20070724'.
    Docheader-PSTNG_DATE = '20070725'.
    Docheader-FISC_YEAR = '2007'.
    Docheader-DOC_TYPE = 'KZ'.
    *Item data for ACCOUNTGL
    ACCOUNTGL-ITEMNO_ACC = '0000000001'.
    ACCOUNTGL-GL_ACCOUNT = '0000000501'.
    ACCOUNTGL-DOC_TYPE   =  'KZ'.
    ACCOUNTGL-COMP_CODE  = '7777'.
    ACCOUNTGL-FISC_YEAR  = '2007'.
    ACCOUNTGL-PSTNG_DATE = '20070725'.
    *ACCOUNTGL-DE_CRE_IND = 'S'.
    append ACCOUNTGL.
    ACCOUNTGL-ITEMNO_ACC = '0000000002'.
    ACCOUNTGL-GL_ACCOUNT = '0000400002'.
    ACCOUNTGL-DOC_TYPE   = 'KR'.
    ACCOUNTGL-COMP_CODE  = '7777'.
    ACCOUNTGL-FISC_YEAR  = '2007'.
    ACCOUNTGL-PSTNG_DATE = '20070725'.
    *ACCOUNTGL-DE_CRE_IND = 'H'.
    append ACCOUNTGL.
    *Account payable
    ACCOUNTPAYABLE-ITEMNO_ACC = '0000000001'.
    ACCOUNTPAYABLE-GL_ACCOUNT = '0000000102'.
    ACCOUNTPAYABLE-COMP_CODE  = '7777'.
    append ACCOUNTPAYABLE.
    ACCOUNTPAYABLE-ITEMNO_ACC = '0000000002'.
    ACCOUNTPAYABLE-GL_ACCOUNT = '0000400002'.
    ACCOUNTPAYABLE-COMP_CODE  = '7777'.
    append ACCOUNTPAYABLE.
    *Currency Amount
    CURRENCYAMOUNT-ITEMNO_ACC = '0000000001'.
    CURRENCYAMOUNT-CURRENCY_ISO = 'INR'.
    MOVE 1000 TO CURRENCYAMOUNT-AMT_DOCCUR.
    Append CURRENCYAMOUNT.
    CURRENCYAMOUNT-ITEMNO_ACC = '0000000002'.
    CURRENCYAMOUNT-CURRENCY_ISO = 'INR'.
    MOVE '1000-' to CURRENCYAMOUNT-AMT_DOCCUR.
    Append CURRENCYAMOUNT.
    clear CURRENCYAMOUNT.
    clear ACCOUNTGL.
    clear ACCOUNTPAYABLE.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader          = Docheader
      CUSTOMERCPD             =
      CONTRACTHEADER          =
    IMPORTING
       OBJ_TYPE                =  obj_typ
       OBJ_KEY                 =  obj_key
       OBJ_SYS                 =  obj_sys
      tables
       ACCOUNTGL               = ACCOUNTGL[]
      ACCOUNTRECEIVABLE       =
       ACCOUNTPAYABLE          = ACCOUNTPAYABLE
      ACCOUNTTAX              =
        currencyamount          = CURRENCYAMOUNT
      CRITERIA                =
      VALUEFIELD              =
      EXTENSION1              =
        return                  = return.
    if sy-subrc = 0.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
       WAIT          = ' '.
    endif.
    if sy-subrc = 0.
    WRITE: / OBJ_KEY,
             OBJ_TYP,
             OBJ_SYS.

  • How do I get an activeX object reference from a LabVIEW ActiveXContainer ref?

    How do I get an activeX object reference from a LabVIEW ActiveXContainer ref?
    I'm trying to control an ActiveX object (a Web Browser) from another VI and need to get the object reference programmatically. I can get the LabVIEW ActiveXContainer reference, but am lost on how to get the reference for the object _inside_ the container.

    Hi Lee,
    The reference to the container is actually also accessing the object inside the container. Use the Property Node and Invoke Node to access properties and launch methods for the object. I've attached a small example that passes the reference to a SubVI and invokes a method inside the SubVI.
    - Philip Courtois, Thinkbot Solutions
    Attachments:
    WebContainer.zip ‏21 KB

  • Advice on how to access photos on an iPad that were synced from a now failed laptop? The question stems from a need to return my current iPad having just taken delivery of a new unit. Thanks

    I am after some advice on how to access photos on an iPad that were synced from a now failed laptop? The question stems from a need to return my current iPad having just taken delivery of a new unit. Thanks

    If you have a dropbox account, there's a free app (probably more) that syncs photos to your dropbox account - picbox. 
    There's also PhotoSync that syncs photos to/from a number of different services and devices.

  • Error while downloading the object u201CDNL_CUST_PROD0u201D from ECC to CRM

    Hi All,
    I am trying to download the object u201CDNL_CUST_PROD0u201D from ECC to CRM. However it ended up throwng an error. Below are the error details:
    The following Errors/Warnings occured. Do you want to continue?
    Please read the OSS Note no. 212666 (QUEUE_ALREADY_EXITS:R3AI_DNL_CUST_PROD0)*
    DNL_CUST_PROD0: Object will not be loaded
    After getting the above error I deleted the already running instance and again ran it. But when I again ran it, it gave me the same error. So I checked for the entries in Outbound queue of ECC system. But couldnt found any entry.
    Please help me fixing the issue.
    Thanks in Advance.
    Cheers,
    Rj

    Hello RJ,
    Check CRM I /B and O / B (txn:SMQ2 and SMQ1) and also R/3 I /B and O / B queue, for the presence of
    R3AI_DNL_CUST_PROD*.
    Also, abort the running load in txn:R3AM1 for object DNL_CUST_PROD0.
    Then try to re-load the object.
    I do not see any other reasons for the above error message.
    Best Regards,
    Shanthala Kudva.

  • Why doesn't "include/object/text from file" work?

    I want to include (link) text from other Word documents to a  main  Word document and I use "include/object/text from file" (Word function)
    It works fine when I do so in "H:", but doing exactly the same in the Sharepoint environement result in "nothing" (nothing happens)
    It DOES work if I link from a document saved in Sharepoint to a "H:" - document, but that is of no use since I need all the documents to be stored in Sharepoint.
    Guess it has to do with the set up och Sharepoint.
    Greatful for any tips!

    Hi,
    Did you mean insert a object in the documents?
    Did you open the file with the local application or office web application?
    In the office web application, it doesn’t have the function to insert a object in the browser.
    I had tested with some word files in the library, open the word files with the local application, then insert file using the insert object function.
    It worked without any issue.
    What’s more, I had tested with Office 2010 and Office 2013, they all worked.
    Did the issue occur in other libraries? You can create a new library to check whether it works.
    You can also download a copy for the issued file, then open it in the local machine to check whether it works in the local machine.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Newbie seeks advice on importing to iMovie from JVC Everio

    Hi there, While I'm an old hand at the Mac - I really have little experience of AV applications and cams. I am very interested in buying a JVC Everio GZ-MC 500 or MC 200 Digital Media Camera, but just found out that I cannot import movie outputs into

  • Information platform services in BODS 4.0

    What are the pros and cons of using information platform services that come with Data Services 4.0 and if we use Data Services 4.0 with information platform services from BOE4.0?

  • Time in Calendar LOV.

    Hi, we are working on forms 10g, ebs12.1.3. Developed one custom form , put date lov for one filed. it is showing calender normally. My requirement is need to select time ( ex. 11:30:00 A.M). Please help me to show time in calendar LOV. Thanks Venu.

  • COMPUTERS WONT AUTOMATICALLY PICK UP TC NETWORK

    Hi there.. There's always something that doesn't go according to plan! I have just upgraded our network to a TC500GB. All our macs can see the TC network and I have also added them all as clients to bypass the WPA security. I have listed the TC netwo

  • Audit in Oracle

    Hello, everybody! I have a problem in auditing some user actions in Oracle. For example, how could I audit using of GRANT ANY PRIVILEGE privilege? I asked it for auditing: AUDIT GRANT ANY PRIVILEGE BY ACCESS The following record has been appeared in