What are all the objects can be imported  and exported...

Hi all,
what are all the objects can be imported ..
and what are all objects exported....in XI..
and what is context objects and logical routing..
Cheers,
Raghavesh

Hi,
Your question 1 is not very clear. Are you taking about Export and Import under TOOLS --> EXPORT / IMPORT? If yes, all objects created in the IR and ID can be exported and improted. They are used for moving your objects from one environement to another .TPZ files.
Individual Objects that can be improted in the IR  are those that come under
1. External Definitions --> XSD, WSDL, DTD which acts
as the message types.
2. Idocs and RFC's.
3. Imported Archives -->External Mapping progrars ( Java and XSLT ) , external .jar files etc.
Context objects is nothing but to put in simple words an XPATH. At times XPATH can become too long and complex and to avoid typing them at different places, you create CONTEXT Objects for these path and then use them.
Logical Routing refers to Conditional Receievr / Interface Determination where on the basis on some conditoon your target Recievr / Interface is determined.
Regards,
Bhavesh

Similar Messages

  • What are all the errors that can be corrected by using tran code rsrv?

    hi all,,
    what are all the errors that can be corrected by using tran code rsrv?
    can anyone list me out a list of errors that can be rectified using rsrv. And let me know the steps involved to rectify those errors using trns code rsrv.
    regds
    hari

    Hi Kalyan,
    I have urgent need of the RSRV DOCS.
    Can you mail it to [email protected]
    I will highly appreciate.
    Thanks in Advance
    SS
    Points will be awarded

  • What are all the Softwares i can install on Solaris 8

    Hi,
    Can anyone tell me what are all the Softwares i can install on Solaris Machine.
    If I want to develop a web Based appalication what are the necessary things i have to do.
    What are all the major application can develop?.
    Is there any already Developed site or some demo which we can see online?
    I will be very thankful i you provide some related information regarding this.
    THanks in Advance.

    Hi,
    You can check out http://soldc.sun.com website and select Software.
    This list the categories of Sun Software, freeware, Web Start Wizard
    much more information.
    ...jagruti

  • What are all the possible joins can be made in infosets?

    Hi all,
    Can anyone let me know what are all the possible joins that can be made in an infosets.
    can anyone explain me with an example.
    thanxs
    haritha

    HI Haritha,
    The Join Types are,
    1) Equal
    2) Left outer Join
    3)Left inner Join
    4) Temporal Join
    Equal, you have only records of ODS 1 and ODS 2 that matches.
    Left Outer, you have all record of ODS 2 and only matched records of ODS1
    Left Inner, you have all record of ODS 1 and only matched records of ODS 2
    Check this link for more,
    http://help.sap.com/saphelp_sem60/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    Also check this thread,
    Difference of Left - Outer - Inner and Equal InfoSET Join
    Hope this helps ......

  • How to identify what are all the events are created in background jobs?

    Hi all,
    how to identify what are all the events are created for  background jobs. And what events gets triggered for a particular job.
    thanxs
    haritha

    Hi Haritha,
    JOB is a program which starts to a determined point of time and executes some standard programs in the system. JOBs can be planed to a determined point of time on the regular basis (every night, for example) or to some discret time moments. So, the JOB can be planed and then will be started automatically without the manual start.
    Realtime programs are understood in the most cases as actual program execution which is started by somebody to the actual moment of time.
    Typically per JOBs some special processes will be started that should be executed automatically and regularly: for example, IDOC application, some correction reports, statistic updates etc.
    Standard jobs are those background jobs that should be run regularly in a production SAP System These jobs are usually jobs that clean up parts of the system, such as by deleting old spool requests.
    Use
    As of Release 4.6C, the Job Definition transaction ( sm36 ) provides a list of important standard jobs, which you can schedule, monitor, and edit.
    Standard jobs are those background jobs that should be run regularly in a production SAP System. These jobs are usually jobs that clean up parts of the system, such as by deleting old spool requests.
    for more information you can go thru the following thread:
    http://help.sap.com/saphelp_nw70/helpdata/en/24/b884388b81ea55e10000009b38f842/frameset.htm
    About Events:
    Events have meaning only in the background processing system. You can use events only to start background jobs.
    Triggering an event notifies the background processing system that a named condition has been reached. The background processing system reacts by starting any jobs that were waiting for the event.
    Types of Events:
    There are two types of events:
    1.)System events are defined by SAP. These events are triggered automatically when such system changes as the activation of a new operation mode take place.
    2.)User events are events that you define yourself. You must trigger these events yourself from ABAP or from external programs. You could, for example, signal the arrival of external data to be read into the SAP system by using an external program to trigger a background processing event.The event scheduler processes an event if the event is defined in the system.
    For example, if a system (System 1) receives an event from another system (System 2), the event scheduler of System 1 processes the event only if it is defined in System 1. That event does not need to be defined in System 2 (the sending system).
    You define an event by assigning a name (EVENTID) to it. When defining an event, you do not define the event arguments.
    for more information you can go thru the following thread:
    http://help.sap.com/saphelp_nw04s/helpdata/en/fa/096e2a543b11d1898e0000e8322d00/frameset.htm
    When you schedule the process chain or infopackages the jobs associated with it run in the background mode. In case you want to create a job for a specific activity you can do so in SM36. You would be creating jobs that would get executed in any one of the options:
    1. Immediate
    2. Date & Time
    3. After event.
    4. After job.
    5. At Operation mode.
    In case you want to view the job logs go to sm37.
    Also Pls check DB02 for database performance and ST03 for workload .
    Analyse u will have an idea ,
    *pls assign points,if info is useful**
    Regards
    CSM reddy
    null

  • Dead-code elimination--what are all the rules?

    This article http://www-128.ibm.com/developerworks/library/j-jtp12214/ has an entire section on dead-code elimination (DCE).
    Does anyone know what all the criteria are by which the hotspot JIT compiler can determine that code is "dead"?
    One obvious criteria is if the code will never get executed. I think that the canonical example is code like this:
           static final boolean debug = false;
           static void someMethod() {
                   if (debug) {
           }Here, the compiler (javac as well as hotspot's JIT) can determine that someMethod has nothing inside it that could ever get executed, so it can be turned into an empty method.
    If you look at that developerworks link above, he gives an even more interesting example for how hotspot's JIT can make sophisticated DCE based on inlining.
    What I want to know is what are all the criteria that hotspot can use to decide that code is dead. Code that is never executed is always correct. But can it make more liberal decisions as to what counts as dead code?
    Consider this code:
         int[] foo = new int[1000];
         int bar = foo.length;
         // don't use foo again, but do use barA smart compiler could recognize that the array declaration and allocation is actually useless, and simply do
         int bar = 1000;(Thank you Brian for this example.)

    What are the rules? Naturally, the only definitive answer can be given can be given by the HotSpot JIT.
    That's not a very satifying answer, but it's true. The server JIT, like most compilers, has been taught hundreds and hundreds simplifying transformations that, in part, enable dead code elimination. Enumerating the criteria is a nearly impossible task.
    But, your specific example is an interesting case.
    int[] foo = new int[1000];
    int bar = foo.length;For simplicity, I assume foo and bar are locals to a method, and in this case, the 6.0 HotSpot Server JIT will recognize that foo is unchanged before the initialization of bar, and effectively change it to:
    int[] foo = new int[1000];
    int bar = 1000;The JIT can't get rid of the allocation of the new array without a more advanced optimization called Escape Analysis, which attempts to determine the dynamic scope of objects. Of course, if these two lines comprise the whole method, then the analysis is fairly trivial.
    Any intervening code will make the analysis more complex:
    int[] foo = new int[1000];
    baz(foo);
    int bar = foo.length;
    qux(foo);The calls sites will preclude your desired optimization, unless the called methods baz and qux can be inlined and analyzed. The code in baz can neither modify foo nor allow it to escape, and qux can not allow it to escape.
    HotSpot's implementation of escape analysis is not quite yet complete, but should be available relatively soon.

  • How do we know what are all the fields  updated in a screen?

    Hi all,
             If i am making modifications in row details of sales order screen .for eg, <b>i am changing the quantity or price for a row</b> 
             I want to write log file for the updated fields for that particular sales order.
             <b> How do we know what are all the fields are updated ?</b>     
             If we can use SBOTransaction_Notification procedure.How to write code inside that.
             Please provide code example for that.I have downloaded the sample.But i donot know how to use 'Add code to here ' part.
             Please help me to solve this.Hope  your  reply soon
    Regards,
    V.Rangarajan

    Hi, V.Rangarajan!
    When the field in the matrix is filled with some value and the user moves to another field, the et_LOST_FOCUS event occurs. So, i think you can try to handle ItemEvents and use such code (for example):
    if (pVal.EventType == SAPbouiCOM.BoEventTypes.et_LOST_FOCUS && pVal.ItemUID == "38" && pVal.BeforeAction == false && pVal.FormType == 139)
    string ChangedColumnID = pVal.ColUID;
    int ChangedRowNumber = pVal.Row;
    and write the values to your log.
    "38" - is the matrix ID in the Orders form
    "139" - is the Orders form
    Also you can access to the value, that user had put into the field.
    Hope this helps!

  • How to find out what are all the change pointers assoicated for an idoc ??

    Hi ,
    How to find out what are all the change pointers activated for an idoc ??
    Thanks,
    Varma

    Verma,
    You can check what are the active Change Pointers for the message type in tcode <b>BD50</b>
    Use tcode <b>BD61</b> to check whether change pointers are active or not??
    Hope this helps..

  • How to find what are all the rules and events are monitoring for specific server in SCOM 2007

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.

    how to find what are all the rules and events are monitoring for specific server in SCOM 2007.
    I need to know what are all the events, services, and rules are monitored for the specific server.
    Kindly help me friends.
    Thanks for the question Sandoss. This is something that we all come across at sometime.
    Thanks & regards, Sumit Agrawal
    The lack of this feature is an inexcusable oversight for an enterprise management product.  They have some serious lightweights making design decisions on the SCOM team. 5 thumbs down. 
    BTW the answer is probably LOTS of stuff. Literally 100's of workflows are running on any server. 
    The following OpsMgr DB query will list all running monitors on a server. Change the name of @srv. I think this works pretty well.  I'd like some feedback if something is missing.
    DECLARE @srv varchar(30)
    SET @srv = 'your name here'
    SELECT mon.displayName as monitor, bme.FullName,bme.DisplayName as object,
    case
        when s.HealthState = 1 then 'healthy'
        when s.HealthState = 2 then 'Warning'
        when s.HealthState = 3 then 'Critical'
        else 'N/A'
    end as Health
    FROM state AS s WITH (NOLOCK)
    left join BaseManagedEntity as bme WITH (NOLOCK) on s.basemanagedentityid = bme.basemanagedentityid
    left join dbo.MonitorView Mon WITH (NOLOCK) on Mon.ID = s.monitorid
    where
    bme.FullName like '%' + @srv + '%'
    and s.HealthState <> 0
    and mon.IsInternalRollupMonitor = 0
    and mon.IsExternalRollupMonitor = 0
    order by bme.DisplayName, mon.displayName

  • How to identify what are all the errors appears in process chain,

    Hi all,
    i have a process chain running, but i want to find out what are all the errors that the process chain has thrown
    thanks
    pooja

    Hi Pooja,
    Errors in monitoring:
    SID error
    Reason: If the corresponding master data is missing for the particular transaction data.
             1. Check for the load timing for the respective master data, if it less than an hour  then make the request red and repeat the ip.
             2. If the data is loaded to PSA then you have to delete the request from target and manually push the data to from PSA.
             3. If we are required for selective update then note down the info source from header and find it in RSA1,select the one with ‘Single as postfix’.
             4. Goto ‘data selection’ tab and change the range.
    Tip: change the last 4 digits for from to ‘0000’and the last 4 digit for to     ‘9999’.
            5. Repeat the ip.
             6. In case only of failure in one target goto RSA1 find the PSA, put he request no. and reschedule it.
    Note: IF PSA is present never make the request red rather delete it.
    Replication error
    Reason: Data source replication Failed.
             1. In order to handle this error you should be known to IP, info source and source system.
             2. Goto RSA1, find the data source in the source sys tab.
             3. Right click on the data source and replicate it.
             4. Since all the transformation rules pertaining to this data source need to be reactivated so go to SE38 and execute rs_transtru_activat_all, data source and sys name.
             5. Delete the ‘red’ request from the target.
    Update R not supported
    Reason: The corresponding initialization flag for the ip is lost.
             1. Goto header click on the ip and goto schedule tab and click initialize in the source system, whatever screen appears delete the only request present(the initialization flag).
             2. Goto RSA1, find the ip in the info source (one with the Adhoc initialize flag).
             3. Goto update tab and select ‘Initialize delta process’ try going for ‘with data transfer’.
             4. Reschedule the IP.
    Duplicate Record Error
    Reason: Duplicate error records for the loaded master data.
             1. Goto info package via header or via RSA1.
             2. Goto ‘processing tab’ and change the ip setting, selecting only PSA and ignore duplicate records and re run the ip.
             3. Do remember to change the ip settings back to the original once after the second step.
    ODS activation failure
    Reason: Prerequisites for ODs activation not satisfied i.e. unique key.
             1. Goto ‘maintain variant’.
             2. Check for the ‘QM’ status of the requests in the target they should be green.
             3. Then click the ODS activation tab.
             4. In the screen which appears put the requests for which ODS activation failed.
             5. Activate these and keep on refreshing them until status reverts from green,
    Remember to refresh these requests one at a time.
             6. If requests are red then delete them from target.
             7. Reschedule the IP.
    Note: Never Try activating ODS manually if it is Y1.
    Aggregate Rollup error
    Reason: No aggregate found for the respective rollup.
             1. Click on the variant in which the error occurred.
             2. Goto chain tab and copy the variant and instance.
             3. Run the nestle provided program YBW05.
             4. Put in info in there and put the status as g – ‘green’.
             5. Execute and refresh the status.
    Lock issue
    Reason: The same ip is been locked by other user or may be used by other process chain.
             1. We can see the locked entries and in the transaction SM12.
             2. Wait for the other process to get complete once the ip loads to target in that process then there is no need for running it for the process.
             3. In other case make the request red, when PSA is present then goto environment tab ->schedule->initiate update.
             4. In the box appears select update in the background.
             5. And the manually update the failed IP’s by selecting manual update in the context menu.
    Alfa confirming value error, Time conversion error, Chain didn’t start, Delay due to long running job, Poor system performance,Heirarchy node exist in duplicate.
    Reasons:
      Alfa confirming error: Data format mismatch.
      Time conversion error: Date, time format mismatch.
      Chain didn’t start: A scheduled chain didn’t triggered at the prescribed timing.
    -For all the above error we have to raise a ticket.
    Idoc or TRFC error
    Reason: An Idoc is been stuck somewhere.
             1. Reload the Master Data manually again from Info-package at RSA1.
             2. Release the Idoc.
             3. In the source system level got environment->transaction->Transaction RFC or Data ware housing level.
             4. In the Screen if the status is ‘Transaction Recorded’ it means its stuck goto edit and click Execute LUW or press F6.
             5. If status is ‘Transaction executing’ then it means its fine wait.
             6. Or raise ticket.
    Error Due to short Dump
    Reason: Error due to Short dump could be due to many reasons i.e. memory, table space, lock, error record, page allocation, failed change run.
    Process terminated in the Source system.
               Reason: Sometimes we face that a load has failed due to job Termination at Source System.             
          This happens due to unavailability of the source system or some connectivity problem between source and target systems.
    1.      Make the request red.
    2.      Delete the request from the data target.
    3.      Reschedule the ip.
    4.      If still the job fails raise the ticket.
    And also check in following links:
    Process Chain Errors
    /people/mona.kapur/blog/2008/01/14/process-chain-errors
    Common Process chain errors
    For Data Load Errors check this blog:
    /people/siegfried.szameitat/blog/2005/07/28/data-load-errors--basic-checks
    Pls assign points if it helps u,
    Thanks & Regards,
    Madhu

  • What is Reservations in MM & what are all the settings?

    Hi SAP Experts,
    What is Reservation? what are all the configuration settings needs to be done to implement Reservations?
    can you please help me out by giving detailed information about Reservation?
    Kindly do on priority basis
    Regards,
    Somu

    Hi
    Not much configuration is required for reservations.
    In IMG -- MM -- Inventory and phy inventory management -- define default values
    Here you need to mention number of days within movement allowed will activate automatically for eacha plant.
    No. of days the reservation can be retained without deletion
    Dyanic availability check:  Here you can mention avalability check requirement during Goods movements.
    Reservations:
    It is a simple MM functionality, here based on the requirement different user departments will create the reservation for future required dates.
    That will help procurement departments to plan for the materials as well accountability of various goods issues.
    Same can be done through MB21, MB22 for create and change respectively.
    Regards,
    Krish

  • What are all the certifications should i do?

    Hii friends,
    I introduce myself as a newbie in dis world of oracle plsql.Me having a experience of 2.5yrs in various but with a relevant exp of 6months on oracle10g plsql.And I think its the time for me to concentrate on doing certifications.
    1) Could you folks can list out me what are all the certification should i go for.
    2)And the books should I buy ????
    3)Sites that provide mock exams????
    I desperately need your valuable suggestions.
    Edited by: user13310481 on Jun 23, 2010 10:53 PM

    user13310481 wrote:
    Hii friends,
    I introduce myself as a newbie in dis world of oracle plsql.Me having a experience of 2.5yrs in various but with a relevant exp of 6months on oracle10g plsql.And I think its the time for me to concentrate on doing certifications.
    1) Could you folks can list out me what are all the certification should i go for.
    2)And the books should I buy ????
    3)Sites that provide mock exams????
    I desperately need your valuable suggestions.
    Please start reading the following articles
    http://blogs.oracle.com/certification/2009/05/the_route_you_choose.html
    http://forums.oracle.com/forums/ann.jspa?annID=794
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39
    My Oracle Video Tutorials - http://kamranagayev.wordpress.com/oracle-video-tutorials/

  • What are all the key words are not recommented in User Exit or Enhancement

    Dear Experts,
    Can any of one tell me, what are all the key words not recommended to use any of the User exit or Enhancement spots?
    Regards,
    Mohana
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Feb 22, 2011 4:10 PM

    No Icon:Visitor
    Student
    Honor Student
    Top Student
    Tutor
    Intern
    Teacher
    Grad Student
    Master’s Graduate
    PhD Student
    Associate Professor
    Professor
    Distinguished Professor
    Regents Professor
    Associate Dean
    Dean
    Provost
    FONDA X. COX, PhD

  • What are all the major SPRO parameters available for MRP run in SAP.

    Dear Frndz,
    What are all the major SPRO parameters available for MRP run in SAP.
    Regards,
    Srini

    Hi,
    For MRP, the main Customization settings involved are:
    1. Activate MRP and Set Up Planning File - OMDU
    2. Define Parallel Processing in MRP - OMIQ
    3. Define Scope of Planning for Total Planning - OMIZ
    If you want to use MRP Areas and include this in Scope of Planning then.
    1. Activate MRP for MRP Areas
    2. Define MRP Areas - OMIZ
    With MDBT of Program : RMMRP000 you can schedule the Background MRP Run. (with a variant)
    If you need any any specific information please inform..
    Regards,
    Siva

  • What are all the subjobs that get called for when a load is scheduled.

    Can any one please tell me - "when I schedule a load to my Infocube or ODS or other data target, what are all the sub jobs/requests that get called for? Like if I go and see in Tcode SM37, I see several jobs running. Any input is greatly rewarded. Thankyou!!!!

    Hi,
    Adding to what is mentioned above, if its scheduled if its a BW datamart load scheduled in background you can see that in  SM37 job log (give BIrequest name) (In source system if load is from R/3) and it should give you the details about the request.
    SM66 > Get the job details (server name PID etc from SM37) and see in SM66 if the job is running or not. (In source system if load is from R/3 or in BW if its a datamart load). See if its accessing/updating some tables or is not doing anything at all.
    Also try SM50/SM51 to find that job.
    Try RSMO from the Infopackage monitor.
    Thanks,
    JItuK

Maybe you are looking for

  • How to create a session variable in Apex?

    Hello colleagues, Is there someone do know how to create a session variable in Apex? How to get them? Thanks Best Regards

  • Deauthorizing my Computer for iTunes

    I have a Windows based laptop. There is an error in the operating system that will not let me open iTunes any more. (iTunes worked fine for a long time, and the error just started one day.) The guy in the genius bar could not figure it out. He sugges

  • Solman Setup system Monitoring alert threshold value for Filesystem issue

    Hi, Our solman system is SAP EHP 1 for SAP Solution Manager 7.0 sp level 0024. We have setup the alerts System Monitoring alerts from DSWP in solman system for our target production system . But while assigning individual threshold values of filesyst

  • How come I can't download forms into Smartview 11.1.1.3?

    Hi, 2 weeks ago I was able to download forms from Planning 11.1.1.3. Today I can't. The forms option is faded. Essbase client was so much simpler than Smartview!! How come I can't download forms into Smartview 11.1.1.3?

  • Facebook Contact Applicatio​n

    Does anyone know why i would not be able to activate the Facebook Contacts app in the Facebook settings? It is grayed out and cannot be selected. I was able to select this initially when i got the phone, but shortly after i activated my enterprise em