PO for set of materials

Hi,
I have a scenario which is to be mapped in SAP, please guide me how to map.
Scenario : Whenever I create a PO, i will create it for a set of materials. Example if I am ordering material A then I will have to order B,C,D,E. I dont want to enter all these materials manually as there might be chances of missing few materials. If I create a BOM with A as the parent material and other materials as child material it will work only for subcontracting scenario, but I dont want to use item category L as I always create standard PO for this material.
Please guide how to map this in SAP
Thanks and Regards
Pavan

The only option i see without including any code is to always create the PO for material A, B,C,D,E with ref to an old PO, which has already been created- using document over view "on" .  Take an old PO, drag and drop it in the basket in me21n, in that way you would not be missing any line items.
other than this, including a code is the only option, "enhancement" in short
regards,

Similar Messages

  • How to exclude a set of materials from  cycle counting physical inventory

    How to exclude a set of materials from  cycle counting physical inventory
    Details:
    Set of material to be uploaded to SAP on say Jan-2011  from another system with cc indicator D:once
    in a year  and fixed,before uploading into SAP physical inventory will be done .
    So we donot want again those materials to fall in the cycle counting in the same year.
    So is there a method to exclude these materials from CC counting for the year 2011
    or is there some way to upload last inventory count date in SAP system so that it will exclude those
    materials?
    Any answers will be appreciated.
    Thanks
    Bijay

    HI Antony
    Thank you for your reply.
    If material count is less than this method is well valid.
    IN our case there are 7lakhs materials and having diff cc indicator A,B,C,D...
    So it will cumbersome for client to keep track of all those materials when to update cc indicator.
    So any other thought? can we upload last count date while updating materials details  or similar
    Thanks
    Bijay

  • For Externally Procured Materials (ex - ROH) - SG's are maintained or not?

    Hello
    Do I need to maintain SG's ( like SG10, 40, 70) for ROH as these are externally procured?
    As I see since ROH are externally procured, no need to maintain the SG (10, 40, 70,etc) in MRP 3 view of the ROH* material master as SG's (10, 40, 70)* are meant for maintianing PIRS & PIRs means it is inhouse production
    Iam not limiting myself to SG's (10,40, 70) for ROH, instead any SG need not be maintained for ROH (externally procured) 
    If I want to see that ROH materials get consumed by  the FERT then maintain SG 40/70 for the FERT/HALB (inhouse production) that should consume the ROH (externally procured)
    Questions:
    Q.For externally procured materials do I need to maintain the SG?
    Q. If no need to maintain SG's for externally procured materials then what fields do I need to maintain to see that externally procured material which are used in the finished product gets consumed by sales orders?
    Please clarify
    Thank You

    Pradeep
    Thank you for your reply & time
    If the component is semifinished & is externally procured, then following settings needs to be maintained
    Procurement Type : F
    Special Procurement Key : 30 (subcontracting)
    But Subcontracting(30) is used when we want semifinshed product to be manufactured outside the company from a raw material issued by the company
    & control key we maintain is PP02
    In above scenario, then we go for subcontracting or else we need not maintain the subcontracting
    Please clarify
    In your answer (" u have to set Individual/coll = 1 or blank at MRR of Down level material.")
    what does MRR stand for
    Due points have been assigned

  • Object Type for Bill of Materials

    What is the object type for bill of materials?  I am trying to add the code that updates the finished good item sales weight according to the weight of the Bill of Materials. Only one item in the bill of materials actually contains weight information so there is no conflict regarding cross units of measure. So, the finished good will have the same weight as the raw materials.
    Here is what I have so far. Though I'm not sure what the Object Type is for Bill of Materials. I'm also unsure about some of my code - Please review my code as well.
    IF (@TRANSACTION_TYPE = 'A' OR @TRANSACTION_TYPE = 'U') AND @OBJECT_TYPE = '68'
    BEGIN
         UPDATE OITM SET
              SWeight1 = (SELECT SUM(dbo.OITM.BWeight1) AS Weight
                   FROM dbo.OITM INNER JOIN dbo.ITT1 ON dbo.OITM.ItemCode = dbo.ITT1.Code
                   GROUP BY dbo.ITT1.Father
                   HAVING (dbo.ITT1.Father = @LIST_OF_COLS_VAL_TAB_DEL)),
              SWght1Unit = (SELECT dbo.OITM.BWght1Unit
                   FROM dbo.OITM INNER JOIN dbo.ITT1 ON dbo.OITM.ItemCode = dbo.ITT1.Code
                   GROUP BY dbo.ITT1.Father, dbo.OITM.BWght1Unit
                   HAVING(dbo.ITT1.Father = @LIST_OF_COLS_VAL_TAB_DEL) AND (dbo.OITM.BWght1Unit IS NOT NULL))
         WHERE ItemCode = @LIST_OF_COLS_VAL_TAB_DEL
    END
    Thanks

    I found it. The object type is 66 Product Tree. It appears my code works as well - yeah!

  • Program for Bills of Materials

    Hi all,
    Could you please tell me is there any program available in SAP for 'Bills of Materials'?
    Thanks.

    Dev,
    if u give ur  mail id i can farward some program to u
    u can check this program
    REPORT ZMM00120_AUDIT .
    CHANGE HISTORY                                                       *
    Date      Level  Description.                               Author   *
    03/02/05  46C    AUDIT REPORT FOR BOM COMPONENTS           EIFERTGE
    SYSTEM DETAILS                                                       *
    ABAP DETAILS                                                         *
      Title           : BOM COMPONENT AUDIT
    TABLES: MAST, STKO, STAS.
    DATA: BEGIN OF ZAUDIT OCCURS 0,
             MATNR LIKE MAST-MATNR,
             WERKS LIKE MAST-WERKS,
             STLNR LIKE MAST-STLNR,
             STLAL LIKE STKO-STLAL,
             ZZLIFNR LIKE STKO-ZZLIFNR,
             ZZSEASON LIKE STKO-ZZSEASON,
             ZZEKORG LIKE STKO-ZZEKORG,
             END OF ZAUDIT.
    DATA: Z_STLNR LIKE STKO-STLNR.
    *ALV GRID WORKING STORAGE                                   "GLE03/05
    TYPE-POOLS: SLIS.
    DATA:       ALV_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
                ALV_LAYOUT   TYPE SLIS_LAYOUT_ALV,
                ALV_LAYOUT_L TYPE SLIS_LAYOUT_ALV,
                ALV_FIELDCAT_L TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
                ALV_LAYOUT_B TYPE SLIS_LAYOUT_ALV,
                ALV_FIELDCAT_B TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
                ALV_STATUS TYPE SLIS_FORMNAME VALUE 'XXXXXXX',
                ALV_USER_COMMAND TYPE SLIS_FORMNAME
                              VALUE 'USER_COMMAND_ALV',
                ALV_GRID_TITLE TYPE LVC_TITLE,
                ALV_GRID_SETTINGS TYPE LVC_S_GLAY,
                ALV_VARIANT TYPE DISVARIANT,
                CALL-REPID LIKE SY-REPID.
    Ereignisse                                                *
    DATA:      ET_EVENTS TYPE SLIS_T_EVENT,
               ET_EVENTS_REST TYPE SLIS_T_EVENT.
    DATA:      ET_EVENT_EXIT       TYPE   SLIS_T_EVENT_EXIT.
    DATA:      S_PRINT             TYPE   SLIS_PRINT_ALV.
    DATA: IT_LIST_COMMENTARY TYPE SLIS_T_LISTHEADER,
          C-TEXT(15) TYPE C,   " TYPE slis_entry,
          IT_LIST_COMMENTARY_LINE TYPE SLIS_LISTHEADER.
    DATA: KEYINFO  TYPE SLIS_KEYINFO_ALV.
    SELECT-OPTIONS: S_MATNR FOR MAST-MATNR,
                    S_WERKS FOR MAST-WERKS.
    Start of selection                                                   *
    START-OF-SELECTION.
    SELECT * INTO CORRESPONDING FIELDS OF TABLE ZAUDIT
      FROM STKO INNER JOIN MAST
        ON STKOSTLNR = MASTSTLNR
       WHERE MATNR IN S_MATNR
         AND WERKS IN S_WERKS
         AND MAST~STLAN =  'S'.
    LOOP AT ZAUDIT.
      SELECT SINGLE STLNR INTO Z_STLNR FROM STAS
        WHERE STLNR = ZAUDIT-STLNR
          AND STLAL = ZAUDIT-STLAL.
      IF SY-SUBRC = 0.
       DELETE ZAUDIT.
      ENDIF.
    ENDLOOP.
    End of Selection                                                     *
    END-OF-SELECTION.
    Ereignisse fühlen                                       *
      DATA:  ET_EVENTS_LINE TYPE SLIS_ALV_EVENT.
      CLEAR ET_EVENTS_LINE.
      ET_EVENTS_LINE-NAME = SLIS_EV_TOP_OF_PAGE.
      ET_EVENTS_LINE-FORM = 'EVENT_TOP_OF_LIST'.
      APPEND ET_EVENTS_LINE TO ET_EVENTS.
      CLEAR ET_EVENTS_LINE.
      ET_EVENTS_LINE-NAME = SLIS_EV_TOP_OF_LIST.
      ET_EVENTS_LINE-FORM = 'EVENT_TOP_OF_LIST'.
      APPEND ET_EVENTS_LINE TO ET_EVENTS.
      CLEAR ET_EVENTS_LINE.
      ET_EVENTS_LINE-NAME = slis_ev_after_line_output.
      ET_EVENTS_LINE-FORM = 'AFTER_LINE_OUTPUT'.
      APPEND ET_EVENTS_LINE TO ET_EVENTS.
    event exist                                           *
      DATA:      ET_EVENT_EXIT_LINE  TYPE   SLIS_EVENT_EXIT.
      IF 'A' = 'A'.
        CLEAR  ET_EVENT_EXIT_LINE.
        ET_EVENT_EXIT_LINE-UCOMM = '&IC'.
        ET_EVENT_EXIT_LINE-BEFORE = 'X'.
        APPEND  ET_EVENT_EXIT_LINE TO ET_EVENT_EXIT.
      ENDIF.
      IF NOT ZAUDIT[] IS INITIAL.
        PERFORM ALV_GRID_DISPLAY.
      ENDIF.
          FORM EVENT_TOP_OF_LIST                                        **
    FORM EVENT_TOP_OF_LIST.
      DATA: DUMMY.
      DATA: S-TIME(8) TYPE C,
           S-DATE(10) TYPE C,
            SEPARATOR(3) TYPE C VALUE SPACE.
    S_PRINT-NO_PRINT_LISTINFOS = 'X'.            "NO PRT TOTALS/SUBTOTALS
    S_PRINT-NO_PRINT_SELINFOS = 'X'.            "NO PRINT ???
      CLEAR IT_LIST_COMMENTARY_LINE.
      REFRESH IT_LIST_COMMENTARY.
      IT_LIST_COMMENTARY_LINE-TYP = 'H'.
      clear IT_LIST_COMMENTARY_LINE-INFO.
      WRITE  'W O L V E R I N E  W O R L D  W I D E , I N C.'  TO
         IT_LIST_COMMENTARY_LINE-INFO.
      APPEND IT_LIST_COMMENTARY_LINE TO IT_LIST_COMMENTARY.
      clear IT_LIST_COMMENTARY_LINE-INFO.
       IT_LIST_COMMENTARY_LINE-INFO = 'BOM Component Audit'.
       APPEND IT_LIST_COMMENTARY_LINE TO IT_LIST_COMMENTARY.
       clear IT_LIST_COMMENTARY_LINE-INFO.
      IT_LIST_COMMENTARY_LINE-TYP = 'A'.
      CONCATENATE 'EXECUTED BY:' SY-UNAME INTO
            IT_LIST_COMMENTARY_LINE-INFO SEPARATED BY ' '.
      APPEND IT_LIST_COMMENTARY_LINE TO IT_LIST_COMMENTARY.
      CLEAR  IT_LIST_COMMENTARY_LINE-INFO.
      WRITE SY-DATUM TO IT_LIST_COMMENTARY_LINE-INFO.
      WRITE SY-UZEIT TO S-TIME.
      CONCATENATE 'Date:' IT_LIST_COMMENTARY_LINE-INFO
                  'Time:' S-TIME
         INTO IT_LIST_COMMENTARY_LINE-INFO SEPARATED BY SEPARATOR.
      WRITE SY-PAGNO TO C-TEXT LEFT-JUSTIFIED NO-ZERO.
      CONCATENATE 'PAGE:' C-TEXT INTO C-TEXT SEPARATED BY ' '.
      IT_LIST_COMMENTARY_LINE-INFO+50 = C-TEXT.
      APPEND IT_LIST_COMMENTARY_LINE TO IT_LIST_COMMENTARY.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                IT_LIST_COMMENTARY = IT_LIST_COMMENTARY
           EXCEPTIONS
                OTHERS             = 1.
    ENDFORM.
    *&      Form  ALV_GRID_DISPLAY
    FORM ALV_GRID_DISPLAY.
      CLEAR: S_PRINT, ALV_LAYOUT.
    s_print-print = 'X'.                "DIRECT TO PRINT NO DISPLAY
      CALL-REPID = SY-REPID.
    ALV_GRID_SETTINGS-NO_COLWOPT = 'X'.
      ALV_LAYOUT-colwidth_optimize = 'X'.        "MINIMIZE COL WIDTHS
      ALV_LAYOUT-ZEBRA = 'X'.                    "ZEBRA PRINT
      ALV_FIELDCAT-TABNAME = ZAUDIT.
      ALV_FIELDCAT-FIELDNAME = 'MATNR'.
      ALV_FIELDCAT-SELTEXT_L = 'Material'.
      APPEND ALV_FIELDCAT.
      CLEAR ALV_FIELDCAT.
      ALV_FIELDCAT-TABNAME = ZAUDIT.
      ALV_FIELDCAT-FIELDNAME = 'ZZLIFNR'.
      ALV_FIELDCAT-SELTEXT_L = ' Vendor#  '.
      ALV_FIELDCAT-JUST = 'R'.
    ALV_FIELDCAT-LZERO = 'X'.
      ALV_FIELDCAT-NO_ZERO = 'X'.
      APPEND ALV_FIELDCAT.
      CLEAR ALV_FIELDCAT.
      ALV_FIELDCAT-TABNAME = ZAUDIT.
      ALV_FIELDCAT-FIELDNAME = 'WERKS'.
      ALV_FIELDCAT-SELTEXT_S = 'Plant'.
      APPEND ALV_FIELDCAT.
      CLEAR ALV_FIELDCAT.
      ALV_FIELDCAT-TABNAME = ZAUDIT.
      ALV_FIELDCAT-FIELDNAME = 'ZZEKORG'.
      ALV_FIELDCAT-SELTEXT_S = 'Pur. Org'.
      APPEND ALV_FIELDCAT.
      CLEAR ALV_FIELDCAT.
      ALV_FIELDCAT-TABNAME = ZAUDIT.
      ALV_FIELDCAT-FIELDNAME = 'ZZSEASON'.
      ALV_FIELDCAT-SELTEXT_l = 'Season'.
      APPEND ALV_FIELDCAT.
      CLEAR ALV_FIELDCAT.
       PERFORM GET_ALV_VARIANT.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM                = CALL-REPID
          I_CALLBACK_USER_COMMAND           = ALV_USER_COMMAND
        I_STRUCTURE_NAME                  = 'ZFOB_ALV'
          I_GRID_TITLE                      = ALV_GRID_TITLE
          I_GRID_SETTINGS                   = ALV_GRID_SETTINGS
          IS_LAYOUT                         =  ALV_LAYOUT
          IT_FIELDCAT                       =  ALV_FIELDCAT[]
          I_DEFAULT                         = 'X'
          I_SAVE                            = 'A'
          IS_VARIANT                        = ALV_VARIANT
          IT_EVENTS                         = ET_EVENTS
          IT_EVENT_EXIT                     = ET_EVENT_EXIT
          IS_PRINT                          = S_PRINT           "GLE02/05
        TABLES
          T_OUTTAB                          =  ZAUDIT
        EXCEPTIONS
          PROGRAM_ERROR                     = 1
          OTHERS                            = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " ALV_GRID_DISPLAY
    *&      Form  GET_ALV_VARIANT
    FORM GET_ALV_VARIANT.
      ALV_VARIANT-REPORT = CALL-REPID.
      ALV_VARIANT-USERNAME = SY-UNAME.
      CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
           EXPORTING  "USER DEFINED VARIANT
                I_SAVE        = 'A'
           CHANGING
                CS_VARIANT    = ALV_VARIANT
           EXCEPTIONS
                WRONG_INPUT   = 1
                NOT_FOUND     = 2
                PROGRAM_ERROR = 3
                OTHERS        = 4.
      IF SY-SUBRC <> 0.    "GET DEFAULT VARIANT
        CLEAR ALV_VARIANT-USERNAME.
        CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'
             EXPORTING
                  I_SAVE        = 'A'
             CHANGING
                  CS_VARIANT    = ALV_VARIANT
             EXCEPTIONS
                  WRONG_INPUT   = 1
                  NOT_FOUND     = 2
                  PROGRAM_ERROR = 3
                  OTHERS        = 4.
        IF SY-SUBRC <> 0.
          CLEAR ALV_VARIANT.
        ENDIF.
      ENDIF.
    ENDFORM.                    " GET_ALV_VARIANT
    *&      Form  USER_COMMAND_ALV
    FORM USER_COMMAND_ALV USING R_UCOMM LIKE SY-UCOMM
                                RS_SELFIELD TYPE SLIS_SELFIELD.
      RS_SELFIELD-REFRESH = 'X'.
      CASE R_UCOMM.
       WHEN 'PICK' OR '&IC1'.
         IF RS_SELFIELD-fieldNAME = 'BELNR'.
           SET PARAMETER ID 'GJR' FIELD ACCTDTLS-GJAHR.
           CALL TRANSACTION 'FB03' AND SKIP FIRST SCREEN.
         ENDIF.
        RS_SELFIELD-COL_STABLE = 'X'.     "SET CURSOR TO CURRENT POSTITION
         RS_SELFIELD-ROW_STABLE = 'X'.
         ALV_LAYOUT-INFO_FIELDNAME    = 'DISPLAY-COL'.
        WHEN '&RNT'.                       "Print
          CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
               EXPORTING
                    IS_PRINT = S_PRINT.
      ENDCASE.
    ENDFORM.
    Regards,
    Naveen

  • I have two Apple IDs, and this is causing problems with syncing via iCloud. How do I move everything to one ID? All advice is for setting up, not for after it's already set up.

    My problem is that I have been a Mobile Me user for the past couple of years, and because of that a second Apple ID was generated in addition to the one I've been using for years. When iCloud was introduced last fall I did everything I was supposed to in setting it up, but it is evident that the syncing is not working as it should. In checking, I am certain this is because I now have two active Apple IDs. I would assume this is a common issue with all who were/are Mobile Me users.
    The online help says you can't merge two IDs. Okay. What I want to do is to get rid of the Moble Me ID and only use my regular Apple ID. But the help on that issue seems to only give instructions for setting up the iCloud account. It seems that when I go into my iCloud accounts, both on my iPhone and my Mac, I can view the ID but there is no way to change them to another ID or to eliminate the account.
    Please help. I am a long-time Apple user and this really should be a fairly simple matter to take care of, but this is one issue where the normally user-friendly Apple way of life is giving me fits. Thanks.

    I am logged into the same things on both my iPhone and my MacBook Pro, except for mail. I use a gmail IMAP account and everything there already works on both machines. The iCloud account on my iPhone uses one Apple ID and the one on the Mac uses the second Apple ID.

  • I cannot send an email from my iPad 2? No problem receiving, why does this happen? Have tried the suggestions for setting up email and after doing the sync mail through iTunes receiving worked great but still cannot send? Any help would be great

    I cannot send an email from my iPad 2? No problem receiving, why does this happen? Have tried the suggestions for setting up email and after doing the sync mail through iTunes receiving worked great but still cannot send? Any help would be great!

    The fact that you can receive means you have a valid e mail address, and have established the connection to the incoming server, so all of that works.  Since the send does not work, that means your outgoing server is rejecting whatever settings you used formthe outgoing set up.  Try them again. 
    Google your particular isp, and ipad and many times you will find the exact settings needed for your isp.  Or tell us here, and soneone else may be on the same isp.  Some mail services need you to change a port, or have a unique name for the outgoing server.  
    Kep trying.

  • When I was talking on phone, suddenly the phone was switched off. i tried to switch it on but it gave the message....connect to itunes for set up.  when I connected it to itunes...it gave the message, itunes can not read data from this iphone, restore it

    when I was talking on phone, suddenly the phone was switched off.
    i tried to switch it on but it gave the message....connect to itunes for set up.
    when I connected it to itunes...it gave the message, itunes can not read data from this iphone, restore it to factory settings. It also said while restoring ypu will lose all media data but you can restore the contacts.
    I restored the factory settings....the phone was on recovery mode...it was verified by itunes and all that..but in the end it again said that iphone has some problem and can not function right now.
    after that when ever i connect it with itunes, it gives the message, it can not activate the iphone further, try again later or contact customer service.
    What to do now?????? Customer service people say..it is hardware problem

    If it's a hardware problem, then the phone will need to be replaced.
    There is no magic that can fix a hardware problem.

  • Excise Invoice Tab in MIGO for non-codified materials

    Hi!
    While doing MIGO against PO, for non-codified materials ( No material code, Account assignment in P.O - F), Excise Invoice Tab Pop-Up is coming in MIGO. There is no excise related master data maintained in J1ID.
    What could be the reason? Can any body suggest in this reg..
    I am using ECC 6.0
    Thanks & Regards,
    Gopi Chand

    Hi,
    These options are coming from Excise Group settings.
    Go to : SPRO-Logistics General-Tax on Goods movements-India-Basic settings-Maintain Excise Groups-in 'MIGO Settings' tab, select the check boxes, accordingly you will get the options in Excise Tab of MIGO screen.
    Hope this will resolve your issue.
    Regards,
    Gopi Chand

  • I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords but it does not work for the macbook.

    I have an apple ID which I use to sign into icloud for my iPad and iPhone.But when I use the same ID for setting up iCloud on my Macbook it says INCORRECT ID or password, try again. I tried changing my passwords several times but it does not work for the macbook.

    You will have to provide the correct password to delete the existing account, if you have tried but are not getting the password reset email, contact Apple for assistance by going to https://expresslane.apple.com, then click More Products and Services>Apple ID>Other Apple ID Topics>Lost or forgotten Apple ID password.

  • Prompt for setting Top N

    I have a report to list top N sources of data. For my report, I have 12 prompt fields excluding the prompt for setting the top N value. The report is working fine with the 12 prompts some of which are constrained. All the prompts have "All Choices" as default values. The moment I add the prompt for the top N, the constrained prompts do not show any value in the drop-down. To provide a little more perspective, this is what I have done to create the top N prompt:
    Used any random field and then changed the fx with hard value 1. Selected "Edit Box" for the control. The specific value has been set to 5. Using a presentation variable.
    However, if I add this prompt with its own "Go" button, then I do not see the issue described above. I would not like to have 2 "Go" buttons.
    Please let me know what I am missing here to make it work.
    Thanks.
    Bhusan

    As you said, 'All the prompts have "All Choices" ', this is one of the requirement's for the constrain to work. I believe that to get the constrain values, you might have used a SQL query
    and you are getting the values. In that case, as per my knowledge, you cannot constrain a dashboard prompt when you are using SQL Results.
    Constrained columns will be constrained by all other columns in the prompt. For example, if the prompt contains columns Year, Region, and District, and Constrain is checked for District, the values shown in District will be limited by the values entered in Region and Year.
    Thanks,
    Chandu.

  • Error message "Data cannot be maintained for set type COMM_PR_PUR_1

    Hi
    While replicating the material master through R3AS I am getting an error for which the details to be checked in SMW01. In SMW01 when I selected the record for error details I am getting above error message.  How to resolve ? Pls guide me stepwise. For your information I has cleared SMQ1 in R3 & SMQ2 in SRM
    For curioisity next I selected all such error logs & deleted. It gave me one warning (some inconstinecies error) which I ignored. After that I checked SMQ1 of R3 & SMQ2 of SRM. No log
    But I observed a strange thing. Whatever material codes I am creating it is going straightway to SRM without running R3AS transaction. I checked R3AM1, selected the row and cancelled. But still going without any interferrance. Why ? How shall I stop this.
    Thanks

    Hello,
    >
    BNR wrote:
    > Hi
    > While replicating the material master through R3AS I am getting an error for which the details to be checked in SMW01. In SMW01 when I selected the record for error details I am getting above error message.  How to resolve ? Pls guide me stepwise. For your information I has cleared SMQ1 in R3 & SMQ2 in SRM
    >(...)
    Have a look at OSS note 1049693 - Data cannot be maintained for set type COMM_PR_PUR_1.
    Regards.
    Laurent.

  • Best Practice for setting up an office with an extreme

    I am looking for some great info for setting up a Business Network using Comcast Business Highspeed. I rencently purchased an Airport Extreme and an Airport Express for a network extender and I am trying to understand what the optimal setup is for this kind of setup. Comcast provides a modem that manages DHCP but I am not sure if it makes sense to use the Airport Extremes built in DHCP or setup the Extreme as a bridge to the Modem and let DHCP be handled there. I am expecting to have anywhere from 30-60 devices on the network depending on the day. Is there any info out there that would help me better understand Apple's recomendation or do any of you have some good info for me? Thanks for the help in advance.

    Unless the Comcast modem/router or gateway device has an available option to be configured as a simple modem.....and....this type of configuration is supported by Comcast, the decision about DHCP service has already been made for you.
    In that case, configure the AirPort Extreme in Bridge Mode to allow the Comcast modem/router to control the routing functions on the network. You will have to check with Comcast to insure that the DHCP range of the modem/router will supply an adequate number of IP addresses to meet your needs.
    That would probably mean a pool of at least 100 or more IP addresses.
    Connect the AirPort Express using an Ethernet cable to one of the LAN <-> ports on the AirPort Extreme if you want optimum bandwidth performance for the network.
    Keep in mind that all devices will share the same Internet connection bandwidth, so if you have 50 devices on the network at one time, and you have a 50 Mbps Internet connection, each device will be allowed about 1 Mbps of bandwidth.
    That may...or may not.....be adequate for your needs depending on how active the devices will be at the time.
    If 50 users are all trying to update their email simultaneously, things are going to be sluggish.

  • (Request for:) Best practices for setting up a new Windows Server 2012 r2 Hyper-V Virtualized AD DC

    Could you please share your best practices for setting up a new Windows Server 2012 r2 Hyper-V Virtualized AD DC, that will be running on a new WinSrv 2012 r2 host server.   (This
    will be for a brand new network setup, new forest, domain, etc.)
    Specifically, your best practices regarding:
    the sizing of non virtual and virtual volumes/partitions/drives,  
    the use of sysvol, logs, & data volumes/drives on hosts & guests,
    RAID levels for the host and the guest(s),  
    IDE vs SCSI and drivers both non virtual and virtual and the booting there of,  
    disk caching settings on both host and guests.  
    Thanks so much for any information you can share.

    A bit of non essential additional info:
    We are small to midrange school district who, after close to 20 years on Novell networks, have decided to design and create a new Microsoft network and migrate all of our data and services
    over to the new infrastructure .   We are planning on rolling out 2012 r2 servers with as much Hyper-v virtualization as possible.
    During the last few weeks we have been able to find most of the information we need to undergo this project, and most of the information was pretty solid with little ambiguity, except for
    information regarding virtualizing the DCs, which as been a bit inconsistent.
    Yes, we have read all the documents that most of these posts tend point to, but found some, if not most are still are referring to performing this under Srvr 2008 r2, and haven’t really
    seen all that much on Srvr2012 r2.
    We have read these and others:
    Introduction to Active Directory Domain Services (AD DS) Virtualization (Level 100), 
    Virtualized Domain Controller Technical Reference (Level 300),
    Virtualized Domain Controller Cloning Test Guidance for Application Vendors,
    Support for using Hyper-V Replica for virtualized domain controllers.
    Again, thanks for any information, best practices, cookie cutter or otherwise that you can share.
    Chas.

  • Best practices for setting up projects

    We recently adopted using Captivate for our WBT modules.
    As a former Flash and Director user, I can say it’s
    fast and does some great things. Doesn’t play so nice with
    others on different occasions, but I’m learning. This forum
    has been a great source for search and read on specific topics.
    I’m trying to understand best practices for using this
    product. We’ve had some problems with file size and
    incorporating audio and video into our projects. Fortunately, the
    forum has helped a lot with that. What I haven’t found a lot
    of information on is good or better ways to set up individual
    files, use multiple files and publish projects. We’ve decided
    to go the route of putting standalones on our Intranet. My gut says
    yuck, but for our situation I have yet to find a better way.
    My question for discussion, then is: what are some best
    practices for setting up individual files, using multiple files and
    publishing projects? Any references or input on this would be
    appreciated.

    Hi,
    Here are some of my suggestions:
    1) Set up a style guide for all your standard slides. Eg.
    Title slide, Index slide, chapter slide, end slide, screen capture,
    non-screen capture, quizzes etc. This makes life a lot easier.
    2) Create your own buttons and captions. The standard ones
    are pretty ordinary, and it's hard to get a slick looking style
    happening with the standard captions. They are pretty easy to
    create (search for add print button to learn how to create
    buttons). There should instructions on how to customise captions
    somewhere on this forum. Customising means that you can also use
    words, symbols, colours unique to your organisation.
    3) Google elearning providers. Most use captivate and will
    allow you to open samples or temporarily view selected modules.
    This will give you great insight on what not to do and some good
    ideas on what works well.
    4) Timings: Using the above research, I got others to
    complete the sample modules to get a feel for timings. The results
    were clear, 10 mins good, 15 mins okay, 20 mins kind of okay, 30
    mins bad, bad, bad. It's truly better to have a learner complete
    2-3 short modules in 30 mins than one big monster. The other
    benefit is that shorter files equal smaller size.
    5) Narration: It's best to narrate each slide individually
    (particularly for screen capture slides). You are more likely to
    get it right on the first take, it's easier to edit and you don't
    have to re-record the whole thing if you need to update it in
    future. To get a slicker effect, use at least two voices: one male,
    one female and use slightly different accents.
    6) Screen capture slides: If you are recording filling out
    long window based databse pages where the compulsory fields are
    marked (eg. with a red asterisk) - you don't need to show how to
    fill out every field. It's much easier for the learner (and you) to
    show how to fill out the first few fields, then fade the screen
    capture out, fade the end of the form in with the instructions on
    what to do next. This will reduce your file size. In one of my
    forms, this meant the removal of about 18 slides!
    7) Auto captions: they are verbose (eg. 'Click on Print
    Button' instead of 'Click Print'; 'Select the Print Preview item'
    instead of 'Select Print Preview'). You have to edit them.
    8) PC training syntax: Buttons and hyperlinks should normally
    be 'click'; selections from drop down boxes or file lists are
    normally 'select': Captivate sometimes mixes them up. Instructions
    should always be written in the correct order: eg. Good: Click
    'File', Select 'Print Preview'; Bad: Select 'Print Preview' from
    the 'File Menu'. Button names, hyperlinks, selections are normally
    written in bold
    9) Instruction syntax: should always be written in an active
    voice: eg. 'Click Options to open the printer menu' instead of
    'When the Options button is clicked on, the printer menu will open'
    10) Break all modules into chapters. Frame each chapter with
    a chapter slide. It's also a good idea to show the Index page
    before each chapter slide with a progress indicator (I use an
    animated arrow to flash next to the name of the next chapter), I
    use a start button rather a 'next' button for the start of each
    chapter. You should always have a module overview with the purpose
    of the course and a summary slide which states what was covered and
    they have complete the module.
    11) Put a transparent click button somewhere on each slide.
    Set the properties of the click box to take the learner back to the
    start of the current chapter by pressing F2. This allows them to
    jump back to the start of their chapter at any time. You can also
    do a similar thing on the index pages which jumps them to another
    chapter.
    12) Recording video capture: best to do it at normal speed
    and be concious of where your mouse is. Minimise your clicks. Most
    people (until they start working with captivate) are sloppy with
    their mouse and you end up with lots of unnecessarily slides that
    you have to delete out. The speed will default to how you recorded
    it and this will reduce the amount of time you spend on changing
    timings.
    13) Captions: My rule of thumb is minimum of 4 seconds - and
    longer depending on the amount of words. Eg. Click 'Print Preview'
    is 4 seconds, a paragraph is longer. If you creating knowledge
    based modules, make the timing long (eg. 2-3 minutes) and put in a
    next button so that the learner can click when they are ready.
    Also, narration means the slides will normally be slightly longer.
    14) Be creative: Capitvate is desk bound. There are some
    learners that just don't respond no matter how interactive
    Captivate can be. Incorporate non-captivate and desk free
    activities. Eg. As part of our OHS module, there is an activity
    where the learner has to print off the floor plan, and then wander
    around the floor marking on th emap key items such as: fire exits;
    first aid kit, broom and mop cupboard, stationary cupboard, etc.
    Good luck!

Maybe you are looking for