I would  like to know about structure,cell editor .

i would  like to know about structure,cell editor .

Hi satish ,
structure is used to creat a set of rows and calumns values.
for example,
if you palce char1 in rows and key1 and key 2 in coloums ,
if you want to reuse these you can place the selection in structures and can reuse making them as global structures.
regarding cell defination once you have two active structures i.e., one characteristic structure and key figure structure,
than you can get the "cell editor in menu bar of Query designer next "table" option.
Just go throw the below description.
cell defination will be activated once you have two structures.
if you want use the same characteristic in two structures, you can do that one in cell.
Just go throw with below description.
You can use any cell that you define in a formula. If you want to reuse the value from the implicit, generic cell definition that is automatically created at the intersection of the two structural components of a query, select this cell in the Cell screen area and, using the secondary mouse button, choose New Cell Reference. A description taken from the two structural components now automatically appears in the cell. The symbol shows you that a cell reference exists for this exception cell. Now you can reference this cell. You can continue to use the implicit cell definition and do not have to manually generate this value using a new selection.
Functions of explicitly defined cells:
Select a defined cell and choose the required function from the context menu (secondary mouse button).
● Edit
● Cut
● Copy
● Paste
● Remove
● Where-Used List
Before you delete a cell, you can check for the formulas in which the defined cell is used in the where-used list.
You reach the properties of a defined cell by selecting the defined cell. In the Properties screen area you can also make changes such as:
● Changing the description of the cell
● Changing the highlighting of the cell
● Hiding the cell ( if you do not want to see the values of the cell)
Help cells
In the Help Cells area you can define additional cells for help selections or help formulas. You can use the functions New Selection and New Formula in the context menu to define help cells that are not displayed in the query to serve only as objects for help selections and help formulas.
For example, you can define an invoice in a help cell and use this in a “real” cell to calculate a duplicated invoice.
a. Using the secondary mouse button, click on the empty cell next to Help Cells to reach the context menu. From here, choose New Selection.
b.Use Drag&Drop to drag the Invoice key figure into the right-hand Details of the Selection area.
c. Enter a description.
d. Choose OK. The cell contains the description of the selection. The symbol shows you that a selection exists for this exception cell.
e. Now choose New Formula from the context menu of the required cell of the query. The new formula that is not yet defined appears in the cell.
f. Select the new formula and choose Edit from the context menu.
g. Use Drag&Drop to drag the cell you have just defined, which you can find in the Available Operands window under Cells, into the Detail View window. Click on the button twice.
h. Enter a description.
i. Choose OK. The cell contains the description of the formula. The symbol shows you that a formula exists for this exception cell.
Result
You have defined one or more exception cells for a query.
Regards,
shailaja

Similar Messages

  • A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    A few days ago i bought the macbook pro in a Providence. In late Summer i will come back to my Country - Ukraine. I would like to know about a tax for my
    laptop. Can i return tax? Through the TAX FREE or return in airport? What should i do?

    You need to talk with the tax authorities in the countries to which you traveled and that of your home country. We are all end-users liek you and not Apple agents.

  • I need to upgrade memory slots on my Mac mid 2010 up to 4 GB module which is currently 2GB with two different 1GB memory  slots.Is it compatible and would like to know about the cost?

    I need to upgrade memory slots on my Mac mid 2010 up to 4 GB module which is currently 2GB with two different 1GB memory  slots.Is it compatible and would like to know about the cost?

    this sub forum is about running windows on macs maybe you should try
    https://discussions.apple.com/community/notebooks/macbook

  • Hello! I would like to know about unlock my iphone 4? IMEI *** Serial number 87******A4T And what operator it is locked?

    Hello! I would like to know about unlock my iphone 4? IMEI **** Serial number 87******A4T And what operator it is locked?
    <Edited By Host>

    I don't know if they have email but you can start here  http://www.apple.com/support/contact/

  • I would like to know about the subtitles of movies...

    Hi!
    I'm from Greece an i would like to know about the subtitles of movies.
    Specially, how i can know that the movie i would like to buy or rent has greek subtitles?
    Thank you in advance

    I don't think there's a lot of technical information in those specs.  And most of these questions aren't straight forward.
    Easiest first, the color temp is around 5500-6000K, a little cooler than sunlight and will vary depending on power.
    The flash duration is a bit more vague and depends on when you draw the line (consider it to be off).  It can change the specs significantly.  The full power spec from Canon puts it at about 1/800 for the 580exII, but anyone who has tried to freeze motion at full power will tell you that's false.  I find it to be more like 1/200.  You can losely extrapolate the lower power times as flashes simply double duration to double power.
    Actually, I found this website that has some info on the 580II durations, which should get you in the ballpark for the 600.
    http://speedlights.net/2011/04/18/canon-speedlite-580ex-ii-flash-review/
    And David Hobby had a great article on it at Strobist:
    http://strobist.blogspot.com/2010/06/rise-and-fall-of-machines-understanding.html
    There's even more technical discussions you can dig up if interested.

  • I would like to know about repair full request.

    i would like to know about repair full request.

    Check the following :
    Repair full request
    Delta loading not possible if FULL requests already available in ODS from same datasource & souce system combination, In order to delta's FULL requests should be changed to Repair FULL full requests. Then system allows Deltas.
    Repair Full Request

  • I would like to know about conversion exits.

    i would like to know about conversion exits.

    Hi,
    Under Domain of a data element of a field, Output Characterestics field 'Convers. routine' is used to create conversion routines, system will do the data changes with in these routines while storing the data into table and retriving the data from table.
    Ex: if coversion routine is defined as 'ALPHA' for a standard domain , with this value system will create two function modules.
    CONVERSION_EXIT_ALPHA_INPUT
    CONVERSION_EXIT_ALPHA_OUTPUT
    you can also create your own conversion routines by defining the value in this field. i have defined conversion routine to convert NUMC type data to DEC type data with 'ZCNV'.system will generate two FM's. you need to write the code in those FM's according to your logic.
    see the code for this :
    CONVERSION_EXIT_ZCNV_INPUT
    FUNCTION CONVERSION_EXIT_ZCNV_INPUT.
    ""Local interface:
    *" IMPORTING
    *" VALUE(INPUT)
    *" EXPORTING
    *" VALUE(OUTPUT)
    DATA : ws_output type numc10.
    ws_output = input.
    output = ws_output.
    ENDFUNCTION.
    CONVERSION_EXIT_ZCNV_OUTPUT
    FUNCTION CONVERSION_EXIT_ZCNV_OUTPUT.
    ""Local interface:
    *" IMPORTING
    *" REFERENCE(INPUT)
    *" EXPORTING
    *" REFERENCE(OUTPUT)
    data : ws_value type dec12.
    ws_value = input.
    WRITE: ws_value TO output DECIMALS 0.
    ENDFUNCTION.
    Thanks & Regards,
       Sunil

  • I would like to know about transactional infocube.

    i would like to know about transactional infocube.

    Hi satish pattanayak,
    Transactional InfoCubes differ from Basic InfoCubes in their ability to support parallel write accesses. Basic InfoCubes are technically optimized for read accesses to the detriment of write accesses.
    Use
    Transactional InfoCubes are used in connection with the entry of planning data. See also Overview of Planning with BW-BPS. The data from this kind of InfoCube is accessed transactionally, meaning data is written to the InfoCube (possibly by several users at the same time). Basic InfoCubes are not suitable for this. You should use Basic InfoCubes for read-only access (for example, when reading reference data).
    transactional infocubes can be filled with data using two different methods: using the transaction of BW-BPS to enter planning data and using BW staging, whereas planning data then cannot be loaded simultaneously.
    Anyway, the data from this kind of infocube is accessed transactionally, meaning data is written to the infocube (possibly by several users at the same time); basic infocubes are not suitable for this. I think this is the only proper use of this type of cube...
    We have an option to switch the Tranasaction cube such as "Loding allowed and Planning not allowed" and "Planning allowed and loading not allowed".
    please check these links,
    http://help.sap.com/saphelp_nw04/helpdata/en/39/100c38e15711d4b2d90050da4c74dc/frameset.htm
    function module to read and write to a transactional infocube
    read and write to transactional infocube
    read and write to a transactional infocube
    Thanks,
    kiran.

  • I would like to know about MIDI,

    I would like to know about MIDI,
    Are there information or code?

    honestly, i didnt know anything at all about programming MIDI and i learned
    it in a day (well enough to make a software synth for my usb keystation in one night).
    the java docs and some simple googling pretty much covered all the bases.

  • I would like to know about the iphone 5 unlocked

    I would like to know about the iphone 5 unlocked
    Dose it support lte 1800 ghz gsm
    Coz i am moving to kuwait and their lte provider is for gsm 1800
    Thank u

    You should be fine based on this...
    http://www.apple.com/iphone/LTE/

  • I have recently purchased my I PAD2 and would like to know about  flash player

    I have recently purchased my I pad and would like to know about Flash Player  and  what to download if any
    thanks

    Skyfire web browser is the most popular app that will allow you to view Flash content on many, but not all websites.  iOS devices don't support Flash natively due to stability and battery drain issues.  It's agood move overall, and most websites send HTML5 content to iOS devices.  But the transition isnt complete, so you'll still find that you can't view video on some sites.
    Flash based games are pretty much out.

  • I would like  2 know about queries. in which scenario we r using query.

    i would like  2 know about queries. in which scenario we r using query.

    Hi,
    The only way to understand your data output is a Query. And BEx which is a component of BW is a reporting tool.
    Hope this helps.
    Assign points if useful
    Regards,
    Venkat

  • I would like to know about technical details of new ThinkPads T430u and X1 hybrid.

    I am interested in T430u and X1 hybrid. I would like to know the difference of both product. If I looking for the thin, light, durable, high-performance, and long-life battery laptop, which one should be suitable for me?

    T430u is a new ultrabook that is coming out maybe middle of the year using the ULV Intel Sandy Bridge processor.
    X1 hybrid is based on the current X1 ThinkPad but with additional ARM processor for the Android OS.
    X1 hybrid on Windows will give you about 4 hours of battery time, the T430u should be about 7 hours, but its processor is slightly slower.
    Maybe you should look at the X230 instead.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • If i buy i pad with retina display from dubai and take to india..i would like to know about the international warranty.

    I WOULD LIKE TO KNOW ABT THE INTERNATIONAL WARRANTY OF 1 PAD 4. I RESIDE IN INDIA. AND WOULD LIKE TO KNOW ABT THE INTERNATIONAL WARRATY IF I BUY IPAD RETINA DISPLAY( SOON TO BE LAUNCHED
    ) FROM DUBAI

    Not quite what I heard when I went into the Apple Store in Hong Kong yesterday.
    I have just bought an iPad in Hong Kong but will eventually be travelling back to the UK.
    Louis in the Apple Store told me that iPads without cellular have international warranty but those with cellular do not (as there are slightly different models for different carriers).
    But he was pretty cagey and essentially couldn't give a clear, straightforward answer. Which most Apple employees can't.
    It is now a grey area, at the discrection of each local Apple Store & is subject, it seems, to you paying the import duty as a possible get out clause.
    Look carefully but do tell us if you got this iPad reapired. Thanks.

  • I would like to know about when I started and how I am being billed. i already paid for 3 months. Please answer

    I would like to know When I started with I phone? and how I  am getting billed for 3 months. I need brake down. Please

        drsailendr,
    It's extremely important for you to get a breakdown of all the charges so you can understand exactly where they are coming from. As Elector suggested your billing invoices are a great place to find this information! You can log in to My Verizon http://bit.ly/xB4iTc and then go to View Current Bill. Then click on View or Save Printable Bill to view your most recent charges. You are able to view other month's bills by selecting which month's charges you want to view from the drop down menu.
    SarahO_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for