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.

Similar Messages

  • Insert a Blank Column in the Results Area of a Workbook

    Is it possible to insert a blank column in the results area of a WORKBOOK that does not get affected by free characteristic drill down or refreshing of the corresponding query?  The current workbook looks like follows
    Column A - Characteristic1
    Column B - Characteristic2
    Column C - KeyFigure1
    Column D - KeyFigure2
    Column E - KeyFigure3
    Column F - KeyFigure4
    The requirement is that the user wants to enter some estimates between Column B and Column C and Column D and Column E as follows
    Column A - Characteristic1
    Column B - Characteristic2
    Column C - USER ENTRY
    Column D - KeyFigure1
    Column E - KeyFigure2
    Column F - USER ENTRY
    Column G - KeyFigure3
    Column H - KeyFigure4
    Column I - CALCULATIONS BASED ON USER ENTRY
    First I tried to split the results area and save the workbook.  But when the query is refreshed then the entire results area gets back in one piece.  I succeeded partially by having a key figure with no possible output (i.e., restricting a non-existent value on a characteristic).  Again in here, whatever user inputs will get wiped out with the drill down.  Does any one have any pointers?  Thanks.
    IS

    Hi IS,
    As a nearly workaround I can suppose to do the following.
    Create two identical requests.
    In the first one hide the columns to the right from your intended new user column. In the second one - hide columns to left.
    Knowing the columns number to be shown in each request you can place both request in the same row, but in different columns taking into account that between result areas should be one (or more) additional column.
    Data entered by a user will not be wiped out during query refresh or drilldown. Of course, these user data will not conform drilldown operations. So, it is not 100% solution you want.
    Another possibility, very hard to implement (if feasible at all), is to write VB code that will monitor user action and will keep data entered by a user somewhere in another sheet and restore them in proper cells after user action (drilldown). But I don't think such coding worth it.   
    Best regards,
    Eugene

  • Adding Additional Columns in LOV,That column capturing values from function

    My requirement:
    Adding Additional Columns in LOV,That column values capturing values returned by function.....
    Give me the ides to achieve this...

    Hi Subramaniam,
    If your requirement is to call a Database function then please make use of the below code ,
    import java.sql.CallableStatement;
    import java.sql.SQLException;
    import oracle.apps.fnd.framework.server.OADBTransactionImpl;
    OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
    OADBTransactionImpl txn = (OADBTransactionImpl)oaapplicationmodule.getOADBTransaction();
    CallableStatement cs = txn.createCallableStatement ("begin :1 := xxpackageName.xxfunctionname(:2,:3); end;",-1);//Replace your function Name
    try
    cs.registerOutParameter(1, Types.VARCHAR);
    cs.setString(2,InputParam1); // InputParam1 is the name of variable captured from the OAF page and passed into function as input parameter
    cs.setString(3,InputParam2); //InputParam2 is the name of variable captured from the OAF page and passed into function as input parameter
    String outParamValue = null; // outParamValue will capture the value returned by function .
    cs.execute();
    outParamValue = cs.getString(1);
    catch(SQLException sqle)
    throw new RuntimeException(sqle);
    finally
    cs.close();
    Let me know if its not clear .
    Keerthi
    Edited by: keerthioaf on Nov 23, 2012 5:17 AM

  • 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 a column in the MSS Approval view

    What are the options for adding a column in the MSS approval view (CATS regular) ?

    there are lot of colums available in cats customisation for this
    Please check
    In the IMG (transaction SPRO), go to
    - SAP Customizing Implementation Guide
      - Cross-Application Components
        - Time Sheet
          - Specific Setting for CATS regular
            - CATS regular
              - Approve Working Time
                - Define Field Selection for Individual Approval View
                - Define Field Selection for Detail View
    Here you can assign lot of columns to your profile
    which is easily customisable

  • How do I add a column to the Result for BT111S_OPPT

    Hi,
    I have a requirement to include a header level partner in the Results view of BT111S_OPPT.  It is already possible to search by this partner function but the partner column is not available on the view 'BT111S_OPPT/Result'.  My research has pointed me toward using the "ITERATOR" but a related blog was not available and I must admit that I am rather confused as to how to use the "ITERATOR".  I am assuming that I can use it to GET->CURRENT but then I don't know what to do after that.
    Any help is appreciated as we are under time pressure.  Thanks.
    Cheers,
    Paul

    Hi,
    iterators are normally used to convert data in lists which are already evaluated.
    In your case you better add a new column to the result list node and implement the getter with your own
    code. This would look quite similar like (just an example)
    METHOD get_po_number_ship.
      DATA:
            lv_po_number_ship TYPE crmt_po_number_ship,
            lr_current TYPE REF TO if_bol_bo_property_access,
            lr_entity  TYPE REF TO cl_crm_bol_entity.
      IF iterator IS BOUND.
        lr_current = iterator->get_current( ).
      ELSE.
        lr_current = collection_wrapper->get_current( ).
      ENDIF.
      TRY.
          lr_entity ?= lr_current.
          lr_entity ?= lr_entity->get_related_entity( iv_relation_name = 'BTItemSalesSet' ).
          IF lr_entity IS BOUND.
            lr_entity->get_property_as_value( EXPORTING iv_attr_name = 'PO_NUMBER_SHIP'
                                              IMPORTING ev_result    = lv_po_number_ship ).
          ENDIF.
        CATCH cx_sy_ref_is_initial.
          RETURN.
      ENDTRY.
      value = lv_po_number_ship.
    ENDMETHOD.
    Regards,
    Wolfhard

  • Windows Desktop Search 4.0 How do I Format the Date Column in the Results?

    Is there a way to modify the date column in the Results pane of Windows Desktop Search 4.0?
    It's running on a Windows 2003 Enterprise server.
    I have users that need to modify files that arrived today and yesterday after 5:00 PM.  The date column only displays the time on files with today's date.  Is there some registry setting I can tweak to get this column to always show Date and Time?
    Cordially,
    RN

    Hi,
    For the Windows Desktop Search, i think you may ask in:
    http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?forum=windowsdesktopsearchhelp
    Regards.
    Vivian Wang

  • 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

  • Passing a query-limit-value to a Computed-Column on the Results Page

    Hello All,
    Is it possible to use a user-selected variable-limit (filter), and pass it to an IF statement in a Computed-Column in a Results Screen.
    Example:
    I have a Computed Column in a Results screen which uses the following logic:
    if ( Accounting_Period == "2" && Ledger == "ACTUALS" ) {Year_to_Date_Actuals} else (0)
    Instead of [Accounting_Period == "2"], I would like to set Accounting_Period == <variable_query_limit>
    How would one do this?
    Thanks!
    smg

    if not using a dashboard you may want to look at the OnPostProcess event and put script there to collect the selected value of the limit and modify the computed column of the results section.
    strongly recommend you review documentation

  • Queries - Adding New Fields in the Result Tab

    Hi,
         Can anyone explain me on adding the result columns in the resultField tab while creating a query, I don't understand the actual link between the bundle, resourceid and values that we give as a search criteria while looking up the result columns. I tried to replicate an existing query and it worked fine. But I don understand the actual working. Please help me acquire this understanding.
         Also What happens when we say CONTEXTID=CONTEXT(upp.acl). As theory says, it retrives the records relevent to currently logged in user but how.
         I am a beginner. Please help me on these.

    Sharmele,
    I would say it is partially correct.
    In <%CONTEXT(upp.acl)%>, upp.acl is the class ID for a given class.
    But the role of CONTEXT attribute is far more important. In a nutshell, we can say that by using the CONTEXT attribute, you ensure that the data users see in a report/query is only the data that they have access to. Here, by access, just the 'write' access in not implied. It also means 'View' access.
    And to answer your question : Yes, in order to find the Class ID of a class, you must browse through the Class Reference. Additionally, in the page that opens up on clicking RG on a business document, the value in the Name section is same as the Class ID of that class.
    Thanks
    Devesh

  • How to display additional fields in the results a 'search user'?

    This may be a newb question but how can I display additional user attributes in the results of a user search in the admin console?
    i.e. more than just the standard fields of: User ID, First Name, Last Name, Status, Enable, Disable, Unlock and Delete.
    I would like to include some UDFs that I have defined for the create user form e.g. personnel number.
    Thanks,
    Bernie

    Thats not gonna work for sure. Thats to include additional attributes in the search input parameters drop-down. There is another procedure to do that, but not very sure if it works or not because once I was decompiling the code and found that it doesn't have an implementation. You can anyway try it out, the worst would be that you would not be able to see the column headings, but try atleast:
    And thats through the use of properties file. Open up ** and search for the following section-
    *#global.request.users.selectedListDisplayFields=*
    *#global.request.users.selectedListDisplayFields.lables=*
    Remove the comments and update it to below-
    global.request.users.selectedListDisplayFields=USR_UDF_EMPID
    global.request.users.selectedListDisplayFields.lables=global.xmlmetadata.users.USR_UDF_EMPID
    where USR_UDF_EMPID is the UDF and global.xmlmetadata.users.USR_UDF_EMPID is its associated translation.
    Thanks
    Sunny

  • Hide "Your Reference" column in the results displayed at genericsearch.jsp

    Hi Experts,
    I am new to ISA 5.0 & have a requirement which I need to develop:
    Select u201COrder existing Quotation" on welcome.jsp. Then in the result table shown. I need to hide the column u201CYour Reference.u201D
    My problem is that I am not able to understand how this table is shown & where is the code for displaying the resultdata. On the /appbase/genericsearch.jsp I can not find any html code which is used to display the u201CYour Reference.u201D column & values for each row.
    Please help.

    In ISA, all the strings are externalized. "Your reference" too is externalized and comes from the resource bundle. To know the parameter name, use the URL parameter - translate.show.key.concat=99 to see the key name of the parametrized string of the table header.
    http://<host>:<port>/b2b/init.do?<url-parameter-key=value>&<url-parameter-key=value>
    The language keys are normally located in \WEB-INF\classes folder in language-dependent resource files.

  • Adding a column in the Universe level without losing the Report Lay out

    Hi all,
    I have one universe with three universes built on it. Now, I want to add a column to one of the tables in the universe. For that, I selected the table and gave 'Refresh the structure'. The column got added in the workspace of the universe. When I drag and drop the table to the class & objects panel, it got added to the class/table in the panel. I saved and exported the universe.
    When I do like above, and open the report in the BO XI R3.1 webi front end, the report throws the following error:
    'Universe contains unresolved objects' and the report lay out is lost. All the three reports built on this universe is throwing the same error.
    Please let me know if there is any other way to retain the report lay out and add the column in the universe level.
    Thanks in advance
    - Regards,
      Arun

    Welcome to the sometimes frustrating world of working with dates against SAP BW via BusinessObjects!
    Your best bet here is to have a financial calendar table in a database and build a new query against that. Return Week Number as a detail of date and then merge the date dimensions.

  • How to show additional column in the Query searchby field selection window?

    Hi Experts,
    I have a simple query as below:
    select * from ocrd where cardcode between '[%0]' and '[%1]'
    Now, it is evident that the searchby field is the cardcode, so when I click on the browse button, all cardcodes will be displayed for me to choose on a separate selection window. Now, on this separate selection window, can I also show an additional column "customer name"?? This is because I cannot really identify every customer code, and need to depend on customer name instead.
    Thanks!
    Warmest Regards,
    Chinho
    note: please dont ask me to use the below query instead, that is not what I want to achieve.
    select * from ocrd where cardname between '[%0]' and '[%1]'

    Hi!
    It's not possible i belive. You can use Filter Option instead on Selection Parameter.

  • Adding additional Columns in Work Book

    Hi Experts,
    I have requirement to additional columns in work book. I have Trial balance amount .I want to create 2 more columns based on the Trial balance column.if trial balance amount is +ve value then it should go to Gross amount column .If trial balance is -ve amount then it should go to depreciation Amount  Column.
    How can I add new columns to the work book.please suggest me with formula.
    Thanks,
    Suryam.

    Hi Suryam,
    From what i get of ur requirement, I expect there is a column which shows Trial balance. And you are using a workbook, hence the format would be a static format and no drill downs etc. would be done in the report.
    You can create a column and use an Excel formula to achieve the same.
    Gross Amount Column:
    IF Column Cell (of trial balance) >= 0 then value = the Column Cell (of trial balance)
    Depreciation Amount Column:
    IF Column Cell (of trial balance) < 0 then value = the Column Cell (of trial balance)
    Hope this helps!
    Regards,
    Kunal Gandhi

Maybe you are looking for