Pattern Selection on 0Project or WBS Element

Hi Collegues,
I'm facing a BEx handling issue. My users for Project System Reporting need a possibility to select on 0Project (or 0Project_ex) by pattern.
Example:
0PROJECT: I.TEST.10012.1000
Variable input: I.TEST*
So that all values are shown starting with I.TEST. Normally that is no problem, but for this Object it seems not to work.
Please help.
Joerg

Hi,
You can do it by using Customet Exit, just see the sample code, you changec the code as per your requirement,.
Re: Using CP in variable user exit
When 'ZGLA'.
   IF I_STEP = 2.
     Clear l_s_range.
     l_s_range-LOW = '*30'.
     l_s_range-OPT = 'CP'.
     l_s_range-SIGN = 'I'.
     Append l_s_range to e_t_range.
     Clear l_s_range.
     l_s_range-LOW = '*31'.
     l_s_range-OPT = 'CP'.
     l_s_range-SIGN = 'I'.
     Append l_s_range to e_t_range.
   ENDIF.
See
Re: Selecting the range of GL accounts in query level
Thanks
Reddy
Edited by: Surendra Reddy on Apr 12, 2010 10:13 AM

Similar Messages

  • ****Selection of WBS element Similar to LDB ( PSJ )****

    Hi,
    I need to select WBS element (PRPS-PSPNR)
    Based on the following fields on the selection screen
    Project PSPID
    WBS element POSID
    Network/order AUFNR
    Activity  ACT01-VORNR
    Materials in network  AFVC-ISTRU .
    Help needed urgently .
    High Points will be given for sure .
    Thanks In Advance

    You can use the table "AFVC"

  • ALV Filter Selection w/ error "WBS element 0000000000000000 does not exist"

    Hello,
    In a few ALV reports, we have WBS Element column showed in ALV list and WBS Element defined as type BSEG-PROJK, which has conversion routine ABPSP.
    When WBS Element is used for ALV list Filter, in Selection screen, error message "WBS element 0000000000000000 does not exist" is pop up as we hit Enter key or click on u201CSelection optionsu201D button with no value entered in Input fields.
    We get same error even after we enter an existing WBS Element in Low selection input field and hit Enter key.
    Itu2019s ok if we enter existing WBS Element value in both Low and High selection input fields.
    We know we have workaround by entering both Low and High input field, and we can fix ALV reports by using character based WBS Element, such as PRPS-POSKI.
    BUT, as users told me, they donu2019t have this problem before and it just happened. We checked the recent Transports and couldnu2019t see anything relevant.
    Could any of you let me know if you have any clue or if thereu2019s any other way to fix it besides changing report by report.
    Thank you.
    SL

    Hello,
    In a few ALV reports, we have WBS Element column showed in ALV list and WBS Element defined as type BSEG-PROJK, which has conversion routine ABPSP.
    When WBS Element is used for ALV list Filter, in Selection screen, error message "WBS element 0000000000000000 does not exist" is pop up as we hit Enter key or click on u201CSelection optionsu201D button with no value entered in Input fields.
    We get same error even after we enter an existing WBS Element in Low selection input field and hit Enter key.
    Itu2019s ok if we enter existing WBS Element value in both Low and High selection input fields.
    We know we have workaround by entering both Low and High input field, and we can fix ALV reports by using character based WBS Element, such as PRPS-POSKI.
    BUT, as users told me, they donu2019t have this problem before and it just happened. We checked the recent Transports and couldnu2019t see anything relevant.
    Could any of you let me know if you have any clue or if thereu2019s any other way to fix it besides changing report by report.
    Thank you.
    SL

  • Problem in Include WBS Element Screen

    Actually i got some steps for CJ01(Create Project).
    It is saying that after going to WBS Element Overview screen and  making all the entries for WBS element and description select the INCLUDE button .
    I tried a lot but i am unable to search that include button.
    Please help me.

    I also tried a lot but i didn't find any solution for this.
    The step also says that a message will appear like(in case i have entered 6 WBS elements and after selecting INCLUDE button)
    '6 WBS elements were included'
    in the create project: project definition screen.
    Can anyone tell me that when this type of message appears while creating WBS .

  • CJSG _ Generate WBS element Group

    Hi
    I have generated a WBS element group using tcode CJSG.
    I was hoping to be able to use this in some of the standard reports like transaction S_ALR_87013543 however WBS element group is not available on the selection screen.
    Can WBS element group be used for selection in the standard cost reports, and if not where is this functionality available?
    Thanks in advance.
    Ian

    Hello Ian,
    I am new to SAP and I am facing a similar issue as you have mentioned in this thread. If you have found a solution for how to use the WBS Element group in the cost report please let me know.
    Thanks in advance.
    Best Regards,
    Ravi.C

  • Description text in WBS element

    In esscatsap.com DC ..
    We are looking to select Description text in WBS element or at least
    show the description instead of WBS element.
    How is that possible ? The best way i am guessing after looking at the
    code is to add one more column (Description). But is this something
    doable or advisible.
    we looked at all the user exits, but nothing is helpful

    Please post this question in WD java forum. If you want to do it, you need to change the DC using NWDI track.
    Regards
    Vishal Kapoor

  • WBS Element  in selection screen

    hi,
    WBS Element in selection screen of the report need to be added from BSEG table of field PROJK.
    requirement is
    for eg- if you take a WBS Element suppose 11020017 and you put in BSEG table give the values as
    BUKRS= 0010
    GJAHR =2008
    PROJK =11020017 it gives a message WBS Element 11020017 does not exist.
    where as this WBS element if you insert in Function module  CONVERSION_EXIT_ABPSP_OUTPUT
    input as 11020017 , you will get output as 1000050-01.
    and again goto BSEG table and give the values as
    BUKRS= 0010
    GJAHR =2008
    PROJK =1000050-01, now u will get the value of  WBS Element as 11020017 .
    in the report the bussiness requires WBS Element in selection screen , the user gives the value of WBS Element in selection screen 11020017,it gives a message WBS Element 11020017 does not exist, the user should give this value1000050-01, but user doesnot know this value,user knows only 11020017 value.
    now if the user gives in selection screen 11020017 it should work i mean it must convert  to 1000050-01.
    how to use function module in selection screen.help with code
    thanks in advance

    Hi,
         Use in following way, declare a parameter P_PROJK as character type, if you declare it as TYPE BSEG-PROJK system will defaultly check in dadabase table.
    PARAMETERS : p_projk(10) TYPE c.
    AT SELECTION-SCREEN.
      CALL FUNCTION 'CONVERSION_EXIT_ABPSP_OUTPUT'
        EXPORTING
          input  = p_projk
        IMPORTING
          output = p_projk.
    START-OF-SELECTION.
      BREAK-POINT.
    Regards
    Bala Krishna

  • How to select WBS element of Level2 on Report Painter

    Dear PS Masters.
    I made project which has 3 levels.
    I want to see the result of only level 2
    on the report of report painter.
    However, when I select WBS element of level 2,
    the report shows level2 and level3 together.
    So, I want to exclude the result of level3 from the report.
    In order to solve it,
    I tried to uncheck the checkbox of "INCL.HIERARCHY" on Database Profile.
    But, even though I uncheck it on IMG, SAP check the checkbox automatically again.
    Pls give your advice.
    BR
    Y.Kaneko

    Raghu,
    Thanx for your info.
    On the report of CJE0, I could find the hierarchy button.
    This is the one what I want!!
    But, I'm wondering that how can I show this button on the
    report which I made by report painter GRR2.
    Pls give advice.
    BR
    Y.Kaneko

  • Selecting wrong WBS element while preparing the Purchase Order

    Hi Gurus
    We want to check the data while end user input it in the system.
    While preparing the the PO in the sysetm we input the plant id,storage location and WBS element.
    End user may select wrong WBS element of project under with plant. I want to prevent it.
    How can I prevent end user for selecting wrong WBS element under plant and storage location.
    Atul Kulkarni

    HI,
    You need to some developement...create Z table and maintain  the entries with the cobinations in what way you want to restrict and call the same in the PO.
    Hope it will works.
    Kuber

  • WBS Element Texts

    Hi All,
                 I am facing the problem of texts for the info object 0wbs_elemt and 0project.
    The number of wbs element is 06/9999/40/I000 and the texts are not visible while reporting on this info object. We have loaded the master data before loading of the transaction data and we have loaded both attribute data and texts data.
    When I enter the WBS Element on the Selection Screen and check for consistency of the entered selection criteria the medium length of the texts is visible on the selection screen but not inside the report.
    The property of the WBS element in the Query is  Display as Key and Name.
    Where could the problem be.
    Points Assured.
    Regards
    Joga

    Hi,
    can you check if your master data texts are properly loaded? Run tcode RSDMD with 0WEBS_ELEMT and verify that your ID has texts.
    Otherwise goto your R3 source system; table PRPS, field PST1 should have your text; if you don't get it in R/3 then it hasn't been maintained....
    hope this helps...
    Olivier.

  • WBS element is not getting populated in Excise entry in Project billing

    Hi SAP Guru's
    We have the case where we are doing the billing from manufacturing plant against Project. While billing WBS element is appearing in the invoice but in excise invoice entry same is not getting populated. This is affecting RR and P&L.
    Can you help me by providing the standard solution to meet this requirement or update if we can meet this requirement by some function module or through any exit.
    Thanks
    Surender Gupta

    Hi,
      In transaction" VTFA" and for your sales and billing type,select your item category and in the same scree,your pricing type should be "D".This will copy all the conditions from sales order item.
      Reward if this helps.
    Regards
    Karan

  • Line item report on Statistical WBS element.

    Hi All,
    I need to extract Line report on statistical WBS element. I tried CJI3 and end up with the message No costs, revenues or finances were selected.
    can some one help me on this.
    Thanks and Regards,
    Vinod

    Hi,
    Please check below:
    Table PRPS: Select OBJNR and pass to RPSCO and check if any value exists there. Note down the Value type, Year.
    While in CJI3, please check if any dynamic Selection is active, remove all.
    if mutliple selection shows any exclusions, remove all.
    Posting Data: Remove the values. (Or put from 01.01.1900 to 31.12.9999)
    Select the standard SAP Layout (Starting with 1SAP)
    Value type=11 should be selected by default (Ensure it is checked)
    Hope it helps!
    Thank you and Regards,
    Varshal Kachole

  • Can PIR created at wbs element and MRP area of storage location level

    Hi,
    I tried to create an planned independent requirement at MRP area and WBS element level, but failed. The MRP area is not plant level, but storage location level.
    *When trying to create account assignment category Q for it, then there is an error message saying:*
    **only stock requirements are allowed when planning at MRP area level.**
    Does it mean it is not possible to create planned independent requirement for this case?
    Thanks!

    Select the "Issue storage location" as '2' here:
    spro -> production -> material requirement planning -> mrp groups -> overall maintenance of mrp groups -> overview -> mrp control parameters at material level -> (field) Issue storage location selection
    & make sure:
    1. In the BOM  issue storage location is blank for the components
    2. For the FG products , in mrp area prod.storage loc is maintained
    3. Components are extended to the mrp area.
    Pl. revert with the results

  • Report to View all PRs against WBS Elements

    Hi,
    I ran the tcode ME5A to display all PR's by WBS Element, but the problem is that the field WBS Element is not shown in the report.
    The Change Layout option does not display this field WBS Element.
    Is there a way to show this field in ME5A or is there a standard report to display all PRs in system with WBS Element field in report.
    Thanks
    Faisal

    Hi,
    In ME5A, Selection Screen click on Dynamic Selection Icon, there drill down on PR Account assignment, you will get an option of WBS element, double click on that, now you can enter you WBS element there and look for PR's.

  • WBS element in Material Document List Report

    Hi Guru,
         I have a problem about WBS element which is not show up any data in Material Document List (MB51) movement type 281 and 281 Q event I add WBS in the document.  Anyone know how can i config or do anything to let the system show up, please let me know.
         Thanks in advance.

    Hi,
    Go to SPRO > MM > Inventory Management and Physical Inventory > Reporting > Define Field Selection for Material Document List > Here for Program Name "RM07DOCS", Table "MSEG" add field "MAT_PSPNR" (Valuated Sales Order Stock WBS Element) and activate "Output" indicator.
    And Then check in MB51

Maybe you are looking for

  • [svn] 2263: Fixed WiseUI performance app and some mustella test failures.

    Revision: 2263 Author: [email protected] Date: 2008-06-26 13:19:12 -0700 (Thu, 26 Jun 2008) Log Message: Fixed WiseUI performance app and some mustella test failures. tests Passed: checkintests Needs QA: YES Needs DOC: NO Bug fixes: API Change: NO Re

  • Why can't apple allow wireless synch thru the network?

    Why can't the synch of the ipad be done wirelessly through the network? It should be doable with password protection and would save the hassle of hooking up by wire which seems so retro.

  • I have problems saving powerpoint, they become zero bytes

    Hi, I have been having problems with powerpoint file, (also PDF files) I saved them at work on a USB stick using a Windows Computer, and some of the files become zero bytes after I tried to open them at home using Mac Air. I thought it was the proble

  • Shutting down without being asked?

    When I shut down is there a way to turn off the dialog box that asks, "Are you sure you want to shut down?" I find it kind of annoying and naggy. One other quick thing which I'll probably just have to accept. When I log on to this site, Safari automa

  • Printing documents from websites

    i wish to download Court documents from web, these are public. In firefox the first page only is printed, may of these documents have 10s of pages. This is not a problem in Explorer. == This happened == Every time Firefox opened == Always