Creating a New Report Category for PNP

Hi,
Could anyone please help me in knowing the different steps involved while creating a custom and new report category for PNP LDB?
Thanks,
Sandeep.

Hi create a program or use an existing program, which has logical database pnp.
go to se38-> prog name->change-> goto->attributes-> HR report category->create report category->new entries.
check and uncheck what all fields you require for your report
now save the settings.
This will serve your purpose. reward points will be appriciated.
Regards,
Quavi

Similar Messages

  • Creating new report category in Abap HR

    When I try and create a new custom report category, I get a message saying "Choose the key from the allowed namespace". I did use a Z report category (we do have Z report categories that have been created earlier by somebody else). It would be great if somebody could list the steps to create a new report category. By the way, I would just want to keep just the personnel number (PNPPERNR) in the selection option.
    I did try using SM30 to create a new entry but got the same message as above.
    Thanks.

    >
    Lakshmi Srinivasan wrote:
    By the way, I would just want to keep just the personnel number (PNPPERNR) in the selection option.
    > I did try using SM30 to create a new entry but got the same message as above. Thanks.
    You can use the Report category HRDKPRNR to meet your reqt.
    ~Suresh

  • New relationship category for business partner

    I want to create a new relationship category for the business partner. Could anybody guide on this, how to create?
    --hari

    Hi Karunakar,
    I went to transaction BUMR and created the new relationship category. I can see this in the SPRO -> cross application components -> SAP business partner -> BP Relationships -> Properties of relationship categories.
    Go to BUMR -> Relationship Control -> Relationship Categories (BUBA)
    I have copied the existing contact person relationship as my new relationship category
    But it is not visible when I went to relationships tab in business partner.
    Any ideas?
    Thanks
    --hari

  • How to create report category for PNPCE ldb in ECC 6.0

    Hi Experts,
    How to create report category for the LDB pnpce in ECC6.0
    Thanks in Advance,
    Regards,
    IFF

    Self-Answered.

  • How can I create a new ring tone for my iPhone 4?

    How can I create a new ring tone for my iPhone 4? I followed the Garage Band process and ended up with the ring tone I want as a AAC audio file. It got stored in my iTunes a a song rather than a ring tone. How do I make it a ring tone vs. a song? I tried dragging it t the Ring Tone category at the bottom of the ITunes list, but it won't alloow me to move it?

    There's also an easy to use Applescript over at Doug's Applescripts for iTunes. It automates the whole thing. All you do is set the start and stop time on a file in iTuens and run the script. It will do everything else.
    Make Ringable v1.1
    http://dougscripts.com/475

  • Creating a new report in 11.5.9

    I am trying to create a new report for Oracle Sales Online. I don't want to just do a simple JSP, I want to use some of the existing functionality that the existing pages are using.
    Take the Organization Summary page for example. Its the page called asfOrgznSumryMain.jsp and its many included JSPs and java classes in the oracle.apps.asf.customer.organization package that it uses.
    I have created java classes that mimick the classes used by that page, such as my own EO (Entity Object), VO (View Object), and TD (table rows) objects. I've made them select from tables that I want to show as best I can.
    But all the calls in the JSPs using function values that resolve to JSP page filename values are just confusing. I am trying to create an advanced search page for my new summary where the user can save searches and pick columns like they can on other pages. How can this be done? Is there documentation anywhere? How do I create the functions needed to be able to have an advanced search page, save user queries, create a default query for the page for the first time a user views it, etc etc?
    Someone please help. I need to do this in 11.5.9...we will be moving to .10 someday, but until then, I need to create this new report that uses Oracle's application framework as much as possible.

    Ok, I was able to figure out the functions that were confusing me. For my own record and for those that do not know, I will list how to create the objects necessary to add a new report to a menu.
    1-Write JSP (should be written just how Oracle writes theirs)
    2-Creat function for the new JSP page as System Administrator responsibility
    3-Use Sys Admin to add the function to a menu somewhere
    4-Using AK Developer responsibility, create an attribute with the label of the attribute being the name of your function you created. Oracle's convention is the name of the attribute has FS in it.
    5-Using AK Developer, lookup the ASF_FUNC_SEC_REG region
    6-Drill down into that regions attributes
    7-Add a your newly created attribute to this region
    You would do all these steps for your advanced search page as well, so that in your main jsp, you can call asfPage.setAdvancedSearchPage() with the attribute name of your advanced page.
    What I Still do not know is:
    (1) My main page keeps coming up saying that there is no default query defined for it. How do you create a default query for a report?
    (2) How to get the personalization to work.
    Can anyone help?
    Thanks!

  • How to create a new report using MS Word add-ins?

    Hi, I am a newbie. I am using BI Publisher 10.1.3.4 and l want to create a simple report using BI Publisher from MS Word add-ins. I don't have a default template. What are the steps to create a new report from scratch. I want to create a simple report for one table contains 4 columns & 2 rows data, and then save the report under my folder.
    I am in an urgent need to learn this, any suggestions are highly appreciated.
    Thanks all.

    Thx Everyone, I figured that out. It's simple and clear to me.

  • Creating a new reports document

    Hi everyone,
    Iu2019m having an issue using In-Proc RAS when creating a new report document in .NET. The following code (C#) will fail (Saying that it requires a Loaded RPT file to do anything against that member)u2026
    CrystalDecisions.CrystalReports.Engine.ReportDocument myTest = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    myTest.ReportClientDocument.New()
    How are you suppose to create a new blank document using the CrystalReports engine? The only way I can do anything with the above object is to actually load a .RPT file. Itu2019s different then when using the RAS SDK which goes like:
    ReportClientDocument objClientDoc = new ReportClientDocument(); //this is a ReportAppServer object
    u2026Set The Report Server Nameu2026
    objClientDoc.New();
    Thanks for the help!
    Peter

    Hi Peter,
    If you are using ReportDocument object then you need to load the object with a report name.
    //define the object
    ReportDocument rdocument = new ReportDocument();
    //load the report
    rDocument.Load(path of the report);
    //View the report
    CrystalReportViewer1.ReportSource=rdoc;
    However if you use the RAS then you need to use the ReportClient document object for it.
    //define the object
    CrystalDecisions.CrystalReports.Engine.ReportDocument rdoc1 = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    // assign it to the reportclient object
    ISCDReportClientDocument rClient1 = rdoc1.ReportClientDocument;
    //Load the report
    rdoc1.Load(path of the report);
    //View the report.
    crystalReportViewer1.ReportSource = rdoc1;
    So I do not see any reason why we would need the New() method.
    Does that help?
    AG.

  • How to create a new rate category

    hi,
    Could anyone please guide me how can i create a new rate category.
    Thanks and Regards
    Mahavir

    hi,
    Thanks for the reply....but what i actually wanted to know the steps actually followed while creating a rate category.
    for example :
    Rate category : creation of Billing Class, defining Billing Schema and Rate determination etc.
    Please guide me about the sequence of activities to be followed.
    And one more question is how can i create an account class.
    Thanks and Regards
    Mahavir

  • Create a new condition type for tax... and assign in the Tax determniation

    Hi,
    I need to add custom condition tax type, i tried creating the condition in OBQ1 and add that condtion in FI pricing OBQ3, now I want to confirm what is basic conept means whenever we create on condtion in OQB1 and add in OBQ3.
    i need to add that in Sales order and need to maunally populate that in the sales order.
    could anybody suggest to create a new condition type for tax.(full process).
    Thanks
    shankar

    Hi,
    Goto the T.Code "V/06".Create one new "Z" condition type.
    Maintain the Condition Class as "D(Taxes)".
    Calculation type as "A(percentage)".
    Cond. Category as "D(Tax)".
    Select the tick mark for "Group Condition" if it is applicable for you.
    In the next step assign this condition type to your pricing procedure by using the T.Code "V/08".
    Also maintain access sequence by using the T.Code "V/07" and assign it to your Condition type.
    Now this condition type will appeared in your sales order after maintain teh condition records.
    Regards,
    Krishna.

  • How to created a new report in content tracker report?

    Hi
    I need to created a new report that show who modified the document's metadata and when, but I have never used Content Tracker and I do not know how.
    Appreciate the help you can give me.
    Thanks.

    Hello,
    The content tracker and ContentTrackerReports components can be installed in UCM server by simple clickable options. Below are the steps to install the Content tacker and Content report.
    Steps:
    1. Open the UCM instance with admin
    2. Click Admin Server under Administration link.
    3. Click Content Tracker and ContentTrackerReports checkbox ( under Document Management)
    4. Now Click the update button at the bottom.
    5. Restart the UCM server instance to see the changes.
    Now you will see an option for Content Tracker Reporting. It has some default reports.
    Let me know how it goes. If you need.... will explain how you can create your custom reports.
    If its helpful then please mark correct or helpful answer.
    Thanks,
    MAK

  • Creating a new report with VS2010 freezes

    Hello,
    I repost  my first issue 'cos Don Asked me to attach to a thread but he closed it and there's no answer:
    I've just downloaded the release of CR for VS2010 and installed it correctly.
    But when i try to create a new report in a new solution (i use emty project ) and then try to add with the database expert databases it freeze the vs2010 with no timeout and no error message.
    I saw in te forums that it's a recuring question so i tried to build a Virtual machine with win7 x64 and VS2010 and install CR on this fresh installation and it works !
    I'm wondering if there is any relation with the way my developpement machine was installed:
    Installed VS2010
    Installed VS2008
    Installed CR for VS 2008 sp1
    then Installed CR for VS 2010
    Also when i try to make a new project with the Crystal Reports Project Template there's a reference missing in the project. Even if i correct the mis-reference the project hangs on the database expert ...
    Could you investigate ? i don't want to reinstall my dev computer and i need the CR2008 just time to upgrade the Projects to VS 2010...
    And i would like to attach to this Thread the extract of Process Monitor but i don't know how
    Kind regards

    An update on SxS, I jumped the gun a little warning about the posts various people are having... We are still looking at all of them and the build team are doing more testing with the info from forums. We are not convinced it is a side by side problem but more of a dependency and possibly a VS project update methodology but at this time we don't know for sure.... We and QA are building various platforms and are trying to duplicate all of the reported issues. So far they have not been able to but continuing to test...
    The only known potential issue so far is the GUID ID for crqe.dll but there are ways around it, order of install and unregistering the dll and then regsitering it back in. Various options and ways around it and they are based on the same code so it should not be a problem.
    Please be patience while we research the various upgrade issues.
    Stay tuned for updates....
    Thanks again
    Don

  • Creating a New Report Project Crashes

    Hello,
    I've just downloaded the release of CR for VS2010 and installed it correctly.
    But when i try to create a new report in a new solution (i use emty project ) and then try to add with the database expert databases it freeze the vs2010 with no timeout and no error message.
    I saw in te forums that it's a recuring question so i tried to build a Virtual machine with win7 x64 and VS2010 and install CR on this fresh installation and it works !
    I'm wondering if there is any relation with the way my developpement machine was installed:
    Installed VS2010
    Installed VS2008
    Installed CR for VS 2008 sp1
    then Installed CR for VS 2010
    Also when i try to make a new project with the Crystal Reports Project Template there's a reference missing in the project. Even if i correct the mis-reference the project hangs on the database expert ...
    Could you investigate ? i don't want to reinstall my dev computer and i need the CR2008 just time to upgrade the Projects to VS 2010...
    Kind regards

    Hello,
    We are still trying to figure out what is causing this. It only happens on a few users PC's.
    Can you download debugdiag from Microsoft, if you don't have it already, and run it to capture on devenv.exe. Analyze it and tell me what dll the crash is happening in?
    Thank you
    Don

  • Query Panel won't open when trying to create a new report

    When I am attempting to create a new report in Desktop Intelligence 11.5.0.0, and choose my universe, my query panel does not open - it appears to be "hidden" somewhere in the background because I cannot click on anything else in DeskI until I hit .  I have tried rebooting and closing and restarting Desktop Intelligence but it doesn't work..Even when I try and view it from an existing report it doesn't work either.

    Hi Alicia,
    Following solution might help you to resolve the issue.
    To resolve the behavior
    1.Click Start > Run. The Run dialog box appears.
    2.Type "regedit" in the Open field. Click OK. The Registry Editor dialog box appears.
    3.Navigate to HKEY_CURRENT_USER\Software\Business Objects\Suite 6.0\default\BusinessObjects\<username>User Prefs\Query Panel.
    4.Right-click Query Panel > click Delete.
    The folder will be recreated the next time the application is opened.
    5.Close the Registry Editor.
    6.Restart the computer.
    The Query Panel will now be available for creating new queries and editing existing queries
    Regards,
    Sarbhjeet Kaur

  • New Vauation Category for Spit Valuation

    Dear All
    We want to create new Vauation Category for Split Vauation.
    However when I try to create new Vauation Category say Z by going to "Gobal Vauation Categories" and click create the new Vauation Category is not created.
    I see a message that "No Changes are made"
    Am I missing something here?
    Regards

    Dear All
    The problem got resolved.

Maybe you are looking for

  • EA6500 First Day Impressions & Advise.

    My first impressions of the EA6500 are a little rocky, anyone who doesn't know router settings like I do or knows their way around web-based browsers probably won't be able to even get online, yes really.  This router has probably in my opinion been

  • Apple TV with iPad - for Business

    I am trying to replace as much of my Win7 laptop as possible with my new iPad. My only struggle so far is with presentations. I have my projector (with an HDMI port) that I am thinking I could connect to an Apple TV; however, I am frequently presenti

  • Regarding idoc trigering

    HI Experts, I am new iin idoc. Could anyone please help to trigger a idoc on save click of we21 . Please tell me how i can search relatig user exist and BAPI for that  we21 and how i can trigger a idoc. Yours cooperation will be appreciated. Rgds, Pr

  • How to preview WWI Label templates?

    Dear Experts, Normally for MSDS templates I know that there is preview option in CG42 transaction by which we can verify the changes that we are making whether they are correct or not however for WWI label templates, I am unable to preview using that

  • Table where system create attachment in material master

    Dear guru , In MM02 I can create attachment and import external files. In which table are stored the attachments list for every material code ? Thanks in advance.