What are various values of OBJTYPE_SET in CRMD_LINK table?

I know couple of values like '07' is for Partner (searches COMM_PARTNER table), '11' is for Sales (Searches CRMD_SALES table). But sure about other values and their related tables, Can somebody please put light on it for me....?
Thanking in advance

Table CRMC_OBJECTS gives all the object types.
Kindly reward points if this helps!
Rgds,
Chandrika

Similar Messages

  • LSMW: What are Fixed Values and Translations for?

    Hi,
    I'm working with LSMW and I don't know what are Fixed Values and Translations for? They are on the "Maintain Fixed Values, Translations, User-Defined Routines" step.
    Thanks in advance,
    Gerard

    this is the step,we can process the reusable rules of a project.
    <b>Fixed value:</b> Here you can specify length, type, flag for lowercase/uppercase and value in addition to the description.
    this is nothing but CONSTANTS in your report programs.
    <b>Translation:</b> Here you can enter information on the source field and the target field.
    for example, your input file language value will be 2 characters and we need to send only 1 for LANG in SAP.
    so here we have to do the translation of 2chars to 1 char.
    so, we will give these set of values in this step.
    Message was edited by: Srikanth Kidambi

  • What are the values and meaning of PaymentStatusID and statusTypeId from the API

    What are the values of PaymentStatusID and statusTypeId from the API?
    The WSDL just list the fact tht these exists but not the values and meaning.

    Found more info on the BC site, figured I'd include it all.
    PaymentMethodType
    CreditCard = 1
    Cheque = 2
    Cash = 3
    EFT = 4
    PayPal = 5
    HostedCreditCard = 7 - like google checkout etc.
    DirectDebit = 8
    GiftVoucher = 9
    Free = 10
    PaymentStatusID
    Unknown = -1
    Succeeded = 0
    Failed = 1
    Pending = 2
    Denied = 3
    AddressTypeId  - AddressType
    Home Address = 1
    Work Addres = 2
    PO Box = 3
    Not Used = 4
    Shipping Address = 5
    Pickup Address = 6
    Storage Address = 7
    Billing Address = 8
    OrderType
    Quote = 1
    Invoiced = 2

  • What are various ways

    If its a off-topic please execuse me. But i am curious to know them. As there are so many experts here who have almost worked or have knowledge about different tools or software applications which do different tasks.
    As i am one of mumbaikar(mumbai normal person, India) and eyewitness for yesterdays serial bomb blasts and want to know whether internet can also be misused for communication.
    What are various ways to misuse internet for secret communication by terrorists or anyone who always think to do harm to human community.(by all means in terms of using software for all their communication)

    One could use forums to find out how to abuse the
    internet and then put what one learned into play.
    Why all these steganography-as-terrorism questions
    the last couple days? Homework assignment, or new
    approach for al qaeda?Sir jverd,
    I respect you as you being seniors here. But as i
    told you i am one of the co-passenger in the bomb
    blast but i have luckily escaped. I am just a newbie.
    I will feel to do something good for my nation. But
    just lack of experience and lack of information i am
    just curious of any concepts or links or information
    that will lead me to atleast 1% to do something good
    for my nation. But rather if i can say atleast i can
    save atleast one life if i can gather good
    information and go on to try myself and findout
    various ways to atlest have good knowledge and spread
    awareness. I dont feel this is something wrong.
    One could use forums to find out how to abuse the
    internet and then put what one learned into play.
    Why all these steganography-as-terrorism questions
    the last couple days? Homework assignment, or new
    approach for al qaeda?Sir jverd,
    I respect you as you being seniors here. But as i
    told you i am one of the co-passenger in the bomb
    blast but i have luckily escaped. I am just a newbie.
    I will feel to do something good for my nation. But
    just lack of experience and lack of information i am
    just curious of any concepts or links or information
    that will lead me to atleast 1% to do something good
    for my nation. But rather if i can say atleast i can
    save atleast one life if i can gather good
    information and go on to try myself and findout
    various ways to atlest have good knowledge and spread
    awareness. I dont feel this is something wrong.I didn't say it's something wrong. I'm just remarking on the rather coincidental appearance of multiple questions here in the last couple of days that ask about both terrorism and steganography.
    I have no idea who you are. You might be a survivor, or you might be one of people responsible for the bombing. I have no way of knowing, and am not making any judgements on you.

  • How can L identify what are the not null fields of a table in a stored procedure ?

    How can L identify what are the not null fields of a table in a stored procedure ?

    You could query the data dictionary:
    SELECT column_name
    FROM all_tab_columns
    WHERE owner = '...'
    AND table_name = '...'
    AND nullable = 'N'

  • What are the methods to modify SAP standard tables?

    hi
    what are the methods to modify SAP standard tables?

    .APPEND structures AND CUSTOMIZING INCLUDES.
    these are the two methods.. but customizing includes we, as a developers do not use.
    generally we use .APPEND structures to modify standard tables.
    note that we need an access key to modify atandard tables.
    we can create an apend structure and add that structure to the standard table at the end.
    note that .append structures should only be added only at the end.
    that is the reason we use .append structures to modify standard tables.as we should not include a field in the middle and disturb the original order of the standard table fields as it may effect many objects depending on the standard table.
    but Some standard tables for which there is a LONG datatype field can never be modified.
    the reason is the LONG datatype field should always be there at the end and also .APPEND strutures should always be there at the end. there will be a conflict. so, some standard tables can not be appended.

  • What are the advantages of using an internal table with workarea

    Hi,
    can anyone tell me
    What are the advantages of using an internal table with workarea
    over an internal table with header line?
    thnks in adv
    regards
    nagi

    HI,
    Internal tables are a standard data type object which exists only during the runtime of the program. They are used to perform table calculations on subsets of database tables and for re-organising the contents of database tables according to users need.
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35de358411d1829f0000e829fbfe/content.htm
    <b>Difference between Work Area and Header Line</b>
    While adding or retrieving records to / from internal table we have to keep the record temporarily.
    The area where this record is kept is called as work area for the internal table. The area must have the same structure as that of internal table. An internal table consists of a body and an optional header line.
    Header line is a implicit work area for the internal table. It depends on how the internal table is declared that the itab will have the header line or not.
    e.g.
    data: begin of itab occurs 10,
    ab type c,
    cd type i,
    end of itab. " this table will have the header line.
    data: wa_itab like itab. " explicit work area for itab
    data: itab1 like itab occurs 10. " table is without header line.
    The header line is a field string with the same structure as a row of the body, but it can only hold a single row.
    It is a buffer used to hold each record before it is added or each record as it is retrieved from the internal table. It is the default work area for the internal table
    1) The difference between
    whih header line and with out heater line of internal table.
    ex:-
    a) Data : itab like mara occurs 0 with header line.
    b) Data: itab like mara occurs 0.
    -While adding or retrieving records to / from internal table we have to keep the record temporarily.
    -The area where this record is kept is called as work area for the internal table.
    -The area must have the same structure as that of internal table. An internal table consists of a body and an optional header line.
    -Header line is a implicit work area for the internal table. It depends on how the internal table is declared that the itab will have the header line or not.
    a) Data : itab like mara occurs 0 with header line.
    table is with header line
    b) Data: itab like mara occurs 0.
    table is without header line
    2)work area / field string and internal table
    which one is prefarable for good performance any why ?
    -The header line is a field string with the same structure as a row of the body, but it can only hold a single row , whereas internal table can have more than one record.
    In short u can define a workarea of an internal table which means that area must have the same structure as that of internal table and can have one record only.
    Example code:
    data: begin of itab occurs 10,
    ab type c,
    cd type i,
    end of itab. " this table will have the header line.
    data: wa_itab like itab. " explicit work area for itab
    data: itab1 like itab occurs 10. " table is without header line.
    Regards,
    Padmam.

  • What are various data speeds supposed to be?

    I am doing my research now on the iPhone while awaiting the end of my Sprint contract. I currently on the slow Sprint data network using a Treo 650. All my bookmarks are to text based mobile sites: BBC, NYT, etc.
    I was playing with an iPhone here in Phoenix yesterday & the full graphic sites like BBC World News displayed pretty slow on the Edge network.
    What are the various "published" speeds supposed to be for the slower Sprint, ATT Edge & ATT 3G Networks? In "theory" how much faster is 3G over Edge?
    Thanks.

    Sonoran08 wrote:
    What are the various "published" speeds supposed to be for the slower Sprint, ATT Edge & ATT 3G Networks? In "theory" how much faster is 3G over Edge?
    In theory EDGE has a maximum speed of 220 kbps, and 3G 1500 kbps as implemented by AT&T. In practice I get about 200 kbps and 1000 kbps respectively using the aircard on my laptop. So 3G would appear to be 5 times faster than EDGE. Some magazines have done real comparisons between the iPhone and a 3G PPC. The found much smaller differences, from sites that took about the same on both to a best case of the PPC being twice as fast as the iPhone. The reason is that a website requires many requests to the server, and each one requires the overhead of setting up and tearing down a connection. So this "latency" slows down the useful throughput. This would not be an issue for email or youtube, however.
    On my laptop 3G is faster than EDGE for web browsing one page at a time, but not strikingly so. The difference is that I can launch a browser with multiple tabs loading simultaneously, and for that scenario (and for downloads) 3G is much faster.
    Message was edited by: Lawrence Finch

  • What are various restrictions in BW like max structures etc

    Hi,
             I have few questions.Kindly clarify them.
    1. What are the various restrictions we have in BW like
        No of structures in a query - 2(maximum)
        No of Key Figures in Fact table - 233
        No of characteristics in a dimension - 248.
        What are all the other restrictions like how many queries can be in a work book and any other restrictions like that you are aware of.
    2.  How can we control the population of Statistical tables like Extraction Queue and update tables.I know that  we can use direct delta ,Queued delta and unserialised V3 update modes.But that will be for populating Delta Queue.How can we control whether it has to use V1,V2,V3 methods.
         Kindly clarify them.Thanks in advance.
    Message was edited by: Shiv Sai
    Message was edited by: Shiv Sai

    Sai,
    Delta is set by the extractor you use and the way you want data to come into BW ( Push / Pull )
    There are a lot of restrictions in BW but in most cases it is for an extreme case and if you wish to overcome / see the constraint as a serious limitation it would mean that :
    1. You design is faulty or some very unique design requirement which is not supported by BW in its current state
    2. Some very unique client requirements which you think can be satisfied only by trying to find a workaround for the limitation/restriction.
    my 0.02
    Arun
    Assign points if useful
    Message was edited by: Arun Varadarajan

  • What are Current Value Tables VIs in LabVIEW 2010?

    I was just looking over LabVIEW 2010, and noticed a new set of VIs stored under "Reference Design".  They seem to consist of a series of VIs dealing with Current Value Tables.  What are these?  I tried to search Help, didn't find much under either CVT or Reference Design.  There's a discussion of Reference Design in the NI Tutorials, but it doesn't really seem to apply ...

    Hello Bob,
    Reference Designs are essentially application oriented examples made by NI systems engineers. These examples demonstrates how to design and integrate systems rather than NI Shipping Examples that illustrate features of products.
    You can find more information about Reference Designs here
    An Overview of Reference Designs
    http://zone.ni.com/devzone/cda/tut/p/id/8241#toc0
    Andy Chang
    National Instruments
    LabVIEW Control Design and Simulation

  • Hot MBP and fan speeds - what are optimal values?

    My MBP (late 2006 17" version) seems to be running hot in the afternoons, even though I have air-conditioning on.
    I just ran Fan Control (very nice by the way!) and saw the temperature was up around 70 C and the left and right fan speeds were about 2000 rpm.
    http://www.conscius.de/~eidac/software/smcfancontrol2/index.html
    I selected the "Higher RPM" setting, which sets the minimum speeds to 4000 rpm. After changing the setting, the two fan speeds were initially showing 4525 and 4531.
    After about 10 minutes my temperature dropped to 57-59 C and the rpms for both fans went down to about 4000 rpm. And my MBP is obviously cooler to the touch. So I guess the app works.
    My questions are:
    (1) What are good, safe temperatures for the MBP?
    (2) If the temperature was so high, why wouldn't the MBP automatically increase the fan speed beyond the 2000 level automatically? Is 70 C not considered high enough to make the fan run quicker?
    (3) How fast is it safe to run the fans at? I am guessing they will die sooner if run faster?
    (4) Is making the fans run as fast as possible to first cool off the machine and then reducing the fan speed a good idea?
    (5) When it is cold, do the fans stop entirely?
    I have actually never heard my MBP fans at all. I guess they are either quiet or my room is so noisy it drowns out the fan noise.
    Thanks!
    doug

    I agree on tjk answer . To add my 2 cents:
    (2) : what is not said is that GPU shut down also the computer, but we didn't know at which temperature. It seem anyway that GPU is not designed to run at 90/100 ° C.
    at least, not the ati radeon x1600..
    Apple seem to consider that 70° is ok, but it could be also the autonomy factor which have been in mind, not the durability of your product.
    (3) the fans are brushless. so they are designed to run for very long time at high speed. But they run also with a little lubricant on they rotor axe. with time, this lubricant goes away, and the fan make noise as the axe touch more the outside. a noisy fan is coming from this.
    My Mbp was dying and becoming useless, because of fans making really big noise, and even stoping, which is synonimous of death if you don't shut up immediately the computer.
    oil on axe have cured them, for now. I can't say how long they will go, but i can play some game, or encode for 8 hours, with fans set up at 4500/5000° in smcfancontrol.
    Imo, I will try to set up fans for the macbook to not goes above 65 ° when heavily charged, and 55/57 ° when just surfing.
    So it say that I change the setting before I use some soft who need high cpu or gpu power.
    and when normal mode, safari only for instance, i have my own default setting at 2000 and my mbp is between 55 to 57°
    (my 15' mbp rev A has 1000 rpm by default, so, when doing nothing, it is at 63/65 °)
    needless to say that i didn't have any of the bugs I had since I do my manual adjust of fan's rpm. (hard reboot, glitches when playing games, computer freezing suddenly, horizontal lines while playing youtube or movies, etc..)
    (4) a better idea should be to ancipate the higher temperature, it is what i do.
    cooling fast a piece of computer is not a so good thing . as for anything (a car motor is the same..)
    so, before running a heavy game as cod4 or a crossover game, or encoding, if you start your higher rpm just before, you whole computer will not have to go up and down.
    that the same idea for letting him at 55 and not 65 . Have in mind that all composants are at the temperature, including your battery (which should be at a 30/40 ° , if we follow Apple recommendations, lol) .
    (5) no, they never stop, if they stop, your mbp burn it's intel CPU, you know.... depending on models, it is 1000, 1500 or 2000 rpm by default.
    so, a small digest of my post:
    cool down your mac, it will always be good for him .
    no need to have it at 40°, but try to have 8 to 10° less than now, in all situation.
    a fan is designed to run for a long time, not so as well as a hard disk, who can spin at 7200 or more for years, but it is designed to run for years.
    as fans are not the same on your computer than on mine, i can't give you the info, but mine have a red zone from 5000 rpm to 6000 rpm, which mean they run at their limits. it's an electrical limit, more than a rpm limit.
    A MBP cost a lot, fans don't cost much if you buy them in direct to china, or even if you bought them with apple, or if you just put some oil when they get noisy, as in your car, lol..
    if the cpu can run to 100 °, is that the case for others electronics components ?
    more than 100 peoples on that forum have a ati x1600 gpu dying..
    So my only regret is to NOT have been aware to cool better my mbp 2 years ago, because now, the damage are here, and irreversible.

  • What are the values for operation code in order import open interface

    Hi,
    I am trying to create the sales order by populating the interface table and run the request import order i.e. open interace without standard OE APIs.
    I am also populating the actions interface table i.e. OE_ACTIONS_IFACE_ALL along with header, line, & price adjustment tables to hold the order. The sales order creates successfully but it fails at holding action due to invalid operation code. It has been tried with ‘CREATE’, ‘UPDATE, ‘INSERT’ for operation code in action interface table but no use.
    So my concern is what value needs to pass for operation code in action interface table.
    Any help would appreciate.
    Thanks,
    Sai Krishna

    If you are planning to apply holds, For holds the action is OE_Globals.G_APPLY_HOLD or APPLY_HOLD.
    Thanks
    Nagamohan

  • AuthC = P, A  What are these values?

    We are implementing the compensation module and I have recieved some "odd" errors during Manager Self Service testing.  When they have to Plan or Approve certain records for their employees I show that they must have P or A in the Authc field of P_orgincon.  These values are not listed in the possible entries nor can I find any documentation on them on SAP.  While I have a pretty good idea of what they do, I do not like granting access without more understanding.
    Does anyone have documentation on these values?   Are they simply marking them as planned or approved.  Are there any side affects of these values I should be aware of?

    Hi Waldon,
    P and A seem not to be documented yet.
    Found only other values in the docu:
    [http://help.sap.com/saphelp_erp60_sp/helpdata/EN/ef/4aba3b3bf00152e10000000a114084/frameset.htm]
    I suggest to open a message at SAP to get an update of the documentation triggered. (PA-BC).
    b.rgds, Bernhard

  • What are these values after importing raw formats?

    Hello,
    I am using Lightroom 5.7, and I import .nef files (Nikon D800).
    I import the .nef files without any Quick Develop settings (set to 'None'). My default presets are not specific to the camera serial number, and also not specific to the camera iso setting.
    However when I open the image in the 'Develop' module, some values are not set to zero: e.g. tint +25, sharpening +25.
    My question is:
    Has Lightroom already pre-modified the image, or is it just reading these values from the file itself?
    Thanks.

    Tint would have been calculated by your camera as part of the white balance calculation.
    The +25 amount of sharpening is the default sharpening applied to all RAW files.

  • What is '#Distinct values' in Index on dimension table

    Gurus!
    I have loaded my BW Quality system (master data and transaction data) with almost equivalent volume as in Production.
    I am comparing the sizes of dimension and fact tables of one of the cubes in Quality and PROD.
    I am taking one of the dimension tables into consideration here.
    Quality:
    /BIC/DCUBENAME2 Volume of records: 4,286,259
    Index /BIC/ECUBENAME~050 on the E fact table /BIC/ECUBENAME for this dimension key KEY_CUBENAME2 shows #Distinct values as  4,286,259
    Prod:
    /BIC/DCUBENAME2 Volume of records: 5,817,463
    Index /BIC/ECUBENAME~050 on the E fact table /BIC/ECUBENAME for this dimension key KEY_CUBENAME2 shows #Distinct values as 937,844
    I would want to know why the distinct value is different from the dimension table count in PROD
    I am getting this information from the SQL execution plan, if I click on the /BIC/ECUBENAME table in the code. This screen gives me all details about the fact table volumes, indexes etc..
    The index and statistics on the cube is up to date.
    Quality:
    E fact table:
    Table   /BIC/ECUBENAME                    
    Last statistics date                  03.11.2008
    Analyze Method               9,767,732 Rows
    Number of rows                         9,767,732
    Number of blocks allocated         136,596
    Number of empty blocks              0
    Average space                            0
    Chain count                                0
    Average row length                      95
    Partitioned                                  YES
    NONUNIQUE  Index   /BIC/ECUBENAME~P:
    Column Name                     #Distinct                                       
    KEY_CUBENAMEP                                  1
    KEY_CUBENAMET                                  7
    KEY_CUBENAMEU                                  1
    KEY_CUBENAME1                            148,647
    KEY_CUBENAME2                          4,286,259
    KEY_CUBENAME3                                  6
    KEY_CUBENAME4                                322
    KEY_CUBENAME5                          1,891,706
    KEY_CUBENAME6                            254,668
    KEY_CUBENAME7                                  5
    KEY_CUBENAME8                              9,430
    KEY_CUBENAME9                                122
    KEY_CUBENAMEA                                 10
    KEY_CUBENAMEB                                  6
    KEY_CUBENAMEC                              1,224
    KEY_CUBENAMED                                328
    Prod:
    Table   /BIC/ECUBENAME
    Last statistics date                  13.11.2008
    Analyze Method                      1,379,086 Rows
    Number of rows                       13,790,860
    Number of blocks allocated       187,880
    Number of empty blocks            0
    Average space                          0
    Chain count                              0
    Average row length                    92
    Partitioned                               YES
    NONUNIQUE Index /BIC/ECUBENAME~P:
    Column Name                     #Distinct                                                      
    KEY_CUBENAMEP                                  1
    KEY_CUBENAMET                                 10
    KEY_CUBENAMEU                                  1
    KEY_CUBENAME1                            123,319
    KEY_CUBENAME2                            937,844
    KEY_CUBENAME3                                  6
    KEY_CUBENAME4                                363
    KEY_CUBENAME5                            691,303
    KEY_CUBENAME6                            226,470
    KEY_CUBENAME7                                  5
    KEY_CUBENAME8                              8,835
    KEY_CUBENAME9                                124
    KEY_CUBENAMEA                                 14
    KEY_CUBENAMEB                                  6
    KEY_CUBENAMEC                                295
    KEY_CUBENAMED                                381

    Arun,
    The cube in QA and PROD are compressed. Index building and statistics are also up to date.
    But I am not sure what other jobs are run by BASIS as far as this cube in production is concerned.
    Is there any other Tcode/ Func Mod etc which can give information about the #distinct values of this Index or dimension table?
    One basic question, As the DIM key is the primary key in the dimension table, there cant be duplicates.
    So, how would the index on Ftable on this dimension table show #distinct values less than the entries in that dimension table?
    Should the entries in dimension table not exactly match with the #Distinct entries shown in
    Index /BIC/ECUBENAME~P on this DIM KEY?

Maybe you are looking for

  • Show custom Error message in MB_CHECK_LINE_BADI

    Hi to all! I'm using MB_CHECK_LINE_BADI to make some validation before posting the document. The problem is this: When I try to show an E message from a Z message ID, te message isn't shown correctly. For example: if sy-subrc <> 0. v_txt = 'ERROR'.  

  • BIG PROBLEM: Can get camera but can't use it at all

    Hi all, I develop a broadcast app that uses the camera to broadcast video with netstream. I debug the code on Samsung GT-i9000, Android version 4.0.1, Baseband version i9000XXJVK, KErnel version 2.6.35.15-gcc86ee2. The trace shows the camera [object

  • View db alerts generated in planning book A from within planning book B?

    Hi, I have a db alert macro implemented as a default macro in one of our SNP planning books/data view. This is correctly generating db alerts per the criteria coded into the macro. In Alert Monitor, the database alerts show the planning book (book A)

  • Segments in Check Writer XML data source

    Hi, Can anyone tell me what are the Segments 1-10 in the XML data source that I see for Check Writer (XML) when I use "Third Party Checks". I tried populating few fields in the Entry values for the corresponding element but that didn't work. We need

  • ICloud Contacts on 2 iPhones

    So, my mom and i had thought at the beginning when she got her iphone that we could share an apple id and icloud. But now our cintacts have suddenly merged. My mom has business contacts and I have my friends (which both of us dont want to loose). Que