The main purpose of table T778T - Infotypes per object type

What is the  main purpose of T778T - Infotypes per object type.
How does it differ from other subdialogs/tables in T778V?
Points will be awarded.
Thanks
Olekan Babatonde

T778T -you can change the attributes of an infotype
You can make the following settings:
You can change the infotype names.
You can assign infotypes to standard object types or to customer- specific object types.
You can define another time constraint for an infotype.
T778V -In this step, you make the settings that are required for creating relationships.
You can make the following settings:
You can create new relationships.
You can control the response of the system (error messages, warnings, information) if the 100% mark is exceeded in the case of "weighted" relationships.
You can show or hide the weighting percentage of a relationship and, if required, define additional data for a relationship. You can specify, for example, in the view 'Additional relationship info' whether the recursiveness
You can define the object types that are allowed for each relationship and inverse relationship.
You can set up external relationships.
External relationships are relationships between external object types i.e. object types that are not stored in the PLOG database in Personnel Development and Planning. (See also the step "Maintain object types").
You can enter a time constraint for each relationship.
You can change the "alias" name (semantic abbreviation) of a relationship.

Similar Messages

  • What is the main purpose of   VBA   in bex analyser

    what is the main purpose of   VBA   in bex analyser

    Hi,
    you can enhance standard BEx functionality with VBA Macros (Excel).
    Pls chk This link:
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a55f9e09411d2acb90000e829fbfe/frameset.htm
    Regards
    CSM Reddy

  • What is the main Purpose of ADF tool...

    What is the main Purpose of ADF tool...

    Not sure what you mean, but take a look at:
    Oracle Application Development Framework - Wikipedia, the free encyclopedia
    Oracle Application Development Framework - Oracle ADF
    or, if you mean Oracle ADF Tools::
    http://www.oracle.com/technetwork/developer-tools/eclipse/overview/adf-315490.html
    Oracle ADF Tools

  • Tab setting in the  main window sapscript table

    Hi ,
    i have one problem ,i am doveloping new script.in the main window having 5 column table .the table col size is grater than the populated field size.main problem is these values are not populated in the middle of the every column of the table.
    to achive this how to set the tabsettings?
    please sent the solution for this asap.
    Thanking u.

    Hi SS,
    U can do that by giving the alignment (Right,Left,Center Alignment) in the Pragraph format and also in Character format.......
    any of the format you can choose....
    as for as tab is concern you must have the size of the value which you want to populate...
    accordingly you have to give the tab size in paragraph format...
    thnx
    Rohit

  • How to make the main window's table size fixed?

    Hi all,
       when i have a single line item, the size of table in main window is getting reduced. Its size is varying according to number of line items. Is not is possible to keep the size of table fixed even you have single line item?
    Regards,
    Bipen

    Hi,
    You need to create a dummy template of fixed size and do not use lines for the main window table use the template. this will overlap with the window height.
    If you want tro display something then pass the field based on some condition  on end of the table
    Regards
    Shiva

  • What is the main purpose of MEREP_EX_REPLIC  transaction code

    hi,
    i want know the main use of MEREP_EX_REPLIC, MEREP_MIG and
    MEREP_MON transaction codes.
    Regards,
    Anu

    Hi anusha,
    MEREP_EX_REPLIC-  (Execute Replicator) is used for  replicating SyncBO IDs.
    MEREP_MIG -    (Used for Migration) When u go for migration of a SyncBO using the SAP transport technology we use the Export and Import options.
    MEREP_MON-   (Mobile Monitor )The transaction MEREP_MON is a tool used to display inbound and outbound worklists of SyncBOs. Simply, transaction MEREP_MON allows you to see what is sent from the client to the MW and what happend when trying to send it to the Backend. May check there if you can see anything coming into the MW from the client. As well check what is the outcome (processing status) of these worklists.
    Do check the below link...Its worth.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/909d75c3-0801-0010-5f92-920a78c53daa">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/909d75c3-0801-0010-5f92-920a78c53daa</a>
    Similarly there are many other transactions...Check some of the below:
    MCD - MI:Process Mobile Component
    ME_WIZARD -ME:Registration and eneration
    MEREP_EX_REPLIC-Execute Replicator
    MEREP_LOG -Activity Log
    MEREP_MIG -Migration
    MEREP_MON- Mobile Monitor
    MEREP_PD - Profile Dialog
    MEREP_PURGE - Purge Tool
    MEREP_SBUILDER - SyncBO Builder
    MI_ALBACK - Back Up CCMS Alerts for MI
    MI_ALMON - Alert Monitor for MI Alerts
    MI_MCD -MI:Process Mobile Component
    MI_MSD -MI:Process Mobile Component
    S_ABA_72000157-Alert Customizing
    SMOMO - Mobile Engine
    Cheers,
    kumarR
    Message was edited by:
    KumarR
            kumarR

  • Ever used the Table API (TAPI) with object type in the DB?

    Hi all,
    We are trying to generate the table API of a table that has a column defined by an object type. It works without problems if that column always has a value (is instantiated in object term). The problem is when we update a row where the column is null (all attributes of the object are null thus the object is not instantiated).
    The "before update row" trigger of the Table API fails with error "ora-30625-method dispath on NULL SELF argument is disallowed".
    Any of you guys made it work? If so, how?
    Thanks

    user8879206 wrote:
    Hi friends,
    I have a procedure with object type IN OUT parameters which is used for fetching status. We are calling this from Java. But I want to call it from oracle for testing purpose. I am trying from my end but not able to do it as of now. This is the first time I am dealing with object type.We need more information. What is wrong? Your code looked okay and you did not mention any Oracle errors. What is happening that should not be or not happening that should be?
    You can call the procedure with a simple call in PL/SQL but will not be able to use it in SQL because 1) it is a procedure and 2) it has an OUT argument. A sample call should look something like (untested)
    declare
       x rec2;
       y rec3;
    begin
      --use the arguments rru was defined with as the arguments in the same order: types rec2 (x), rec3 (y)
      rru(x,y);
    end;>
    Any help would be appreciated.
    Details are given below.
    CREATE OR REPLACE TYPE REC1 AS OBJECT
    (RELAY_USAGE VARCHAR2(30)
    ,STATE VARCHAR2(1)
    TYPE REC AS TABLE OF REC1;
    CREATE OR REPLACE TYPE REC2 AS OBJECT
    (GSRN VARCHAR2(18)
    ,METERING_POINT_NAME VARCHAR2(80)
    ,RELAYS REC)
    CREATE OR REPLACE TYPE REC3 AS OBJECT
    (INFO VARCHAR2(2000)
    ,STATUS NUMBER
    PROCEDURE RRU(
    rcRelayControl IN OUT REC2
    , rcResp IN OUT REC3)
    IS
    BEGIN
    APKG.GetDetails(rcRelayControl, rcResp);
    IF rcResp.Status = BPKG.iStatusFailure THEN
    rcResp.Info := BPKG.Get_Message('20889', rcResp.Info);
    END IF;
    END RRU;
    How to call this procedure in oracle?
    Thanks.

  • Ever used the Designer Table API (TAPI) with object type in the DB?

    Hi all,
    We are trying to generate the Oracle Designer table API of a table that has a column defined by an object type. It works without problems if that column always has a value (is instantiated in object term). The problem is when we update a row where the column is null (all attributes of the object are null thus the object is not instantiated).
    The "before update row" trigger of the Table API fails with error "ora-30625-method dispath on NULL SELF argument is disallowed".
    The code that fails is the following:
    cg$ind.TFO_DESCRIPTION :=(:new.TFO_DESCRIPTION IS NULL AND :old.TFO_DESCRIPTION IS NOT NULL )
    OR (:new.TFO_DESCRIPTION IS NOT NULL AND :old.TFO_DESCRIPTION IS NULL)
    OR NOT(:new.TFO_DESCRIPTION = :old.TFO_DESCRIPTION) ;
    In this example, cg$ind.TFO_DESCRIPTION is a boolean and the TFO_DESCRIPTION column is based on an object type.
    Thanks for any feedback or suggestions

    For a solution to this problem: I set down to write a relatively simple and small piece of code that we can use as post compiler or post generator. After we generated one or more TAPIs, we can run this post compiler to remedy the problem the TAPI has with Merge operations. The post compiler will fix the PL/SQL inside the database. It reads the TAPI objects using dbms_metadata, makes the simple change by manipulating the PL/SQL source and then recreates the objects using execute immediate. Using this post compiler, it takes but a few seconds to fix the merge flaw in all TAPIs in your application.
    http://technology.amis.nl/blog/index.php?p=842

  • How make display only the amount field in table control(infotype 0008)

    Dear Freinds,
    have to make display only the amount field (Q0008-bet01) on table control in infotype 0008 , could you tell me how to make it display only.
    i have tried the below coding it is not working in PBO & PAI of the user exit
    ZXPADU01 and ZXPADU02. For the table control is there any othe method??
           loop at screen.
               screen-name  = 'WA_P0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    i have tried like this as well
           loop at screen.
               screen-name  = 'Q0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    in the both the above methods it is not working. Could any one plese suggest me how to make display only the amount field in infotype 0008.
    regards
    syamla

    Dear Freinds,
    have to make display only the amount field (Q0008-bet01) on table control in infotype 0008 , could you tell me how to make it display only.
    i have tried the below coding it is not working in PBO & PAI of the user exit
    ZXPADU01 and ZXPADU02. For the table control is there any othe method??
           loop at screen.
               screen-name  = 'WA_P0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    i have tried like this as well
           loop at screen.
               screen-name  = 'Q0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    in the both the above methods it is not working. Could any one plese suggest me how to make display only the amount field in infotype 0008.
    regards
    syamla

  • What is the main function of table S866

    Hi all,
    Does anybody know the function of table S866?
    Regards,
    Luke

    Dear Julius,
    These Evaluations/ Evaluation structure will be used only for LIS Reportings , like Report Painters/writers Of FI. Generaly we use these Evalucations for Flexible Analyses of S&D.
    by using Where_userd list we cannt find out its usage.
    Thanks and Regards
    Prabhu

  • What is the main purpose of aggregates

    hi friends,
    I need clarification on Aggregates.
    => why we create aggregates
    => What will happend in background after creation of aggregate and  the need of switch on/off option..
    cheers
    mohhan

    Aggregrates:
    An aggregate is a rollup of fact data where a total value is sufficient and no detailed information is
    needed.
    So aggregates are like InfoCubes except that they summarize or aggregate data from an InfoCube.
    When you use an aggregate, the summarization it represents does not need to be done during
    runtime.
    Aggregate functions happen in the background. They are not visible to the end-user.
    Aggregates can be created: are not possible for:
    For BasicCubes
    On dimension characteristics
    On navigational attributes
    On hierarchy levels
    Aggregates Cannot be created on
    Multiprovider
    RemoteCube
    Ods Object
    Infoset
    When we need to use aggregates:
    As a rule of thumb, an aggregate is reasonable and may be created if,
    Aggregation ratio >10 i.e, 10 times more records are read than are displayed ( Aggregation ratio = Number of records read from DB / Number of records transferred)
    AND
    Percentage of DB Time > 30% ie; the time spent on database is a substantial part of the whole query runtime
    I hope for creating aggregates i think the thumrule should be successful... But where can we check that Aggregation ratio > 10% and Percentage DB time > 30%.
    AGGREGATES
    There are three methods for viewing this data.
    1. You can see in table RSDDSTAT.
    2. By using t-code ST03
    ( Expert mode -> BW system load -> last minute's load)
    3. By implementing BW Statistics.
    (AWB -> Tools -> BW statistics for info cubes
    o: OLAP (front end)
    w: Warehouse (loading)
    -> Delete specify from date, to date
    -> select cube
    -> execute )
    You will have the following fields
    QDBSL - No. of records selected
    QDBTRANS - No. of records transferred.
    QTIMEOLAP - OLAP time
    QTIMEDB - DB time
    QTIMECLIENT - Front end time
    if QDBSL/QDBTRANS RATIO > 10 AND DBTIME >30 we will use aggregates.

  • What is the main purpose of ichat server what is it good for?

    i've been looking at ichat server, but can't figure what advantages is has opposed to just using ichat on bonjour on my network? what is it good about it?

    What are your goals here for chatting-style communications?
    iChat server provides a way to leave messages for offline users, server federation, connection encryption, public key authentication, connections across networks, and various other features and options.
    Here is the [iChat Server Administration 10.5|http://images.apple.com/server/macosx/docs/iChatService_Adminv10.5.pdf] manual; check the first couple of pages for some high-level details on the features. A quick Google search for iChat Server or jabberd or /"ichat server" features/ will most certainly turn up a [feature list|http://www.apple.com/server/macosx/features/ichat.html], too.

  • What is the main purpose of the synchronou​s disply in LV?

    Anybody know what is really the synchronous display do. In the front panel, when we right click to the object,,
    >>Advance
    >>>Synchronous Display
    When we can use this option??

    If an indicator is set to have synchronous display the block diagram will always wait until the indicator value has been updated on the screen, otherwise everything will just continue even though the user interface has not "discovered" the new value yet....
    here is an extract of NIs text on performance;
    "In multithreaded systems, controls and indicators have a synchronous display pop-up item that controls whether or not updates can be deferred. In single-threaded execution, this item has no effect. However, if you turn this item on or off within VIs in the single-threaded version, those changes affect the way updates behave if you load those VIs into a multithreaded system.
    By default, this item is off, which means that after the execution system passes data
    to front panel controls and indicators, it can immediately continue execution. At some point thereafter, the user interface system notices that the control or indicator needs to be updated, and it redraws to show the new data. If the execution system attempts to update the control multiple times in rapid succession, you might not see some of the intervening updates.
    In most applications, this significantly speeds up execution without affecting what the user sees. For example, you can update a Boolean value hundreds of times in a second, which is more updates than the human eye can discern. Asynchronous displays permit the execution system to spend more time executing VIs, with updates automatically reduced to a slower rate by the user interface thread.
    If you want synchronous displays, you can turn the synchronous display on.
    Note: Turn on synchronous display only when it is necessary to display every data value. Using synchronous display results in a large performance penalt
    y on multithreaded systems."
    MTO

  • Looking to purchase a new 13" MacBook Pro with 512GB SSD memory and 8GB ram.  Main purpose is to run Final Cut Prowithout being at my desk.  Is there's need to upgrade to the 16GB to make Final Cut Prorun more smoothly?

    I was planning on buying a new 13 inch MacBook Pro with 512 GB memory and 8GB RAM. The main purpose for this purchase Is to be able to run Final Cut Pro anywhere I want to. Should I upgrade to 16 GB of RAM with the added expense and wait time or is that overkill?

    8GB should be plenty  .  .  .  though as with most things in life, it all depends on exactly what you are doing. If you intend to edit long, highly complex projects loaded with effects and multicam clips you can't get enough RAM.
    For over 3 years, I and many others, have been  using 4GB with no problems.

  • What are the main differences between Signal Express and Labview?

    National Instruments provides a matrix so one can quickly compare the
    various versions of Labview but no comparison of Signal Express with
    Labview. Hence how does Signal Express compare with Labview? What
    are some of the things one can do with Labview one can't do with
    Signal Express?
    Howard

    hrh1818 wrote: Which version of Labview are you referring to? I don't consider the graphical version of Labview to be a full featured programming language. LabWindows/CVI is by a long shot a lot closer to being a full featured programming language than the graphical version of Labview.
    Howard,
    You clearly don't know what you are talking about. There is no "graphical version" of LabVIEW, there is just LabVIEW. Click on the article "Is LabVIEW a general purpose programming language?" written by the Jeff K. for some easy reading from a few years ago. It is all still true (except that object oriented features and recursion have been added in recent versions).
    One of the main points at this years NI-week was the discussion of how processor development is switching more and more to multicore designs  to improve performance because a simple boost in clock frequency is becoming more difficult. Linear, text based code is not well suited to take advantage of multticore design, while the dataflow based LabVIEW programming language automatically scales well to multiple processor cores, without any need to rewrite older code. I would say that only LabVIEW is futureproof in this respect. LabVIEW programmers are not wimps that are simply too stupid to write text based code. LabVIEW is not a toy language for people that don't want to learn a "real" programming language.
    LabVIEW is arguably the best programming language in terms of getting things done! I've never felt limited with LabVIEW and my programs often don't even have anything to do with data acquisition or instrument control. The difference between text based code vs. LabVIEW is like "DOS vs. Windows", "Radio vs. HD television". "Trilobyte vs. Homo sapiens" (sorry Putnam ). Text based code is monochrome, archaic and outdated and its linearity imposes unecessary constraints on the programmer that can only be (partially) overcome by wasting even more time throwing even more code at it.
    Sure, a seasoned text based programmer will initially have problems adapting to LabVIEW, just because you would need to adapt to and embrace the power of dataflow and not try to make a literal translation of the text code to LabVIEW, retaining old habits. If you get stuck, come back and ask here in the forum.
    You were looking for object oriented features and failed. All you need to do is a quick site search. All the information is out there. Just because you cannot find it in the first five sentences of the glossy brochure does not mean it does not exist. Maybe you want to read one of the application notes such as:
    LabVIEW Object-Oriented Programming: The Decisions Behind the Design
    In general, you should avoid judgement until you have all information. Your opinions seem quite biased and superficial and not really based on hard facts.
    Initially you asked about the difference between signal express and LabVIEW.
    hrh1818 wrote:
    > What kind of measurments do you want to do and what kind of requirements do you have?
    > You can also see for yourself and download evaluation version of both.
    No thanks, there has to be a better way to get an answer to my
    question than get involved in a two month study project.
    If you would answer the first question quoted above, we could certainly help you with the decision. Isn't that the main purpose of this thread?
    You can also contact your local LabVIEW Field Engineer to go over your requirements and help you make a decision. They usually know their stuff!
    Message Edited by altenbach on 09-02-2007 11:51 PM
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Webservice scenario access url

    Hi Experts, Could you please tell me what all ways to access the webservice scenario. 1. Through java port. Example : http://<servername>:<b>50100</b>/XISOAPAdapter/MessageServlet?channel=:Business_service:CC 2. Through abap port. http://<servername>

  • How to use nested tables object in oracle form

    Hello forum How all r u .. i need ur help guys, pls help me out... i m using an object oriented approach to design my database by using nested tables and varrays. it is quite done successfully. but the problem is when i m trying to use that object of

  • Acrobat Pro purchase after Trial

    I had a trial version of Acrobat Pro.  I have just purchased it, and it will not install due to a previous version on my computer.  What do I do?  I have a Mac OS X, running 10.6.8.

  • Deploy EAR file through command line

    Hello Gurus, We have external consultants helping us with Java development of a certain application on our CRM system. Usually I would deploy this file through SDM (RemoteGUI). Is there a way to do this on a command line? Thanks much. Arvind.

  • [SOLVED] All input devices off through synaptics config file

    Hello guys, It seems that while I was experimenting with synaptics configuration file (/etc/X11/xorg.conf.d/10-synaptics.conf) I turned all input devices off, and as you may assume I can't change this. Is there a way to fix this issue? I was trying t