Joining InfoObject attributes and descriptions in one Object

Hi all!
I have an InfoObject with attributes and a short and a long description text (language depending).
I need to distribute this InfoObject via Open Hub in one table.
So i need to join the attribute table with the text table.
Structure of Open Hub Destination:
Field 1: InfoObject (from attribute / text table)
Field 2: language key (from text table)
Field 3: attribute of InfoObject (from attribute table)
Field 4: short description (from text table)
Field 5: long description (from text table)
What is the easiest way to join this two tables in BI 7.0?
Thanks for any ideas...
kj

1. Create your Openhub Destination with strcture mentioned by you (While creating Openhub Destination select Subtype as 'Attributes'. once you goto Openhub maintenance screen add 'language', Short Description, Long description fields).
2. Create transformation Openhub Destination. map all the atrributes one to one mapping. for language, Short Des. and Long desc, do look up at your IO Text Table.
Create DTP on your OH.
Hope this helps.
Nagesh Ganisetti.
Assign points if it helps.

Similar Messages

  • Display value and description of one field in alv grid

    Hi Folks,
       I want to display value and description of one field as one column in alv grid.
    for example iam having Xfield = 01,02,03.
    and 01 iam having text value as xxx,
    01 xxx
    02 yyy
    03 zzz
    Im report display the values are displaying as 01,02,03..
    but i want to display it as 01 xxx,02 yyy, 03 zzz.
    Please do needful.
    Thx.

    Hi, swetha
    You can do this with "concatenate".
    example:
    In you code check where you final internal table is getting filled up before that do this concatenate and then append it.
    data t_text type string.
    t_text = textfield
    CONCATENATE 'Xfield'
                     t_text
                      INTO wa_workarea SEPARATED BY space.
    cheers,
    Bhavana

  • SharePoint list 2013 : Join 2 lists and combine into one view

    Hi
       I have created 2 custom list (say List A and List B) with few columns. I mapped the the default ID column from List A to List B by creating the lookup column(i.e List B :TestID; List A: ID). I want to programmatically combine these two lists
    without using the additional lookup fields like what they explained in 
    http://blogs.msdn.com/b/kaevans/archive/2012/01/20/sharepoint-2010-caml-list-joins.aspx
    also not using Linked DataSource in Sharepoint Designer
    How to achieve this ?
    Regards
    Siva

    You can do query in multiple list using Joins in CAML Query. check below example:
    Created two list Markmaster and StudentMaster, both are connected with a lookup column(StudentID). Requirement is to fetch data from both the list.
    StudentMaster List Column are StudentID, Name, Class, SEction, RoleNumber
    MarksMaster List Column are ID, Title, ScienceGroup, ArtGroup, CommerceGroup, StudentID(Lookup of Studentmaster List but it is not necessary to be a lookup field, it can be a number field)
    SPQuery query = new SPQuery();
    SPList customerList = Oweb.Lists["MarksMaster"];
    query.Query = @"<Query><Where><Neq><FieldRef Name='ID' /><Value Type='Counter'>null</Value></Neq></Where></Query>";
    query.Joins = @"<Join Type='Left' ListAlias='StudentMaster'>
    <Eq>
    <FieldRef Name='StudentID' RefType='ID'/>
    <FieldRef List='MarksMaster' Name='ID'/>
    </Eq>
    </Join>";
    query.ProjectedFields = @"<field Name='StudentName' Type='Lookup' List='StudentMaster' ShowField='Title'/>
    <field Name='StudentSection' Type='Lookup' List='StudentMaster' ShowField='Section'/> ";
    query.ViewFields = @"<FieldRef Name='StudentName'/>
    <FieldRef Name='StudentSection'/>
    <FieldRef Name='ScienceGroup'/>";
    Adnan Amin MCT, SharePoint Architect | If you find this post useful kindly please mark it as an answer.

  • Dimension in WebI query filter needs to show Key and Description

    Hi,
    We have two requirements that we can't get them done:
    1. We are building webi report based on Bex universes and we need to show the key and description of an object in the query filter of the report. Does this have to be set in the Bex variable or in the universe?
    2. filter the LOV related to a specific dimension that is used in the query filter as prompt. The idea is to show a filtered list in the promp LOV of the dimension used in the query filter of the report. Does this have to be set in the Bex query or in the universe? If it is in the Bex Query, where exactly?
    Our system is the following:
    - BOE XI 3.1 SP2
    - SAP NW 4.0
    I await your answers. Thanks in advance.
    xtian

    Hi
    1. We are building webi report based on Bex universes and we need to show the key and description of an object in the query filter of the report. Does this have to be set in the Bex variable or in the universe?
    >> you can easily achieve that by creating a variable in the BEX query - that will return as a LoV with key and description assuming you have key and description in BW for the InfoObject.
    2. filter the LOV related to a specific dimension that is used in the query filter as prompt. The idea is to show a filtered list in the promp LOV of the dimension used in the query filter of the report. Does this have to be set in the Bex query or in the universe? If it is in the Bex Query, where exactly?
    >> so like filter Country = US in the filter and then prompt only for customers in the US ? if so that is not possible right now.
    Ingo

  • How to change the name and description of a wim using DISM

    With Imagex we could update the name and description of the wim with on easy command:
    imagex /info img_file [img_number or
    img_name] [new_name] [new_desc]
    e.g.
    imagex /info Win7Combined.WIM 1 "Win7(x86)" "Windows 7 x86"
    Since the ImageX tool is deprecated in Windows 8 and has been replaced with DISM, can someone explain how to update the name and description with one easy command using DISM like we could with Imagex?

    It looks like this person had the same issue. Have you seen this
    link
    It talks about exporting an Index into a new WIM. Which, in a way, would be renaming it. It's really recreating it and you have to give it a name. But it seems to work.
    Dustin Estes - MCP | www.dustinestes.com

  • Attrribute and element on one type - URGENT

    Hi!
    I need have attribute and element in one type.
    Example:
    <xs:complexType name="EntityE">     
    <xs:attribute name="value" type="xs:string" use="required"/>
    <xs:sequence>
    <xs:element name="classCode" type="CS" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    Please, help me!!!
    Thanks!

    The xs:attribute is after the xs:sequence elment.
    <xs:complexType name="EntityE">
    <xs:sequence>
    <xs:element name="classCode" type="CS" minOccurs="0"/>
    </xs:sequence>
    <xs:attribute name="value" type="xs:string" use="required"/>
    </xs:complexType>
    thanks,
    Deepak

  • Why am I getting the error message "Can't open the illustration. The illustration contains and incomplete or garbled object description."

    I work in a graphic design firm and 4 separate people have received these messages on separate days using separate files on separate MAC computers. We are all using CS6.
    "Can't open the illustration. Could not complete the requested operation."
    "Can't open the illustration. The illustration contains an illegal operand. 1206.3.6006 % 1205.9736 1178.52 m % 1206.2236 1178.8374 I % 1206.3232 1178.% 1206.3.6006"
    "Can't open the illustration. The illustration contains an illegal or misplaced operator. ∘ê 3 0 R 508054 0 R 508055 0 R]/Order 508056 0 R/RBGroups[]>>/OCGs[5 0 R 6 0 R 7 0 R 8 0 R 9 0 R 46702 0 R 46703 0 R 46704 0 R 467"
    "Can't open the illustration. The illustration contains and incomplete or garbled object description."
    After clicking ok the file will open; however, most of the illustration is missing. We are interested in repairing our files, but we are more interesting in figuring out why this is happening and fixing it. We are nervous to even open anything for fear this will happen again.
    Please help!

    brittanyesparks,
    One thing often tried first is to create a new document and File>Place the corrupted one to see how much may be rescued that way (remember to tick Paste remembers Layers in the Layer palette flyout/dropdown first, and to untick it afterwards).
    Here is a website where you can see whether it can rescue the file, and if it can, you may pay for a subscription to have it done,
    http://www.recoverytoolbox.com/buy_illustrator.html
    and another similar website,
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error-occurred-pdf2dtp-fi le-recovery/
    As far as I remember, the former is for Win and the latter for Mac.
    Here are a few pages about struggling with it yourself:
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://kb2.adobe.com/cps/500/cpsid_50031.html
    http://helpx.adobe.com/illustrator/kb/enable-content-recovery-mode-illustrator.html

  • How can i add an custom attribute and assign it to an existing custom object class in sun ds

    I need to add an attribute to sun ds schema and assign it to an existing custom object class.
    I know how to add an attribute but how can i add the attribute to an existing custom object class.
    Please help.
    Thanks

    The objectclasses attribute is multi-valued, so you can add several values to it as long as they are unique.
    For instance, I think you can add several declaration of the same objectclass as below (note the difference is the number of spaces in the value) howewer, from a schema perspective, only 1 will be taken into account:
    objectclasses: ( 2.5.6.6 NAME 'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256' )
    objectclasses: ( 2.5.6.6 NAME   'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256    ' )
    That's the reason why it is safe to delete previous value if you want to update an existing objectclass. No problem to add a new objectclass (new oid and new name) to the schema.
    -Sylvain

  • JOIN two tables and creat a new one

    dear all,
    as a newbie in Bw i have a question.
    I worked already with other etl tools (powercenter) where there are objects to join 2 tables and create a new one to create a total transforming process to load a fact table.
    In BW an INFOSET is the only thing to join 2 odssen. On this a query can be created.
    BUT HOW TO JOIN 2 TABLES (= only ODS object?) AND CREATE A NEW TABLE FOR FUTHER PROCESSING ????
    Regards,
    Herman

    hi jacobs, refer to these links particularly second one
    http://help.sap.com/saphelp_erp2004/helpdata/en/92/43ec39d0383f09e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_erp2004/helpdata/en/f1/713c3b
    35703079e10000000a114084/content.htm
    hope this clears ur doubt
    Assigning points is the way of saying thanks in sdn
    ravi

  • InfoProvider: infoObject (master data attribute and text)

    I saw info Object of master data attribute and text in InfoProvider.
    are infoObject act like a table when we do query on them.

    Hi
    Refer to this as down
    Custome Infoobjects Tabels:
    /BIC/M -- View of Master data Tables
    /BIC/P -- Master data Table, Time Independent attributes
    /BIC/Q -- Master data Table, Time Dependent attributes
    /BIC/X -- SID Table, Time Independent
    /BIC/Y -- SID Tabel, Time Dependent
    /BIC/T -- Text Table
    /BIC/H -- Heirarchy Table
    /BIC/K -- Heirarchy SID Table
    Standard Infoobjects Tabels(Buss. Content):
    Replace "C" with "0" in above tables.
    Ex: /BI0/M -- View of Master data Tables

  • How do i join multiple paths to make one object.....

    .... so as to be able to apply a fill over the whole object?? 
    This might sound more obvious than it actually is in this case so i'll explain.  My partners artwork contains a lot of linework and unfortunately, i can't get the degree of accuracy i need with a continous path.  Therefore, the problem i have is joining lots of paths (some of which have endpoints joining midway through other paths) to make a single object with the strokes preserved, so i can apply a fill to the overall object or to individual sections. 
    I've tried unite, join and all the other commands that i'm aware of but all give undesired effects.  I've tried using a compund path but all that does is make them act as one but still doesn't do what i need with regards to filling the object.
    A simplified example of what i need to achieve is this...... create a square using 4 seperate paths and then a cross through the middle using more seperate paths to create a 4 box square.  I need to be able to make this one object so i can fill each individual square a different colour if need be?? 
    This is something i've found i will need to be able to do on a regular basis so any help is gratefully received
    Thanks for any help in advance

    Thank you friend, this is exactly what i'm after.  Something so simple that has escaped my knowledge up until now...... absolute lifesaver
    Thanks to both of you that answered

  • When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page.

    When printing a list in Address Book, how can I select more than the default Attributes and keep them selected when I print again? I want to print ALL information for contacts so I have email address, notes, phone, company, title, etc all on one page. I don't want to have to check off an additional 5 or 6 attributes each time I print out contact information. Is there a way to change the default setting for printing lists, so it is not just "phone," "photo," and "job title?"

    I have a user who wants to do this same thing. I did not find any way either to default the attributes to anything other than what you see the first time. Seems like such a trivial thing, hard to believe they do not allow it. I did find a program for this called iDress but I can't seem to download it from any links on the Internet. Not sure if it is free or not, but it was recommended by a link on the Mac support site.

  • In pages, when a create a document, potions of it, say several pages will be clumped together and it effects me editing their order.  It is like they are forever joined- How do I edit my document and print just one page or move just one page?

    In pages, when a create a document, potions of it, say several pages will be clumped together and it effects me editing their order.  It is like they are forever joined- How do I edit my document and print just one page or move just one page?

    May you open your eyes before creating a new thread ?
    Your question was already asked and answered today.
    https://discussions.apple.com/thread/3177074?tstart=0
    Yvan KOENIG (VALLAURIS, France) jeudi 14 juillet 2011 14:40:40
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please :
    Search for questions similar to your own
    before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Both attribute value and description showing on attribute value dropdown list

    Hi All,
    I am using CRM 7.0 EhP 1 and I have encountered a item I need to address in regard to the display of a Marketing Attribute values on the Account Overview page (BP_HEAD/BPHEADOverview) on the Web Client.
    The component in question on the page is BP_DATA/MarketingAttributesEOVP.
    The value dropdown lists for each attribute show both the Attribute Value (in my case a number) and Description. We require that only the Description is shown and not the Attribute Value in brackets also.
    Is there a user setting that controls this or is displaying both standard with no adjustment possible through user settings or configuration? 
    Thanks,
    Jonathan

    Hi All, 
    The following OSS note looks to resolve issue in question above:
    1647509 - Attributes value shown as value+description in accounts page
    Thanks for your assistance.
    Jonathan

  • Need an help to maintain catalog structure for objects parts,defects,causes,activities and coding in one z table

    Hi Experts,
    I am trying to create a z table with the same fields repeating for the development in PM module.
    I want to have Catalog structure (Catalog,Code group,Code) for objects parts,defects,causes,activities and coding in one z table.Firstly I have created these fields by selecting it from QPCD table.Then as I want the same functionality as it is in IW21 (PM Notification) I created the fields by referring to VIQMFE, VIQMUR , VIQMEL and VIQMMA as in IW21.
    1) However, I am not able to maintain the values.Once I select catalog structure for object parts and then when I am selecting it for defects the search help is still taking the object parts value in it and not allowing me to get the relevant data and also to maintain the data.
    I feel the problem is of check table as all the fields are referring  to the same check tables TQ15 , QPGR and QPCD but I am not getting the exact solution.
    Please find attach the screen shot of the table I have created and also the error I am getting while maintaining the values.
    Please do the needful.
    With Regards,
    Sonali Deshmukh

    Hi All...
    I got the solution.
    Thank You.
    With Regards,
    Sonali Deshmukh

Maybe you are looking for