Adding additional tables to the extractor configuration

Hi Experts,
Can you please help me adding additional tables to the SAP extractor and to configure the field data in the orgstructure to show a flag against the position.
Luke - I have tried using the option said by you from Application-wide Settings-->Data Centre --> Read SAP Table, it has properly save the added table, but not able to see it from SAP extractor configruation and not able to extract any data. Also, can you please guide me how to use the fields from this table (HRP1010) to write a small piece of logic to show a flag for a particualr position based on data.
Thanks in advance,
Purandhar

Hi Purandhar,
I have tried using the option said by you from Application-wide Settings-->Data Centre
--> Read SAP Table, it has properly save the added table, but not able to see it from
SAP extractor configruation and not able to extract any data.
This has probably added a data element - I would check in the dataelementconfiguration folder in your build's .delta folder. IF so then you have the first step completed. Now you need to add the necessary configurations to use the data that comes through this data element.
Go to your orgchart/hierarchy and navigate to Views. Here select your view (or your first view if this needs to be done for more than one view - if so you'll need to repeate these steps but not the step you already did in the Data Centre), and then click the + icon next to Design Details. Here you can add a new linked detail to your view detail. Simply give it a name, select the detail to link it to (usually the top level detail which is in blue), select a link field and then select your data element that was created in the Data Centre.
Now if you try to add a section to your view inside the Design Details view designer you will see your new detail added. You can then select it and add fields from this detail.
Also, can you please guide me how to use the fields from this table (HRP1010) to write
a small piece of logic to show a flag for a particualr position based on data.
Once you have been able to add the data in the views designer you will probably need to do some XML and XSL editing because you cannot edit XSL files in the AdminConsole and you will need to do this to get your icon/flag to show.
First of all you need to create a new XSL file and put it into a folder in your .delta\root folder. For example, My_XSL_files. Here you need to write the code to render your flag based on your variable. You can find plenty of examples in all of the pre-existing XSL files. Then you need to copy PresentationResources.xml to .delta\root\XML and add the reference to your new XSL file.
Go to your build's .delta folder and go to detailconfiguration. Find the detail you just created and open it. You'll find a section in their that you just added with a reference to an XSL file (e.g. if you added a Simple Caption section it will probably be something like SimpleCaptionXSL). Change this to the reference in the PresentationResources.xml.
Load your build in the AdminConsole and hit Publish. Once done you should see your icon. Sometimes if your XSL is invalid or the code doesn't work you won't see anything. This is not unusual as the whole process can be quite tricky - even for us with lots of experience!
Good luck!
Luke

Similar Messages

  • Hi Guys,  I am using the full width video widget on a site. The widget was working perfectly however I have just added additional content to the site and re-uploaded and now the video is not working! Please help I have tried everything and am freaking out

    Hi Guys,
    I am using the full width video widget on a site. The widget was working perfectly however I have just added additional content to the site and re-uploaded and now the video is not working! Please help I have tried everything and am freaking out as this web-site has been payed for by my client.
    Alex

    Many thanks.
    With those symptoms, I'd try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • Adding Additional Columns to the Results

    Hi,
    I wanted to additional column in iRecruitment Vacancy Results Table.I have added the column using personlaization but it's not displaying.
    Here are the Steps that I have done.
    iRrecruitment Administrator --> Vacancies --> Search for the Approved Vacancies.
    Click on the Abpout Page and found the VO Object: IrcVacancyVO
    Found the Attribute that I need to add : VACAttribute8
    I have created a New Item with Style : Message Styled Text
    and provided the View Attribute (VACAttribute8) and View Instance(IrcVacancyVO) accordingly.
    The Item that I am adding is attribute8 of the Additional Vacancy Details DFF.I have enabled this attrbiute in the Flexifield.
    The attribute is part of the IrcVacancyVO Query.
    I am not sure what's I am missing but its not displaying the column that I have added.
    Any Input is highly appreciated.
    Regards,
    A
    Edited by: 791680 on Jun 17, 2011 11:22 AM

    Hi Wasey,
    Try as Diwakar told. I am not able to see that tripline in display mode. A long back i copied the same program and i added extra fields in it.I copy program SAPLMCB3 inside which routine AUSGABE_LISTE_KZ.
    Regards,
    Madhu.

  • Adding Additional Tables to an Existing Query

    Dear All
    I have the following tables and relationships:
    I have the following query that returns records from the table SENAlert where the StudentID and the TeacherUsername are passed in as parameters.
    Also, records are only returned if there isn’t a corresponding record in the SENAlertHistory table (i.e. SENAlertHistorySENAlertID IS NULL).
    This query is returning the results that I would expect:
    SELECT       
    SENAlert.SENAlertID, SENAlertType.SENAlertTypeDescription
    FROM           
    SENAlertHistory RIGHT OUTER JOIN
    Teacher INNER JOIN
    Class ON Teacher.TeacherCode = Class.ClassTeacherCode INNER JOIN
    ClassMember INNER JOIN
    SENAlert INNER JOIN
    SENAlertType ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID INNER JOIN
    Student ON SENAlert.SENAlertStudentID = Student.StudentID ON ClassMember.ClassMemberStudentID = Student.StudentID ON
    Class.ClassClassCode = ClassMember.ClassMemberClassCode ON SENAlertHistory.SENAlertHistorySENAlertID = SENAlert.SENAlertID AND
    SENAlertHistory.SENAlertHistoryTeacherCode = Teacher.TeacherCode
    WHERE       
    (Student.StudentID = 011763) AND (Teacher.TeacherUsername = 'dsmith') AND (SENAlertHistory.SENAlertHistorySENAlertID IS NULL)
    However, I need to extend this query to include additional teachers who may also teach this student. I am trying to add in 3 additional copies of
    the Teacher table as Teacher_1, Teacher_3 and Teacher _3 in order to include them in the query also.
    However, when I add these tables in I no longer get any results returned.
    I have managed to do this on other queries but not this one.
    SELECT SENAlert.SENAlertID, SENAlertType.SENAlertTypeDescription
    FROM SENAlertHistory INNER JOIN
    Teacher ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher.TeacherCode INNER JOIN
    Teacher AS Teacher_1 ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher_1.TeacherCode INNER JOIN
    Teacher AS Teacher_2 ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher_2.TeacherCode INNER JOIN
    Teacher AS Teacher_3 ON SENAlertHistory.SENAlertHistoryTeacherCode = Teacher_3.TeacherCode RIGHT OUTER JOIN
    Class INNER JOIN
    ClassMember INNER JOIN
    SENAlert INNER JOIN
    SENAlertType ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID INNER JOIN
    Student ON SENAlert.SENAlertStudentID = Student.StudentID ON ClassMember.ClassMemberStudentID = Student.StudentID ON
    Class.ClassClassCode = ClassMember.ClassMemberClassCode ON Teacher_3.TeacherCode = Class.ClassTeacherCode AND
    Teacher_2.TeacherCode = Class.ClassTeacherCode AND Teacher_1.TeacherCode = Class.ClassTeacherCode AND
    Teacher.TeacherCode = Class.ClassTeacherCode AND SENAlertHistory.SENAlertHistorySENAlertID = SENAlert.SENAlertID
    WHERE (Student.StudentID = 011763) AND (SENAlertHistory.SENAlertHistorySENAlertID IS NULL)
    AND (Teacher.TeacherUsername = 'admin\dsmith' OR Teacher_1.TeacherUsername = 'admin\dsmith' OR Teacher_2.TeacherUsername = 'admin\dsmith' OR Teacher_3.TeacherUsername = 'admin\dsmith')
    No results are returned from this adapted query. I have noticed that by adding the additional tables, it keeps changing the type of joins that I
    have between certain tables. I have tried all sorts of combinations but haven't been able to make it work.
    I would be really grateful for any advice that you may be able to offer.
    Many thanks
    Daniel

    Dear All
    I followed the advice and created the query again from scratch, one table and relationship at a time checking that I am getting the expected result. I have put much of the query back together with the correct output:
    SELECT
    SENAlert.SENAlertID,
    SENAlertType.SENAlertTypeDescription
    FROM dbo.SENAlert
    INNER JOIN dbo.SENAlertType
    ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID
    INNER JOIN dbo.Student
    ON SENAlert.SENAlertStudentID = Student.StudentID
    INNER JOIN dbo.ClassMember
    ON ClassMember.ClassMemberStudentID = Student.StudentID
    INNER JOIN dbo.Class
    ON ClassMember.ClassMemberClassCode = Class.ClassClassCode
    INNER JOIN dbo.Teacher
    ON Class.ClassTeacherCode = Teacher.TeacherCode
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher1
    ON AdditionalTeacher1.TeacherCode = Class.ClassAdditionalTeacherCode1
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher2
    ON AdditionalTeacher2.TeacherCode = Class.ClassAdditionalTeacherCode2
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher3
    ON AdditionalTeacher3.TeacherCode = Class.ClassAdditionalTeacherCode3
    WHERE Student.StudentID = 011763
    AND (Teacher.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher1.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher2.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher3.TeacherUsername = 'admin\dsmith')
    The problem arises when I try to add the SENAlertHistory table back in. I only want to show results where a related record does not exist in SENAlertHistory. I have tried every combination of relationship but none have been successful.
    I think maybe I need to be using a subquery instead.
    Thanks for your help
    Daniel
    do you mean this?
    SELECT
    SENAlert.SENAlertID,
    SENAlertType.SENAlertTypeDescription
    FROM dbo.SENAlert
    INNER JOIN dbo.SENAlertType
    ON SENAlert.SENAlertType = SENAlertType.SENAlertTypeID
    INNER JOIN dbo.Student
    ON SENAlert.SENAlertStudentID = Student.StudentID
    INNER JOIN dbo.ClassMember
    ON ClassMember.ClassMemberStudentID = Student.StudentID
    INNER JOIN dbo.Class
    ON ClassMember.ClassMemberClassCode = Class.ClassClassCode
    INNER JOIN dbo.Teacher
    ON Class.ClassTeacherCode = Teacher.TeacherCode
    AND NOT EXISTS ( SELECT 1
    FROM SENAlertHistory
    WHERE SENALertHistoryTeacherCode = Teacher.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID)LEFT OUTER JOIN dbo.Teacher AdditionalTeacher1
    ON AdditionalTeacher1.TeacherCode = Class.ClassAdditionalTeacherCode1
    AND NOT EXISTS (SELECT 1
    FROM SENAlertHistory
    WHERE SENAlertHistoryTeacherCode = AdditionalTeacher1.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher2
    ON AdditionalTeacher2.TeacherCode = Class.ClassAdditionalTeacherCode2
    AND NOT EXISTS (SELECT 1
    FROM SENAlertHistory
    WHERE SENAlertHistoryTeacherCode = AdditionalTeacher2.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID
    LEFT OUTER JOIN dbo.Teacher AdditionalTeacher3
    ON AdditionalTeacher3.TeacherCode = Class.ClassAdditionalTeacherCode3
    AND NOT EXISTS (SELECT 1
    FROM SENAlertHistory
    WHERE SENAlertHistoryTeacherCode = AdditionalTeacher3.TeacherCode
    AND SENAlertHistorySENAlertID = SENAlert.SENAlertID
    WHERE Student.StudentID = 011763
    AND (Teacher.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher1.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher2.TeacherUsername = 'admin\dsmith'
    OR AdditionalTeacher3.TeacherUsername = 'admin\dsmith')
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • R3load procedure creates additional tables in the target system

    Hi All
    My source  system  is  46C SR2 /oracle 817/HP_UX PARISC           and
    Target System  is  46CSR2 /Oracle 10202/HPUX IA
    I used R3load procedure to export database from source system and completed import successfully into  target system without any problem.The new system is up and running.
    My Source system has total 23193 tables but the target system has 23771 tables and source system has 27011 indexes and the target system has 27701 indexes.
    Can someone  tell me why there are additional tables and indexes in my  Target system.
    Your help will be appreciated.
    Thanks

    I used wrong id.I want to open a new message

  • OBIEE 11g additional table in the generated sql

    Hi gurus,
    In OBIEE 11g RPD, we have a fact table whose source table is consisted by table A, B, C. Table A joins to table C while table B joins to tables C. And in the content tab, table C is used to filter out some records . If we select a column of A(The aggregation rule of this column is SUM) in the answers only, then table A, B, C are in the generated sql. If we remove the aggregation rule of this column, then there're only table A, C in the generated sql. We're wondering why this happened, but can't figure out.
    In this case, the relationship between table B and C is many to one. So additional table B in the generated sql may cause wrong sum. And we need the aggregation rule to sum the number. On the other hand, we can't remove the join between table B and C, since other reports need the join.
    Could anyone please provide a solution to remove the additional table B in the generated sql?
    Thanks & regards!
    shell

    Are you using in one report data from tables A, B, C at the same time? If not:
    1) Try separating the logical schema by:
    - Create an alias table for A and B in the physical layer. Then join these 2 tables. No create another Alias table for B (with a slightly different name) and one Alias table for C. Join these 2 tables (B+ and C)
    - Then put everything in your BMM and presentation layer.
    - Test your results. Take into account that if you are working with data in tables A and B you have to use the "fact table" B but if you use data in table C, use instead fact table from table B+.
    Your logical schema would be like A-->B B+-->C
    J.

  • ADF to BPEL - Adding additional field for the web service call

    I have an existing ADF project that invokes a BPEL process. Recently I added 2 new fields to the bpel process and I want to populate this additional fields from the ADF when calling the bpel process.
    What is the best way to do this ? I dont see a way to regenerate the data control. Am I missing something ?

    correct, i am using the WS data control
    I manually added the 2 new fields in the ProjectName.xml and pagenamepagedef.xml files and also he necessary code in the bean class . But when i run it i still dont see the vallues passed to the bpel process.

  • EEWB and adding additional fields to the IBASE header

    Hello,
    I have used the EEWB (Easy Enhancement WorkBench) to add additional fields to the IBASE header. The process ends with a success state and in all steps there are no logs. The objects are generated and visible in the database table of the IBASE header and activated.
    When I go to the IB53 transaction the systems starts compiling. After the compiling there are no additional fields visible?
    In the EEWB no more actions are possible and it seems only an append structure was created with the new fields (GENERIC_IC_TASK).
    How do I get the fields to be visible in the IBASE transaction?
    I am using CRM 5.0.

    Ramakanth/Kiran,
    For creating screen structures or additional fields on the IBase header screen you would need to manually append entries in Database Tables T371D.... through T371Z, it is a set of around12-14 tables depending on the scenario which would need updations.
    Once updated in the right sequence you can see the EEWB fields on the Ibase header screen.
    Hope this helps.
    Amit Sitlani

  • Table where the UI configuration details are stored

    Hi,
    I have the GUID information of Transport Request.
    Now I want to identify the related COMPONENT NAME / PAGE / ROLE CONFIG KEY /  COMPONENT USAGE/ OBJECT TYPE/OBJECT SUBTYPE
    Is there is any table where all the UI configuration are stored.pl suggest
    Regards
    BABU

    Though i don't know the excat place but I can suggest you that you do the following
    a) Start the st05 trace.
    b) launch the bsp_wd_cmpwb
    c) Perform the configuration changes.
    d) stop the st05 trace.
    e) Now if you do the due diligence , then you can find out the name of the table.
    Tedious i know but this is the way i know to do the things when i don't know the excat table.
    Regards
    Kavindra

  • How to fill setup table for the Extractor: 2LIS_02_CGR

    Hi,
    Tthere is no data for the 2LIS_02_CGR extractor in RSA3 T-Code, I would like to load the data and as per my understanding i need to fill the step table.
    Could any one provide me the step-by-step to fill the setup table.
    Regards,
    Prem
    Edited by: pannalde on Dec 2, 2010 6:03 AM

    Hi Prem:
        For more details please refer to the blog by Paulo Junior.
    "The SET UP!"
    /people/paulo.junior/blog/2010/11/25/the-set-up
    Regards,
    Francisco Milán.

  • Adding New table to the existing page

    Hi,
    i have a task i.e i have to create a new UI(consista table structure) and add to the existing page.How can do this one.If any one knows please respond asap.
    This is urgent requirement.
    Thanks in advance.
    Bye
    Palakondaiah

    Hi,
    i have a task i.e i have to create a new UI(consista table structure) and add to the existing page.How can do this one.If any one knows please respond asap.
    This is urgent requirement.
    Thanks in advance.
    Bye
    Palakondaiah

  • Adding additional pages to the universal driver's special pages settings

    Hi.
    Ok I have a 3 tray HP laserjet 4050 printer that we use for printing works orders.
    I have it set up so that page 1 will print from say tray 3 and then page 2 will print from tray 1 etc but I really need to beable to get the printer to print pages 3 and 4 from a different tray also.
    I am using the HP universal 5.5 driver as the 4050 does not support special page printing. Problem is the Special Page settings (through driver 5.5)only seem to support first and second page printing. 
    Is there a way to get it to add a 3rd and 4th page to this section? 
    this issue is now becoming a serious problem for me work wise. 

    He is using the blog template to create a blog.
    The photo on the main page has been highlighted and then selected as a link to the "entry".
    Select "iWeb help" form the "help" drop down menu and you will find information about making a blog.
    Then go to the section on "working with text and adding links".
    If you are really new to this I would recommend you watch the video tutorials that can be accessed from the iWeb "help" menu.

  • Purcahsign data tables for the extractors 2lis_02_scl and 2lis_02_itm

    Hi,
    Can any one tell in which tables the purchasing data is stored in R/3
    Thanks in Advance
    Dru

    Hi........
    EKKO >> Purchase document  
    EKPO >> Purchase document (item level)  
    EKPV >> Shipping-Specific Data on Stock Tfr. for Purch. Doc. Item 
    EINA >>Purchase info record (main data)  
    EINE >> Purchase info record (organizational data)
    EBAN >> Purchase requisition  
    EBKN >> Purchase Requisition Account Assignment 
    T024 >> Purchasing Groups
    EKET >>  Scheduled lines   
    EKES  >> Vendor confirmed lines 
    Regards,
    Debjani......

  • Adding additional ipod to the same laptop

    help. we have recently loaded my daughters ipod to the laptop. now we are trying to add my ipod to the same laptop only there is no sign of being asked to register, nor can we sync the songs to my ipod. can more than one ipod be added to the same computer? i already have an account with apple does this help the problem.

    See these articles about using more than one iPod on one computer, and with either one or more iTunes libraries.
    Multiple iPod installations.
    How to use multiple iPods with one computer.

  • 4x512MB - adding 2x1GB: What is the best configuration?

    Hello,
    I just ordered a MacPro with 4x512MB installed from Apple and an additional 2x1GB from MaxUpgrades.com. (For a total of 4GB)
    What is the best way to install the ram on the riser cards to get the best performance for my memory scenario?
    Looking forward to your suggestions.

    Best way is to put the 2x1GB on one riser card in the slots closest to the motherboard. Put 2x512MB on the other riser card close to the motherboard. The question is what to do with the last 2x512MB - I'd say it would be best putting them on the same riser as the 2x1GB in the 2 slots away from the motherboard. You basically want the higher capacity 2x1GB DIMMs on the same riser card close to the motherboard.
    See http://www.anandtech.com/mac/showdoc.aspx?i=2832&p=1

Maybe you are looking for