Need FDGRV (Planning Group) from LFB1 as attribute

Hello,
I am creating freight separation reports and have run into problem.  Initial specs were to differentiate freight vendors by using different vendor party.  Purchasing dept had determined that all freight vendors would we within a set range.  Now in testing, it has been uncovered that sometimes another vendor will be used  which is not within that range.  Users have now confirmed that I could use the planning group field - FDGRV - from table LFB1.
Data model - multiprovider is in place.  Using 2LIS_06_INV - Invoice Cube and Custom DSO of purchasing budgeted data. 
I know that I could enhance the 2LIS_06_INV datasource and bring in Planning Group - FDGRV -  from LFB1 table.
Another consultant suggested the idea of bringing it in as an attribute to the different vendor party field?
Can anyone help walk me through these steps? I am not experienced with this method.
Thank you...

I  figured it out - completed.

Similar Messages

  • I need billing plan detaisl from FPLT TABLE.

    I have sales order no VBAK-VBELN.
    I need billing plan item detaisl from FPLT TABLE.
    HOW TO LINK THESE 2 TABLES to get these billing [plan item details records
    Edited by: abap_friends on Jul 8, 2010 8:17 AM

    Hi,
      try with this fm
            CALL FUNCTION 'SD_SALES_BILLINGPLAN_READ'
              EXPORTING
                i_vbeln                      = ip_docnum
                i_posnr                      = ip_posnr
              TABLES
                e_fplt                       = it_fplt
              EXCEPTIONS
                no_billingplan_allowed       = 1
                no_billingplan_found         = 2
                OTHERS                       = 3
    or
      SELECT posnr fplnr INTO TABLE i_fplnr
        FROM vbkd
        WHERE vbeln EQ ip_docnum.
      IF NOT i_fplnr[] IS INITIAL.
        SELECT fplnr mlstn fkdat INTO TABLE i_mlstn FROM fplt
          FOR ALL ENTRIES IN i_fplnr
          WHERE fplnr EQ i_fplnr-fplnr.
      Endif.
    Regards,
    Carlos

  • Need to migrate Shared services users and groups from 9.3.1 to 11.1.2.2 ver

    Hi All,
    We need to migrate Shared services users and groups from 9.3.1 to 11.1.2.2 version. Any help would be appreciated. Can we use CSS import export utility?
    Thanks in advance!!

    Hi John, In my another environment I have to migrate the users and groups from Hyperion HSS 11.1.1.2 to Hyperion shared services 11.1.2.2. I am using LCM for that, when I export the users and gropus from 11.1.1.2, it exports fine but when i import it to my 11.1.2.2 using LCM, I am getting the below errors.
    Error when I try to import the groups:
    ErrorEPMIE-00051: Failed to perform operation on role. Could not locate role matching filter {0} and filter attribute {1}. Please ensure that a role exists matching the filter with filter attribute.
    EPMIE-00024: Failed to import all of the membership info for group test group. Invalid group members encountered. Please ensure the validity of members and its existence in their respective providers.
    Errors when i try to import the users:
    ErrorEPMIE-00051: Failed to perform operation on role. Could not locate role matching filter {0} and filter attribute {1}. Please ensure that a role exists matching the filter with filter attribute.
    EPMIE-00020: Failed to update user 04668162 during import. Invalid identity for user. Please ensure that the user is available in the system with the identity specified in the import file.
    Any idea?
    Thanks in advance.

  • Script Help - Adding Users from AD Group to Computer Object Attribute

    Environment:
    Computer Objects have the following name convention - USERNAME-INV#-PC.  An example is TEST1-54321-D.  There is a GPO in place that adds any user populated under the managedBy attribute in a computer object to the administrators group for that computer
    object.
    Scenario:
    Create "Local PC Admin" group
    When user TEST1 gets added to the "Local PC Admin" group, a powershell script that runs on an hourly scheduled task goes out and finds any computer object (that is not a server) that has TEST1 in its name.  For example, TEST1-54321-D for desktop
    and TEST1-98765-L for laptop.
    It then adds the user to the managedBy attribute of the computer object and appends the text "added as local admin on <currentdate>" to the computerobject description.
    If TEST2 is added to the group later, the script should see that TEST1 has already been added and only add TEST2 to the managedBy attribute to the appropriate computer as well as the "added as local admin on <currentdate>".
    Still thinking how this can be automated when a user is removed from the "Local PC Admin" group.
    Can somebody please find holes in this scenario or suggest a better method to approach this?

    Security nightmare?  How so?  Regular domain users cannot modify the "managedBy"  computer object attribute.
    The "Local PC Admin" group would be a ADUC security group.  The Help Desk and Network Admins would be the only ones that can either add users to the group or directly modify the "managedBy" computer object attribute.
    The Group Policy that runs against the desktops/laptops looks to see if the managedBy attribute of the computer object is populated.  If so, it adds that user as a local admin to their workstation/laptop and removes any other user/group not specified
    and given local admin rights.  This would only be done for a handful of users (those in the Local PC Admin group) that need admin access ; in other words, the attribute would only be populated for a few computer objects and not the entire organization.
     If it is not populated, it does nothing and leaves the default admins on it. 
    More info on how the GPO works here: http://fbinotto.blogspot.com/2014/01/making-user-object-set-in-managedby.html

  • Re assignment of material from inspection plan group

    Dear Experts,
    I have an issue, we got a material which has multiple groups assigned to it.
    How to remove the materials assignment from the inspection plan group?
    Since the group contains more than 1000 line items, it is very laborious to search every line item and delete manually.
    Is there any 1 shot way to remove the assignment?
    Please help me out in this, because of multiple assignment, the lot gets into the status of CRTD.
    Thanks in advance,
    Anitha Pauline.

    hi,
    Use CWBQM.
    Regards

  • Help: Need to exclude sales for customers in a act group from Consumption.

    Hi Gurus,
                  We have a requirement where sale to customers in a certain account group needs to be excluded from being considered as consumption and in turn from MRP.
    Also can specific movement types be excluded form consumption.
    Thanks in advance for your answers.
    Deep

    Hi Padraig Manson
    Would like to ask you whether you have:
    1. Setup a campaign element to collect the respondents?
    2. Setup a campaign element to collect non respondents?
    If yes, then the target group that is collected in the point number 2 above will serve the purpose.
    Rgds
    Hari

  • I need help removing hosts from all Active Directory Groups! - PowerShell

    In our environment, we use AD Groups to create collections in Configuration Manager. I have a few PC's that need to be removed from all AD Groups in our Forest. I do not know how many groups these computers are in and to script it in PowerShell. Could
    someone please guide me in the right direction?

    Hi,
    Here's how you can check group membership:
    Get-ADComputer COMPUTERNAME -Properties MemberOf |
    Select -ExpandProperty MemberOf
    http://ss64.com/ps/ad.html
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • In Address Book, any way to Show/Hide groups from view in the "ALL" view?

    I have groups of contacts in Address Book (v4.0.4) that I plan to use in the future, but right now having to wade through and past all of their individual entries when I am scanning my contact list in the "All" group view. Is there any way to Show/Hide these sub-groups with a visibility check-box? The sub-group name would still be there in the group list (to remind me that it exists and make it visible if desired), but I would have a lot less clutter and scrolling the rest of the time.
    I know I can export groups in vCard format and re-import later, but a lot of my original custom fields for the contacts are lost in the process. Is there a 3rd-party plug-in? (Apple, are you working on something like this?)

    Hi Mike, My Address Book app is behaving correctly (maybe I'm not).
    I'm just saying there are times when I want to see "most" of my total collection of contacts, maybe just for the purpose of creating new groups at particular time and want to see at one time the pool of contacts I have to choose from. There are groups that I very seldom need to use, so it would be a way of putting those groups (and their contacts) into "cold storage."
    I also may want to do searches from among most of my contacts, but also I may want to eliminate certain other particular groups from that search pool. That is the reason for wanting to do the "Show/Hide" thing. It is a way of displaying a logical "ALL" minus "SOME", which is the basically same thing as displaying the logical "UNION" of more than one group of contacts at one time. Can this be done?
    Is there a way to open alternate address books, from within the same Address Book app (and logged in as the same user)? That would allow me to truly isolate my work list from my home list.
    One answer to this occurs to me: I could create different log-ins on my PowerBook, and build the different variants of the Address Book I might want into each login and use Fast User Switching to get into each list of contacts. That seems like a lot of extra work . . . and logging in. Any suggestions?
    Scott

  • Getting an error while activating a planning area "Enter values for planning horizon From and planning horizon To for the storage time profile level"

    Dear S&OP community,
    I am getting following error while creating a planning ares in a newly installed sandbox. "Enter values for planning horizon From and planning horizon To for the storage time profile level".
    This what I did...
    1) Created new attributes and master data objects and activated them successfully.
    2) Time profile created and activated successfully
    3) Trying to create planing area by assigning  time profile in step 2 and assigned master data from step1..Unable to save the data and system returns 
    this error - "Enter values for planning horizon From and planning horizon To for the storage time profile level"
    My understanding is time profile needs to be active  but doesn't have to have values...
    Any help is appreciated.
    Thanks,
    Krishna

    YS,
    Here are my time profile settings
    Level       Name          Display Horizon - Past  Display Horizon - Future
    1             Monthly     -6                                       11         
    2             Quarterly     -2                                       3
    3             Yearly        -1                                       2
    Time profile is active and but time profile data is not loaded
    Thanks,
    Krishna

  • I have an old Mac Tower.  I need to move data from the unit to an external hard drive. What kind of hard drive do I purchase.  There is not a lot of data to be transferred.

    I have an old Mac Tower.  I need to move data from the unit to an external hard drive.  What kind of of hard drive must I purchase so that it works with the Tower?  There is not a lot to transfer.

    MG,
    What we might need to do is to change the question.  What computer do you plan to use the data on in the future?  For example, if you have a newer tower, just move the hard drive to the new tower.  If you want to use the data, what about an ethernet LAN to get the data over?  If you want to archive the data, how do you store the second drive?  What are your plans for the first drive?  If the new software will not recognize the old file type, the data must be exported.  Just getting files to another hard drive will not finish your journey.
    As Allan said, knowing the exact model and year of your tower is important.  My suggestion is to find a user group near you.  Please post back with more information, including the name of a large city near you.
    For example, our user group just experimented with a 1983 Apple IIc that predates the Mac.  It started right up, read files from 1984  and saved them from a 5.25" floppy to a 3.5" floppy.  That 3.5 floppy will go into a platinum G3 which will read PRODOS files using Apple File Exchange.  That G3, with a USB card, will allow saving the files to a USB flash drive.  But, somewhere along the way, some software has to read the file and convert it to data that is useable by current software.
    Ji~m

  • Release Planned Orders from SNP to R/3

    Hello Experts:
    I have a business request to release the Production Planned KF from SNP into a frozen MPS (or even an inactive fcst version) in R/3.  Since we have only released a forecast from the DP side to R/3 in the past, can anyone tell me the best practice to release from SNP to R/3?  Do I need to create an info cube to perform the release?
    The business runs a Heuristic in SNP at the finished good level and the makes modifications and would like to release this to be used in the R/3 MRP run for some groups of materials, as opposed to releasing the forecast for MRP to run on.
    Currently, I can send the data from SNP Production Planned KF to a time series KF in DP and release to MD63 from there, but they would like to release directly from SNP in the future.
    Any suggestions are greatly appreciated!
    Andrea

    Hi Andrea,
    If you want to release SNP planning data to ECC, you need to make following settings.
    In customizing
    Maintain Distribution definitions
    Maintain Settings in Configure transfer to OLTP system in SNP customizing-Global Settings.
    If you maintain periodic setting in SNP setting, you need to run transaction /SAPAPO/C5 to transfer data.
    As well as u can do this also :
    1) You need to create a release profile using transaction /sapapo/mc8s
    2) In release profile, you need to maintain planning area,  key figure to
    be transformed, plg version, category, etc.,
    3) Once it is created, using transaction /sapapo/mc8t, maintain the
    R/3 transfer steps
    4) Then create a planning job in background using transaction
    /sapapo/mc8d

  • Migrate the users, groups from essbase 7.1.6 to shared services

    Hi
    Our current production is essbase version 7.1.6 and we are planning to migrate to EPM 11.1.2 . We would like to move the security administration from Essbase to Shared Services (want to use Native Directory).
    can somebody please suggest
    1) An utility that Oracle provides with EPM 11.1.2 that helps to migrate the users and groups from 7.1.6 to shared services?
    2) After bringing the users groups from 7.1.6 to 11.1.2, do we need to externalize these users and groups or no need?
    Appreciate the help. Thanks,

    if you have LDAP/MSAD try to configure it first .That will get your users
    Now using maxl
    spool on to GROUP.txt
    display gruoup all;
    spool on to USER.txt
    display user in group all;
    for test purpose create a test group and a test user from the shared services.
    Now using GROUP.txt
    make up maxl statements to create groups(use any advanced text editor or MS excel to get your work done fast)
    create group 'groupname';
    now login into that shared services
    go to FOundation Application group->click sharedservices->drop down native directory ->Right click on Groups and select export for edit.THat will save you Groups.csv file.
    Now
    1.Open that Groups.csv file
    2.Using USER,txt ,paste the users in that file under their respective group.(Look for test group created that should give you an idea!!!)
    3.Paste user correctly and save it to the same file Groups.csv
    4.go to FOundation Application group->click sharedservices->drop down native directory ->Right click on Groups and select IMPORT for edit.
    5.that will get your users into the groups.
    ________filters_______
    Using maxl again
    spool on to FILTER.txt
    display filter row all;
    spool on to GRPRIVILEGE.txt
    display privilege group all;
    Now using FILTER.txt
    create maxl statements
    (use any advanced text editor or MS excel to get your work done fast)
    Ex: create filter app.database.filtername read/write/none/metaread on 'AREA ' ;
    Using GRPRIVILEGE.txt
    create maxl statements
    grant filter app.databse.filtername to 'groupname';
    that should get your filters created and assigned.
    else you can use Advanced Security Manger
    http://www.appliedolap.com/free-tools/advanced-security-manager
    hope that should give you an idea!!!!!!!

  • How to create planned order from the sales order for a processing item

    In the MTO sceanrio, assembly order is created directly from the sales order. I would like to create a planned order from the sales order.
    I tried the Planning strategy group 81 in the material master but it didnt work.
    Could you please let me know how to do it? Is it Schedule line config that controls whether planned order is created?
    Thanks
    Harish

    Narayana,
    Planning strategy 82 is the best & standard way of getting production order created on sale order create.
    just assign this strategy  in MRP 3 view under strategy group.
    If not then using sale order reqt type ( KMFA- Assembly with production order) & assigning this to your sale order item category is also another way to create prodcution order without using planning strategy in material master.
    Follow steps in SPRO-->Sales & dist --> basic functions >avail check &transfer of requirements> transfer reqts-->determination of reqt type using transaction
    Here you may select the item category you in sale orders & assign KMFA to your item category. this will then give option in sale order create to change reqt type to KFMA for assebly orders.
    If you need KFMA to be default assign it to Item cat/ MRP type ( PD) combo.
    Regards
    Ritesh

  • BPS Copy plan data from one cost center to another using vairables

    Hi experts,
    I am trying to copy the planning data from one cost center to another in BPS.
    I have just done it using a copy function and in the parameter group entering the costs centers for source and destinations.
    What I am trying now it is to let the user select what this destination cost center could be.
    I don`t know if this can be done using a variable. What I am thinking is; when the user enters executes the parameter group a pop-up appear that let him select the cost center for the destination.
    May be this is not possible. Can you suggest me other ways of doing this?
    Thanks in advance

    Hi,
    u can achieve this by creating a variable with the replacement type as  'User Defined Values'. You also need to enable the check box 'Input Allowed by user'. And at the planning level, in the 'Selection' tab, you should map the charecteristic (Cost Center) with the created variable. Same thing should be done at the planning package level.
    Then, when you execute the parameter group, a pop-up comes asking for the value of the costcenter.
    Regards,
    Srinivas Kamireddy.

  • Mass change 'Planning group'

    Hi,
    I want to run heuristics SAP_PP_002 according to the planning group. But the field 'planning group' in /SAPAPO/MAT1 is null. How to mass change the field 'planning group'?
    Thank you,
    Rui

    Rui,
    You can use the MASSD transaction to update these values.
    Use "Enhanced Product" in the Object Type field, build your selection as you like.
    Under Components and Attributes to Be Maintained," use the drop-down on Component.  Under the "Location Dependent Data" group look for the "Planning Group" attribute.  Select it.
    You should be able to continue from there if you are familiar with MASSD.  NB:  Be extremely careful using MASSD.  It is very easy to create problems you cannot undo.
    Jeff

Maybe you are looking for

  • Problem with serial number on second install

    I bought and downloaded CS4 upgrade. The first install on my desktop went fine. When trying to install the second on my laptop, the serial number box turns up a red x immediately upon typing it. I have verified my serial number and re-typed it numero

  • Compatible Camcorders for Mac

    Does anyone have any ideas as to what camcorders are compatible with Macs? I want to be able to transfer video from a camcorder to my Mac. I haven't purchased a new camcorder yet and want to be well informed before I make a mistake.

  • Next n

    Hi, I have a query that returns 10,000 rows (a Noticeboard / Forum). Currently posts from the last 14 days are displayed and when they drop off they are available in a search archive. That's ok. For seo, I need to be able to use Next n functionality

  • Recursively removing color labels in one go?

    Does anyone know a way to recursively remove color labels within a massive folder? Deep, deep nests exist in there and descending up and down the tree could take forever. Is there a way to select the top level folder and make all files and folders th

  • Can't synch iphone 4 with gmail contacts

    I can't synch my phone to gmail--email works, but not contacts. No one at apple or verizon can help. Any suggestions?