Workaround for NEW ID feature in SAP NW

Experts,
Can someone give some thoughts on how to achieve the functionality previously (in older version) provided by the NEW ID function.
All thoughts would be duly appreciated.
Thanks,
Nandita

ChicagoLarry -
Not sure if you still need this answered, but maybe someone else is wondering. I don't need the date feature either so I change the font color for the date to match the page background on the main blog page, the blog entry and archive pages. Then only the heading text from the blog entry shows. Sometimes this might add to much empty space on the main blog and archive pages so I decrease the font size.
Hope this helps!

Similar Messages

  • How to maintain cluisterview for new business roles in SAP CRM2007

    How to maintain cluisterview for new business roles in SAP CRM2007.
    Table - CRMV_UI_NB
    Regards,
    Biplab

    I also look forward to a 'solved' answer to your question.
    In the meantime, I'm curious to know if there are any organizations today running SAP B1 HANA for their production system.   Would you know of any?

  • Is there any BAPI for new appraisal module in SAP 4.7 ?

    Hi,
    In our company, we are using our own web-ESS Appraisal (employee self service on intranet), developed using Java. So we are using available standard BAPIs to exchange data between web-ESS and SAP.
    But I notice for the new APPRAISAL module in SAP 4.7, we can’t use the standard old BAPIs anymore. SAP gives hundreds of new function modules related with the appraisal module, but none of them is remote-enabled module or BAPI. So how are we supposed to exchange data using our web-ESS? I don’t want to copy all the standard functions just to make it remote-enabled so I can use as a customized BAPI! Any idea?
    Regards,
    Irman

    hI,
            There is no function module that can get you the Appraisal Result from OSA in one go.. You have to create a custom function that is a combination of delivered modules.. here os one that I created.. you pass the pernr & get back the rating..this is only for Performance Appraisals.. Some of the code I pasted may not be relevant..you can use my approach to meet your reqt..
      data: lt_appraisee       type standard table of hrpe_appraisees
                                    with non-unique default key,
            lt_appraisal       type standard table of hrpe_appraisals
                                    with non-unique default key,
            lt_pt1045_ext      type standard table of pt1045_ext
                                    with non-unique default key.
      data: ls_key_objects     type hrwpc_s_keyobjec,
            ls_column_content  type hrwpc_s_keycolcont,
            ls_period          type hrwpc_s_ep_period,
            ls_validity_period type hrsel_period,
            ls_appraisee       type hrpe_appraisees,
            ls_appraisal       type hrpe_appraisals,
            ls_pt1045_ext      type pt1045_ext.
      data: l_subrc            type sy-subrc,
            l_otype            type otype,
            l_content          type hrwpc_s_keycolcont-content.
      data: w_content          type hrwpc_s_keycolcont-content.
      data: t_templates type hap_t_hrobject,
            rec_template type hrobject,
            t_appraisees type hap_t_hrsobid,
            rec_appraisee type hrsobid,
            rec_sel_with_or_without type hap_s_sel_with_or_without,
            rec_sel_status type hap_s_sel_status,
            rec_sel_dates type  hap_s_sel_dates,
            t_appraisal_id type  hap_t_appraisal_id,
            rec_appraisal_id type hap_s_appraisal_id,
            rec_bal_s_msg type bal_s_msg.
      data: w_apprsl_id type hap_appraisal_id,
            w_appee_id type hap_appraisee_id,
            w_rating type hap_value_num.
      constants:
               c_ap_id(8) value '50001379',
               c_fapp(4)  value 'FAPP',
               c_01 type hap_plan_version value '01',          
               c_p value 'P',
               c_va(2) value 'VA',
               c_pa type hap_add_on_application value 'PA'.
      constants: c_0101(4) value '0101',                       
                 c_1231(4) value '1231'.                       
    initialize export parameters
      clear: coltype,
             column_content[],
             column_content,
             sort_column_content[],
             sort_column_content.
    set coltype
      coltype = gc_col_sortable.
    get object type for persons
      perform re77s0(mstt77s0) using 'OTYPE'
                                     'PERNR'
                                     l_otype
                                     l_subrc.
      if l_subrc <> 0.
        l_otype = 'P '.
      endif.
    get selection period
      call function 'HRWPC_EP_CALC_PERIOD'
        exporting
          keydate      = key_date
          years_past   = '01'
          years_future = '00'
        importing
          period       = ls_period.
      move-corresponding ls_period to ls_validity_period.
      concatenate ls_validity_period-begda+0(4) c_0101 into
                             ls_validity_period-begda.
      concatenate ls_validity_period-begda+0(4) c_1231 into
                             ls_validity_period-endda.
    fill export table
      loop at key_objects into ls_key_objects where otype = l_otype.
        clear l_content.
        clear: rec_template,rec_appraisee,rec_sel_status,rec_sel_with_or_without,
               t_templates[],t_appraisees[],t_appraisal_id[],rec_appraisal_id.
        rec_template-plvar = c_01.
        rec_template-otype = c_va.
        rec_template-objid = c_ap_id.
        append rec_template to t_templates.
        clear rec_template.
        rec_appraisee-plvar = c_01.
        rec_appraisee-otype = c_p.
        rec_appraisee-sobid = ls_key_objects-objid.
        append rec_appraisee to t_appraisees.
        clear rec_appraisee.
        rec_sel_status-ap_status_1 = true.
        rec_sel_status-ap_status_2 = true.
        rec_sel_status-ap_status_3 = true.
        rec_sel_status-ap_status_4 = true.
        rec_sel_status-ap_status_5 = true.
        rec_sel_with_or_without-sel_display_existing = true.
        rec_sel_with_or_without-sel_display_without = true.
        rec_sel_dates-validity_from_date = ls_validity_period-begda.
        rec_sel_dates-validity_to_date = ls_validity_period-endda.
        call function 'HRHAP_DOCUMENT_GET_LIST'
          exporting
            add_on_application    = c_pa
            plan_version          = c_01
            t_templates           = t_templates
            t_appraisees          = t_appraisees
            s_sel_dates           = rec_sel_dates
            s_sel_status          = rec_sel_status
            s_sel_with_or_without = rec_sel_with_or_without
          importing
            t_appraisal_id        = t_appraisal_id
            s_return              = rec_bal_s_msg.
        if rec_bal_s_msg is initial.
          read table t_appraisal_id into rec_appraisal_id index 1.
          select value_num into w_rating
                              up to 1 rows
                              from hrhap_final
                              where plan_version = c_01
                                and appraisal_id = rec_appraisal_id-appraisal_id
                                and column_id = c_fapp.
          endselect.
          if sy-subrc eq 0.
            write w_rating to w_content decimals 0.
          else.
            clear w_rating.
          endif.
        endif.
        l_content  = w_content.                                 "SD1K909622
      fill column content structure
        clear ls_column_content.
        move-corresponding ls_key_objects to ls_column_content.
        ls_column_content-content = l_content.
        append ls_column_content to column_content.
      endloop.
    endfunction.
    Regards,

  • Release date for new TREX features (esp. guided nav, thesauri/topic maps

    In a SAP presentation on TREX, the outlook for future improvements listed the following items :
    - combine QBT and EBT
    - Thesauri and XML Topic Maps ***
    - Taxonomy Import
    - Guided Navigation ***
    - Additional languages
    - Additional Formats
    I am especially interested in the items annotated with ***
    Is there any information available when these feature will become available.
    Will they be part of one of the next Netweaver 2004 stack levels or are these features planned only for the next Netweaver release (2005 or later)
    In addition there has been the announcement of TREX Enterprise Search which should allow searching across both structured and unstructured data sources. Any news on that ?
    Thanks in advance for your information
    Message was edited by: Theo Paesen
    Message was edited by: Theo Paesen

    Hi Theo,
    in general, the features you list are TREX features and have hopefully been presented as such. Features of TREX are not necessarily fetaures of KM. Many SAP solutions use TREX in quite a few different ways. Some for document search (such as KM, PLM DMS and more) some for accelerated table data scans (such as BI, CRM and more).
    Thus, you do not find all TREX features being used at the same time in the same solutiuon. And, to anticipate that question, sorry, the direct TREX APIs are still not public.
    <b>Point by point:</b>
    <b>- combine QBT and EBT</b>
    Available in TREX engine
    Planned for KM (no date)
    <b>- Thesauri and XML Topic Maps</b>
    XTM available through TREX Python Extensions
    No plan for KM
    More info under:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how to enable semantic search or search for synonyms in trex.pdf
    <b>- Taxonomy Import</b>
    Preliminary workaround available in KM
    Full-featured with KM Transport in SPS15
    <b>- Guided Navigation</b>
    Available in TREX engine
    (very simple example at http://help.sap.com "narrow by info class")
    Different plans in different solutions, KM not before 2006
    <b>- Additional languages</b>
    Happening constantly, coming up:
    Slovakian, Slovenian, Catalan, Croatian
    (That is for TREX engine linguistics. Not necessarily all UIs translated.)
    <b>- Additional Formats</b>
    Happening constantly, coming up:
    HWP2 Hangul 2002 (text only)
    ICH new support for Ichitaro 13 and 2004
    JBG2 new support for JBIG2 files embedded in PDF files
    MIME Mime encoded mail messages
    MPP new support for Project 2003 (text only)
    PDF new support for JBIG2 files,
    PP97 new support for PowerPoint 2004 and v.X for Mac
    QP9 new support for Quattro Pro version 12
    SHW3 new support for Presentations version 12
    SO6 new support for paragraph- and character-level attributes
    VCRD new support for vCalendar
    VISO new support for Visio 2003
    W97 new support for Word 2004 and v.X for Mac
    WP6 new support for Word Perfect version 12
    XL5 new support for Excel 2004 and v.X for Mac
    <b>Enterprise Search...</b>
    ...is not a TREX feature, technically speaking.
    ...is a meta search framework.
    ...will connect to any solution providing a search functionality.
    ...will connect to as well TREX-using is completely non-SAP solutions.
    ...will use e.g. KM, BI and MDM as some of its default sources.
    ...will ship in 2006.
    Hope that clarifies,
    Karsten

  • Is there a workaround for this 3D features greyed out

    NVIDIA GeForce 9400M:
      Chipset Model:          NVIDIA GeForce 9400M
      Type:          GPU
      Bus:          PCI
      VRAM (Total):          256 MB
      Vendor:          NVIDIA (0x10de)
      Device ID:          0x0863
      Revision ID:          0x00b1
      ROM Revision:          3448
      gMux Version:          1.8.8
      Displays:
    Color LCD:
      Display Type:          LCD
      Resolution:          1440 x 900
      Pixel Depth:          32-Bit Color (ARGB8888)
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Built-In:          Yes
    3D features require a minimum of 512MB of vRAM. Photoshop has detected less than that on your system.
    Updating the driver of your graphics card may resolve the issue.
    For more information, visit:
    http://www.adobe.com/go/photoshop_gpu_cc_en

    No dice. That card/ chipset is hopelessly out of date.
    Mylenium

  • Any workarounds for not supported features of XML Schema

    Hi,
    We are trying to generate JAVA source code by providing a xsd.
    This XML Schema file has all sorts of Identity constraints & attribute wildcards.
    Due to the above reasons I am unable to generate the code.
    Are there any workarounds? If so Please share those.
    Thanks & Regards,
    Priti Ranka

    I am sorry I did not mention the tech. being used.
    I am using JAXB for the above task.

  • Why is adobe demanding revshare for new flash features?

    This to me is a horrifically low blow from adobe.
    In a market where everyone gets a cut, adobe is claiming that charging will make flash better, but from where I am standing it makes it worse. For example if I am using flash to develop a Facebook game, Facebook already takes a 30 percent cut, then on top of it having to pay 9 percent to adobe? that's a huge deal and an immediate turn off.
    Now they say that air will be unaffected, but I can only assume that if air on mobile becomes at all successful, what will stop them from doing the same?
    I have been an enthusiastic flash developer for years and have been fully behind air for mobile development but this move may be a death blow as far as I am concerned. Adobe, if you care about your feature, please don't do this .  .  . You will drive people away from your product instead of bringing them closer.

    The problem I have with this is the slippery downward slope. The implications here are that anyone who uses flash for profit, may be looking at other revenue requirements soon. Obviously just installing the flash player doesn't meet that requirement, but they worded it very carefully. If I were to make a Facebook game in the browser, I would read this as absolutely I would have to pay a cut, if I wanted to use advanced features.
    Now air, they are letting slip by, for now. But they were very specific to point to a "for now" approach. I don't think I am overreacting. I have been a flash developer for years, working at a company that makes revenue through flash, and I am currently exploring different mobile technologies. I have had amazing success with air, but if elements of it demand rev share, I will walk away (I have intentionally walked away from other cross platforms for their requirements of rev share).  Granted, the current roadmap would not put me in a place to cross the line into rev share requirements, but that's only currently.
    When a business picks a technology to use, that is a fairly big investment. It means hiring people with those skills, or training them. Especially dealing with small businesses or startups, a shift into revshare concepts coming from the technology base is a very serious issue that can make or break small companies.
    My point here is not to run around in adobes house yelling "fire!" but when there is no clear winner on the browser and mobile technology front, I would ask the company to not start going down a path that can make their technology no longer an economically viable one.

  • Thank you Safari Team for new "Reader" feature

    This is a great new feature. I wish I could set Safari up to switch to "Reader" automatically where ever possible. Thank you.

    HI,
    Good article here: http://www.webmonkey.com/2010/06/safari-5s-reader-simplifies-the-web/
    Carolyn

  • Suggestion for new Mail feature

    It would be great to be able to file emails to folders by using a button on the toolbar, or a keyboard shortcut, that would open a text box in which you could type the name of the folder you want to file the email.
    (Also, it's too hard to find the link on the Apple support site to send product feedback.)

    Right click, or ctrl click on any mail. "Move...".

  • New features in SAP Solution Manager 4.0

    Hello Experts,
    Can anybody give me a good list of new additional features in SAP Solution Manager 4.0 with description and wt r the business benefits of implementing those features.Plz dont give marketplace pdf links as i hv checked it.any good Word which is self prepared wll be helpful. Useful answers shall be rewarded points. Requested to revert at earliest as i hv to present tat to my seniors here and is urgent. My Email Id is [email protected] .
    Regards,
    Saumya

    Hi,
    Solution manager is a SAP component.It's a free software provided by SAP.After 640 release on wards if you want to install any software solman key is mandatery field.
    Using solution manager we need to do the fallowing things.
    1.solution manager CEN and Alerting configuration guide for dummies.
    2.system monitoring configration guide for dummies.
    3.service desk configuration guide for dummies.
    4.ccms monitoring configuration guide for dummies.
    From april onwards we need to down load the support packs through solution manager.In order to do this one we need to configure maintanace optimizer.
    i hope it will help you.
    kiran kumar.v

  • Extensions like Ghostery, WOT or AdBlock stop working after two or three times. Restarting the webpage in a new tab the extensions will work again for several times and then stop again. Has anybody an explanation or a workaround for this bug in Safari 5?

    Extensions like Ghostery, WOT or AdBlock stop working after two or three times. Restarting the webpage in a new tab the extensions will work again for several times and then stop again. Has anybody an explanation or a workaround for this bug in Safari 5?

    Remove the extensions, redownload Safari, reload the extensions.
    http://www.apple.com/safari/download/
    And if you really want a better experience, use Firefox, tons more choices and possibilities there.
    Firefox's "NoScript" will block the Trojan going around on websites. Best web security you can get.
    https://addons.mozilla.org/en-US/firefox/addon/noscript/
    Ghostery, Ad Block Plus and thousands of add-ons more have originated on Firefox.

  • 10.2 crashes when I try to convert old libraries for use in the new software. Is there a workaround for this? Or will i have to continue using the previous version to complete older projects?

    Final Cut Pro X 10.2 crashes when I try to convert old libraries for use in the new software. Is there a workaround for this? Or will I have to continue using the previous version to complete older projects? the only foreseeable solution is to begin any new projects on 10.2 or importing footage on 10.2 and starting form scratch--which is something i definitely don't want to do or have time to do. ANY advice, thoughts, or opinions would be greatly appreciated! Thank you!
    Running 10.10.3 // MacBook Pro (Retina, 15-inch, Early 2013) // 2.4 GHz Intel Core i7 // 8 GB 1600 MHz DDR3

    Exactly the same problem with me.
    Some other threads advice to remove fonts, clean the caches, remove add ins but nothing works consistenty, for some it looks like it works, for me it failed.
    What I did not try yet, was to move the Render files out of the malicious library to trash.

  • Workaround for non-SAP mitigating control reminders

    Dear all,
    Our business users would like to document mitigating controls in RAR 5.3 regardless of whether they are connected with an SAP report. They would also like to receive email reminders for those controls.
    Unfortunately, the frequency of the control can only be defined per connected SAP report and reminders will only be sent for controls if the SAP report has not been executed.
    Have you been exposed with a similar requirement? It seems like a natural thing to ask from a business perspective. RAR 5.3, however, is not designed in that way.
    Have you come up with any feasible workarounds for this?
    My current approach would be to create a dummy Z-report per SAP system (such as Z_MANUAL_MITCTRL) that control monitors have to call once to confirm the execution of their control.
    Cheers and best regards
    Patrick

    Hello,
    Regarding your question, in fact this is dependant on how your UME (User Management Engine) is configured on your WAS (Web Application Server). If the UME is connected to your R/3 back-end then the user need to have a R/3 account to connect to CC, otherwise if your UME is "independant" then you just need to create an account in the UME.
    Regards,
    Jérôme.

  • SAP BI Dataflow for new GL

    Hi Experts. I have seen the following dataflow for the new GL
    0FI_GL_10 --> 0FI_GL_10 --> 0FIGL_C10 (for Totals)
    0FI_GL_14 --> 0FIGL_O14 (for Line item)
    Question1: The DSO 0FIGL_O14 does not feed the cube. Any particular reason for that?
    So If I want line item reporting my best solution will be RRI? Correct!!
    Question2: SAP recommended dataflow for new GL uses virtual cube 0FIGL_V10. Why do we need it or what reporting needs it satisfies?
    Thanks.

    Question1: The DSO 0FIGL_O14 does not feed the cube. Any particular reason for that?
    So If I want line item reporting my best solution will be RRI? Correct!!
    U already have GL totals available at 0FIGL_C10 and then no point in loading line items (O14) again to cube.
    Yes.. Best approach for line item reports is RRI i.e. from 0FIGL_C10 to O14.
    Question2: SAP recommended dataflow for new GL uses virtual cube 0FIGL_V10. Why do we need it or what reporting needs it satisfies?
    SAP delivered function module RS_BCT_FIGL_DATA_GET_VC10 pulls data from 0FIGL_C10 to load 0FIGL_V10... Logic for cumulative balances considering carry forward balances from previous year for Balance sheet & P/L reports, is maintained in that function module.
    (So, make sure this FM got installed while u installed standard content for GL model
    Do the following, to see weather FM got installed.
    Goto change mode of virtual provider (ZFIGL_V10). click information icon (blue 'i')
    click 'Type/ Namespace'.. Then click 'details' button
    If there is no FM, u won't get any data to 0FIGL_V10 and related queries.
    And also 0FIGL_V10 uses Financial Statement Version object (0GLACCEXT), which is not available in 0FIGL_C10.
    For Balance sheet & P/L reports, 0GLACCEXT is key object, so 0FIGL_VC10 is must.
    U should install & load master (attr, hier, text) data for 0GLACCEXT.
    http://help.sap.com/bp_bw370/BBLibrary/documentation/B70_BB_ConfigGuide_EN_DE.doc

  • Complete Customising step to implement SAP PP module for New client.

    hi frnds,
    Can Any body tell me that wht are the intial to final step to be follow(step-by-step) to configure & customise the SAP PP Module for new Client.Suppose industry is Process Industry.
    I'll be graceful to all who help in this regard.
    Thanks
    Parminder

    Hi Parminder,
    Go to Transaction OPPQ- Maintain Plant paramets, OPPR-Maintain MRP groups and copy the setting from Plant 1000 to your new Plant.
    Then create new items again by copying the standard ones.
    Thanks and regards
    Muruegsan

Maybe you are looking for

  • How do I get back a prior version of Ff and get you to stop installing updates?

    I too am losing add-ons even though all of my settings reflect that they should be showing on the site. If I still have the install for Firefox 28 can I uninstall the current version and install version 28? Also do you have a contact email, or is the

  • How can I download Flash Player 10.3.183.11 for my Mac OS 10.5.8

    I tried to get to the archive software on your site to get Flash Player 10.3.183.11 for my Mac OS 10.5.8.  It is not clickbable to download.  Please help. Thank you

  • Files for Classroom in a Book

    I bought Photoshop Elements 10 some time ago and have only now installed it on my notebook.  I bought yesterday the Kindle version of Photoshop Elements 10 Classroom in a Book but as it is an ebook, there is no CD with the practice files included.  W

  • I converted a PDF to Word but can't edit - why?

    Has anyone had a problem editing after they exported a PDF into word? It opens in word but the picture editor comes up when i try to double click on the document. I can't select text, delete or type anything.

  • IntelliJ IDEA - missing scripting variables

    I have set up a CQ5 project in IntelliJ, but there's one thing that's still missing. I'm using the CQ taglib and cq:defineObjects: <%@taglib prefix="cq" uri="http://www.day.com/taglibs/cq/1.0" %> <cq:defineObjects /> All the needed JARs are included