If std iview can b used for creating qualified record

Hi all
standard iView can b used for creating qualified record ? if possible and how it is? please let me know ASAP
Regards
Sunil

Hi Sunil,
Yes it is possible to create qualified record using Standard MDM iViews.
Please follow the steps mentioned below:
1. Create the Item Details iView with Create and Edit option enabled and select the Qualified table fields along with the other fields.
2. Go to the option Relationship and Qualified Display fields. You will find the entry of the Qualified field that you have selected earlier.
3. Edit the entry and select the Qualifiers that you want to appear in the output. Also select the Non-Qualifier as well.
4. Save the iView and preview it.
Note: To create an entry in the Qualified table first create the main table record and click on save. Then click on Edit to make an entry in the Qualified tables.
Regards,
Jitesh Talreja

Similar Messages

  • What tool can i use to create an animation for iPad

    What tool can i use to create an animation the will run in I.E., Firefox and iPad. I want to have a series of large buttons that i can scroll using arrows on the left and right side of the large buttons, with each button  being a hot spot. I can't use Flash because it is not supported on the iPad.
    Thanks,
    Steve

    I've been playing with both Edge and Hype, and I found that stuff I create in Hype actually works in IE 8, but stuff I create in Edge does not. I'm not sure what the difference is, other than perhaps Hype automatically writes some legacy scripts so that things will work in IE. Hype's not perfect, but it's doing the job for what I needed it to do, where Edge was no help at all (working in IE I mean).
    I think Edge is a much better tool - more robust, greater feature set, but Hype seems a bit more forgiving and seems to play nicer with crappy browsers like IE.

  • What kind of  inforobject can be used for compounding while creating charac

    Hi all :
         what kind of standard inforobject can be used for compounding while creating characteristic ?
        I found that some could be , but some couldn't ,  like 0RESP_PERS.
    THE ERROR :
    1      Characteristic 0RESP_PERS was included in the compounding for COS09 (-> Long Text)      QLong text exists
    2              0RESP_PERS is just an attribute and is not allowed in the compounding No long text exists
    0RESP_PERS is an object, why  can't be  used for compouning? 
    Could you please tell me why ?
       Thank you very much!
    Edited by: jingying Sony on May 10, 2009 7:05 AM

    Hi Jingying Sony,
    One can mark an infoobject as an Attribute Only in the General tab.
    This means that the infoobject will only act as an attribute and cannot be used as a characteristic in infocubes. Neither can it be used as a navigational attribute and I guess it may not be available for compounding then(since in compounding - it implicitly becomes a characteristic).
    For your ref
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    If you uncheck this checkbox, then may be it will allow you to compound this characteristic..
    You may try with a (self created) ZRESP_PERS reference chararacteristic of 0RESP_PERS, to confirm this.
    One more link for your reference
    http://jgtang82.javaeye.com/blog/191795
    Hope this helps,
    Best regards,
    Sunmit.

  • What is the use for CREATING VIEW WITH CHECK OPTION?

    Dear Legends,
    I have a doubt
    What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.
    A: Enforcing constraints at DB level.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???
    Please clear my doubt's Legends
    Lots of Thanks....
    Regards,
    Karthik

    Hi, Karthick,
    karthiksingh_dba wrote:
    ... What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..Most views are created and used for convenience. A view is a saved query. If the same operations are often done, then it can be very convenient to code those operations once, in a view, and refer to the view rather than explicitly doing those operations.
    Sometimes, views are created and used for security reasons. For example, you many want to allow some users to see only certain rows or certain columns of a table.
    Views are necessary for INSTEAD OF triggers.
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.The reason is integrity, not necessarily referential integrity. The CHECK option applies only when DML is done through the view. It prohibits certain changes. For example, if a user can't see certain rows through a view, the CHECK option keeps the user from creating such rows.
    A: Enforcing constraints at DB level.I'm not sure what you mean. Please give an example.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??No. Using CHECK OPTION, you can do some inserts and updates, but not others. The columns involved may or may not have constraints in either case.
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???If you try to violate a constraint, you'll get an error. That happens in views with or without the CHECK OPTION, and also in tables.

  • What Function Module can be used to create vendor master data in SAP R/3?

    Hello -
    I've been trying to find a standard SAP delivered BAPI that can be used to create vendor master records in ECC 6.0. Up to this point I have not been able to do so. With SAP MDM solutions and SRM solutions it seems logical that SAP would deliver a standard BAPI that can be used to create vendor master records in the ERP/R3 environment (similar to the BAPI_MATERIAL_SAVEREPLICA for creating material master data records).
    I have been able to find BAPI_VENDOR_CREATE but this only calls the online transaction and does not offer much additional functionality beyond what transaction code XK02 already offers.
    The next best alternative appears to be IDOC_INPUT_CREDITOR but our preference would be to not use IDOCs for the project we are working on.
    Can anyone offer any insight or personal experience on how vendor master records have been successfully interfaced with SAP R/3? Did you have to use IDOCs or create a custom RFC call? Thanks for the help!
    Rich Wortmann
    << Personal information removed >>
    Edited by: Rob Burbank on May 14, 2009 10:43 AM

    Quite a gap in the BAPI arsenal. I think the options are IDoc, which you don't want, good old program RFBIKR00 (requires flat file for input, can be used via LSMW) or DIY (very complex).
    Thomas

  • Is there a custom function available which can be used for logging errors captured in a sp in a sql table

    Is there a custom function  available which can be used for logging errors captured in a sp during and after execution in a sql table?
    Basically we  would like to utilize such function  in every sp and log errors of each sp in a error log table
    Mudassar

    Thanks .
    I was able to write this however I am thinking I am missing something
    CREATE FUNCTION testfunction1()
    RETURNS @temp_error TABLE (
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    AS
    BEGIN
    insert @temp_error(procedure_name,line_number,error_number,error_message,error_state,error_severity)
    select error_procedure(),error_line(),error_number(),error_message(),error_state(),error_severity()
    RETURN;
    END;
    CREATE TYPE test_type AS TABLE(
    id int identity(1,1),
    procedure_name varchar(255),
    line_number int,
    error_number int,
    error_message varchar(max),
    error_state int,
    error_severity int,
    occurence_datetime datetime default current_timestamp,
    user_name sysname default suser_name(),
    login_name sysname default suser_name()
    GO
    create proc usp_error_test
    @test_type AS test_type READONLY
    as
    begin
    begin try
    select 1/0
    end try
    begin catch
    select * from testfunction1(@test_type)
    end catch
    end
    Mudassar

  • Which FM/BAPI is used for creating repair orders

    Hi,
       Please tell me which FM / BAPI is used for creating service notifications,Repair/Service order and Delivery Docs.How to find out??
    Please someone help me.
    Thanks,
    Neelima

    For service notification you can try using this.
    'BAPI_ALM_NOTIF_CREATE'

  • Whether PXI can be used for Event data logging in an electrical Substation ?

    Whether the NI PXI system can be used for recording digital event data with 1 ms accuracy ?Whether its DI boards support onboard timestamping ? Whether PXI can be synchronized with time pulses from a GPS receiver ?

    Yes indeed, there is a digital event recorder example in developer zone, search for "digital time interval" on NI developer zone, or follow this link: http://sine.ni.com/apps/we/niepd_web_display.DISPLAY_EPD4?p_guid=B45EACE3DCA356A4E034080020E74861&p_node=DZ52336&p_submitted=N&p_rank=&p_answer=&p_source=External
    In addition, we have done additional work to create a template for the LabVIEW FPGA, http://sine.ni.com/apps/we/nioc.vp?cid=11829〈=US
    which has 96 digital I/O lines as well as 8 analog in. With the NI-7831R you are able to combine analog and digital events in the electrical substation.
    Further, using PXI, we can synchronize with a GPS time stamp such as IRIG-B, and perform these functions all in a headless - real-time OS LabVIEW.
    I woul
    d be happy to discuss your application in more detail and offer a complete solution, or a recipe to create the solution yourself.
    Thanks for the question,
    Preston Johnson
    Business Development Manager - Industrial Applications
    National Instruments
    512-683-5444
    [email protected]
    Preston Johnson
    Principal Sales Engineer
    Condition Monitoring Systems
    Vibration Analyst III - www.vibinst.org, www.mobiusinstitute.com
    National Instruments
    [email protected]
    www.ni.com/mcm
    www.ni.com/soundandvibration
    www.ni.com/biganalogdata
    512-683-5444

  • Is variable offsets can be used for characteristics, text and formulas?

    hi all,
    can anyone let me know whether variable offsets can be used for characteristics, text and formulas.
    if so cany one send me examples of using offsets to my email id [email protected]
    regds
    hari

    You use offsets on dates (0CALMONTH, 0FISCYEAR, 0DAT and so on) and of course the corresponding texts.
    If you have 0CALMONTH in your query and you want to do the same thing not only for the current month but for the past twelve months, they you just minus 1, 2....11,12 for each selections, and at the same time you can create text variable for the description of each month.
    thanks.
    Wond

  • What can I use to create a photo banner/collage that is free formed. I'll need background colors and ability to place 5 or more pics in a horizontal row? Does adobe have a product i can use to create this?

    what can I use to create a photo banner/collage that is free formed. I'll need background colors and ability to place 5 or more pics in a horizontal row? Does adobe have a product i can use to create this? I'm not looking for templates when creating.
    thanks
    tracy

    You can select 5 (or more images) and place them by dragging in Adobe InDesign. After creating document go to File > Place, navigate to images and select them. In InDesign start dragging and press right arrow key couple of times then release mouse button. You can export file as PDF, JPG, PNG image from File > Export.

  • Hi -- am an iMovie11 user and want to know if Motion 5 can be used for additional transitions, titles etc. inside iMovie?

    Hi -- am an iMovie11 user and want to know if Motion 5 can be used for additional transitions, titles etc. inside iMovie?
    <Email Edited by Host>

    As far as functionality goes, I don't see anything wrong. when it comes to efficiency you need to keep some general pointers in mind. These issues which I'm bringing up will not affect your code currently since your array sizes are small but can start creating memory fragmentaion and slow down the software if your array sizes are much larger and the software runs for a long period of time.
    1. Try not to use Build Array. Each time you use a built array labview creates a copy in the memory. Try to initilized your arrays and replace the subsets.
    2. as much as you can try not index arrays or unbundle cluster multiple times. try to perform as many tasks as possbile in one shot. (this was evident in your second loop)
    Besides that it's looking good. 
    I made a few modifications to your code and attached it. I wanted to give you a different take on it as it relates to being able to control the inputs and outputs programitically, if you had a look up table. I didn't make the same modifications to your second loop but I can guide you through what needs to be done if you would like to move in this direction. Again your original code is well done for someone who is new to labview so don't feel like you need to follow the new VI design. Just try to remove the build array and multiple indexing as a good programming habbit.
    www.movimed.com - Custom Imaging Solutions
    Attachments:
    Channel Testing.vi ‏41 KB

  • Which software can i use for recovery management that will allow me to use DVD's instead of Flashdsk

    which software can i use for recovery management that will allow me to use DVD's instead of Flashdisk? I find DVD's easier to use. i am using windows 10

    As the other posters wrote in order to take a movie file and turn it into a DVD that can be played in standard DVD players you need a DVD authoring application. That you need a separate program to create the DVD is standard procedure and has been that way since the beginning. All Apple produce that can produce video files require an external authoring program. iMovie, iPhoto and Final Cut all do this.
    One other thing I will comment on is your choice of output format. You will almost certainly be disappointed with the video quality of your finished DVD if you put a HD video on a SD DVD. Unless you plan to burn a bluray disk you will get a better quality video if you output as SD if you plan to burn to an SD disk.
    regards

  • Do you know if Assessment Filter fields can be use for reports?

    Do you know if Assessment Filter fields can be use for reports?
    I have an Assessment filter field in contacts that it use to capture relavant information for the contact. Because I thought we could use it as another picklist. But when I am creating a report I can find it in the list of fields available for the report.
    Thank you very much
    Catalina Valadez
    Regards

    Hi thank you for the answer but a have another point.
    I am not using asssessment as an object, I am just using the field "assessment filter 3" that is one's of the default field for contacts that you have for customize the application. So I thought it will be show in the list of fields for the reports (Going to Reports -> Design Analysis -> under reporting choosing "Contacts") and I can't see this field, when I'm looking in "Contact Fields".
    Regards
    Catalina Valadez

  • Hello, is there a way that the Test Stand APIs can be used for ASP / Web?

    Hello,
    I do hope someone can be an idea.
    Is it possible that the TestStand API's can be used for ASP/Web?
    Currently, we are using Teststand running on exectuble application, but if the TestStand API's can be used on web (Just the operator interface), then it will be easier for engineers/operators to see the results locally and remotely by a web browser.
    Any ideas?
    Thanks for the help.
    Mhelinx

    Mhelinx,
    i don't think that the TestStand API can be used in ASP very nicely.
    TestStand is an ActiveX Server and it seems to be possible to use ActiveX in ASP, but i have read that doing will require reboots of the server from time to time (never done that myself, so relying on 3rd party information).
    But there is another, maybe better approach:
    Using LabVIEW as your user interface, you can use the Webserver capability of LabVIEW to include the functionality of your UI into your ASP webpages. You can create different "looks" for your application in the webpage while the LV UI stays always the same......
    I have never done this as well, and it might be a bit tricky to access data from the visible controls though.
    hope this helps,
    Norbert
    PS: If you are using C# for the UI, i think that this is possible as well....
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • The AIR can be used for the EXE/Direct3D based game?

    --English
    Hello there.
    I'm a game programmer.
    I saw that the AIR is being used for LOL(legend of leaders).
    I don't know  is the AIR used for just game launcher? or in-game UserInterfacce?
    Some of games are implement user-interface by the SWF(flash output) with the Scaleform.
    Scaleform is C++ library which rendering SWF using Direct3D on the game screen(also include fullscreen) and notify event that interaction with the user input through the C++ level event.
    It provides with .h, .lib, .dlls
    The AIR can that above things?
    The AIR can be used for the exe based 3D game?
    --Korean
    AIR 를 이용해서 스케일폼처럼 게임 내부의 UI를 구현할 수 있는지 궁금합니다.

    Hi,
    If the report in question is same as the post on which I replied a few minutes ago, then you can try this:
    1) Create a parameter in the Main report. Go to Field Explorer and create a new Parameter.
    Set the List of Values option to 'Dynamic' and choose the Region Field from under 'Value'
    2) I'm assuming the Crosstabs are placed in the Sub-report. So, right-click the subreport and select 'Change Subreport Links' > Move the Main report parameter to the 'Fields to Link to' area and from the drop-down for 'Select data in subreport based on field' choose the Region Field.
    This will automatically add the Main report parameter to the selection formula of the sub-report.
    Hope this helps!
    -Abhilash

Maybe you are looking for

  • Inventory Management: Snapshot ODS 2LIS_03_UM

    In the How to guide the Update rule from 2LIS_03_UM for the Key Figure refers to: if the returncode is not equal zero, the result will not be updated     RETURNCODE = 0.   ELSE. if the returncode is not equal zero, the result will not be updated    

  • T-code for PR to be deletion

    Hello,experts Is there  Tcode for mass deletion of generated PR after MRP run? if yes please send it regards, mangesh

  • Creating attachment in CRM 1Order ... How to refresh?

    Hi, I am using CL_CRM_DOCUMENTS in a CRM action to attach a generated PDF document. This works fine! But... when I'm in the transaction and execute this action, the attachment is made but the overview on the 'Documents' tab is not updated. If I go ou

  • Stand-alone data tables, no ODBC drivers

    Using only Java, is it possible to create, populate, index and query stand-alone data tables without the use of any ODBC drivers or DBMS? At work we cannot install such software on our workstations. However, I do have JDK2 installed and working fine.

  • Java barcode scanner help

    Hi. I am working on a barcode scanning program in Java. I have a Wasp WCS3905 USB barcode scanner and what I want to do is scan the barcode of anything (chocolates, books, etc) and then I want the program to open the file where the barcodes and respe