MASS BLOKING  OF PO

Hi,
Any body so kind to help me  resolving the following issue?
My client want to block(lock) some 20000+  purchase orders . However it is not possible in mass maintaince T.Code- MEMASSPO.
Is there any othere functionality in SAP by which I can block(lock) 20000+  purchase order in a single trasaction.
Regards,
sp sahu

Hi,
the setting of the delivery completed indicator in MEMASSPO will NOT solve your problem.
This flag does NOT block anything, the GRs can still take place. This flag simply classes the PO as no longer open (for reports etc.) it does not stop further receipts etc.
However you could set the delete flags via the MEMASSPO transaction? This will act as a block but the flagcan only be set if the GR and Invoiced qty match fully.
Why do you want to block so many POs, are you sure that there is not a standard SAP option that will help??? (it all depends on what you are actually trying to do)
Steve B

Similar Messages

  • Help! (please :) I have a 1GB iPod that's loaded with music for which my computer can no longer find the original files-due to external mass storage crash during recent move. Is there a way to import iPod music back into my iTunes library on computer???

    Help! (please I have a 1GB iPod that's loaded with music for which my computer can no longer find the original files-due to external mass storage crash during recent move. Is there a way to import iPod music back into my iTunes library on computer???

    Or If there is any purchased music then you can try to transfer purchases
    http://support.apple.com/kb/ht1848
    If you're in the US you can reload purchased music
    http://support.apple.com/kb/ht2519

  • MASS CREATION OF INFOOBJECTS IN BI 7.0

    Hello Gurus,
    Here is my scenario:
    we have more than 100 new Z fields in R/3 (Tables: KONV, KONP, VBRP) and we are populating those. We maintained the Datasources with that fields. Now we need to develop new infoobjects in BW for those Z fields. Is there any possible way for mass creation of infoobjects.
    I searched about this, but most of them were used only for 3.5 data source.(eg: CTBW_META  - transaction for mass creation of infoobjects in bw 3.5)
    Please anyone help me in solving this !
    Thanks in advance .

    Hi,
    One option I thought of, but never applied in practice. Create an excel with all the field related information in the structure of table,
    RSDIOBJ Directory of all InfoObjects
    RSDCHABAS Basic Characteristics (for Characteristics,Time Characteristics, and Units)
    *RSKYF Key Figures
    RSDTIM Time Characteristics
    RSDUNI Units*
    And upload this table with the flat using function module etc.
    But then you would need to update below tables to with relevant details.
    RSDIOBJT Texts of InfoObjects
    RSDIOBJ Directory of all InfoObjects
    RSDIOBJT Texts of InfoObjects
    RSDATRNAV Navigation Attributes
    RSDATRNAVT Navigation Attributes
    RSDBCHATR Master Data Attributes
    RSDCHABAS Basic Characteristics (for Characteristics,Time Characteristics, and Units)
    RSDCHA Characteristics Catalog
    RSDDPA Data Package Characteristic
    RSDIOBJCMP Dependencies of InfoObjects
    RSKYF Key Figures
    RSDTIM Time Characteristics
    RSDUNI Units
    Edited by: Parth Kulkarni on Jun 22, 2011 4:56 PM

  • Mass creation of Material Master Records

    Hi all,
    I have to create 50.000 materials the first time and then, once a month, I have to manage the update of 50/100 materials.
    What do you suggest ?
    Direct input the first time and Idoc (Matmas) to manage the updating?
    Thanks in advance
    Bye

    Hi
    Use LSMW Direct Input Method/Manually code it to imitate LSMW Direct Input Method .
    or
    Use BAPI to Create Materials .
    if u are going for BAPI u can use the following code.
    REPORT Z_NEW_PROGRAM2 .
    *TO CREATE MATERIAL USING BAPI.
                   STRUCTURE  DECLARATIONS                             *
    TABLES: BAPIMATHEAD,  "Headerdata
            BAPI_MARA,    "Clientdata
            BAPI_MARAX,   "Clientdatax
            BAPI_MARC,    "Plantdata
            BAPI_MARCX,   "Plantdatax
            BAPI_MAKT,    "Material description
            BAPI_MBEW,    "VALUATION DATA
            BAPI_MBEWX,
            BAPI_MARM,
            BAPI_MARMX,
            bapi_mean,
            BAPIRET2.     "Return messages
    DATA:V_FILE TYPE STRING.   "input data file
    DATA:
      BEGIN OF LSMW_MATERIAL_MASTER,
        MATNR(018) TYPE C,  "Material number
        MTART(004) TYPE C,  "Material type
        MBRSH(001) TYPE C,  "Industry sector
        WERKS(004) TYPE C,  "Plant
        MAKTX(040) TYPE C,  "Material description
        DISMM(002) TYPE C,  "Extra Field Added In the Program as itsrequired
        MEINS(003) TYPE C,  "Base unit of measure
        MATKL(009) TYPE C,  "Material group
        SPART(002) TYPE C,  "Division
        LABOR(003) TYPE C,  "Lab/office
        PRDHA(018) TYPE C,  "Product hierarchy
        MSTAE(002) TYPE C,  "X-plant matl status
        MTPOS_MARA(004) TYPE C,  "Gen item cat group
        BRGEW(017) TYPE C,  "Gross weight
        GEWEI(003) TYPE C,  "Weight unit
        NTGEW(017) TYPE C,  "Net weight
        GROES(032) TYPE C,  "Size/Dimensions
        MAGRV(004) TYPE C,  "Matl grp pack matls
        BISMT(018) TYPE C,  "Old material number
        WRKST(048) TYPE C,  "Basic material
        PROFL(003) TYPE C,  "DG indicator profile
        KZUMW(001) TYPE C,  "Environmentally rlvt
        BSTME(003) TYPE C,  "Order unit
        VABME(001) TYPE C,
        EKGRP(003) TYPE C,  "Purchasing group
        XCHPF(001) TYPE C,  "Batch management
        EKWSL(004) TYPE C,  "Purchasing key value
        WEBAZ(003) TYPE C,  "GR processing time
        MFRPN(040) TYPE C,  "Manufacturer part number
        MFRNR(010) TYPE C,  "Manufacturer number
        VPRSV(001) TYPE C,  "Price control indicator
        STPRS(015) TYPE C,  "Standard price
        BWPRH(014) TYPE C,  "Commercial price1
        BKLAS(004) TYPE C,  "Valuation class
        bwkey(004) type c,
      END OF LSMW_MATERIAL_MASTER.
                   INTERNAL TABLE DECLARATIONS                         *
    *to store the input data
    DATA:
      BEGIN OF it_matmaster OCCURS 0.
            INCLUDE STRUCTURE LSMW_MATERIAL_MASTER.
    DATA:
      END OF it_matmaster.
    *for material description
    DATA:BEGIN OF IT_MATERIALDESC OCCURS 0.
         INCLUDE STRUCTURE BAPI_MAKT .
    DATA:END OF IT_MATERIALDESC.
    *FOR gross wt
    data: begin of it_uom occurs 0.
          include structure BAPI_MARM.
    data:end of it_uom.
    DATA: BEGIN OF IT_UOMX OCCURS 0.
          INCLUDE STRUCTURE BAPI_MARMX.
    DATA:END OF IT_UOMX.
    data:begin of it_mean occurs 0.
         include structure bapi_mean.
    data:end of it_mean.
    DATA:BEGIN OF IT_MLTX OCCURS 0.
         INCLUDE STRUCTURE BAPI_MLTX.
    DATA:END OF IT_MLTX.
    *to return messages
    DATA:BEGIN OF IT_RETURN OCCURS 0.
         INCLUDE STRUCTURE BAPIRET2.
    DATA:END OF IT_RETURN.
    SELECTION SCREEN                                                    *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.
    PARAMETERS:P_FILE LIKE RLGRAP-FILENAME OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1 .
    AT SELECTION SCREEN                                                  *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          PROGRAM_NAME  = SYST-CPROG
          DYNPRO_NUMBER = SYST-DYNNR
          FIELD_NAME    = 'P_FILE'
        IMPORTING
          FILE_NAME     = P_FILE.
                   TO UPLOAD THE DATA                                  *
    START-OF-SELECTION.
    V_FILE = P_FILE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = V_FILE
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      tables
        data_tab                      =  IT_MATMASTER
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ELSE.
    *DELETE IT_MATMASTER INDEX 1.
    ENDIF.
                   DATA POPULATIONS                                    *
    LOOP AT  IT_MATMASTER.
    *HEADER DATA
      BAPIMATHEAD-MATERIAL = IT_MATMASTER-MATNR.
      BAPIMATHEAD-IND_SECTOR = IT_MATMASTER-Mbrsh.
      BAPIMATHEAD-MATL_TYPE = IT_MATMASTER-Mtart.
      BAPIMATHEAD-BASIC_VIEW = 'X'.
      BAPIMATHEAD-PURCHASE_VIEW = 'X'.
      BAPIMATHEAD-ACCOUNT_VIEW = 'X'.
    *CLIENTDATA
      BAPI_MARA-MATL_GROUP = IT_MATMASTER-MATKL.
      BAPI_MARA-DIVISION = IT_MATMASTER-SPART.
      BAPI_MARA-DSN_OFFICE = IT_MATMASTER-LABOR.
      BAPI_MARA-PROD_HIER = IT_MATMASTER-PRDHA.
      BAPI_MARA-PUR_STATUS = IT_MATMASTER-MSTAE.
      BAPI_MARA-ITEM_CAT = IT_MATMASTER-MTPOS_MARA.
      BAPI_MARA-NET_WEIGHT = IT_MATMASTER-NTGEW.
    BAPI_MARA-PO_UNIT = 'KG'.
    BAPI_MARA-UNIT_OF_WT_ISO = 'KG'.
      BAPI_MARA-UNIT_OF_WT = 'KG'.
    BAPI_MARA-PACK_VO_UN = 'KG'.
    BAPI_MARA-BASE_UOM_ISO = 'KG'.
      bapi_mara-size_dim = it_matmaster-groes.
      BAPI_MARA-MAT_GRP_SM = IT_MATMASTER-MAGRV.
      BAPI_MARA-OLD_MAT_NO = IT_MATMASTER-BISMT.
      BAPI_MARA-BASE_UOM = IT_MATMASTER-MEINS.
      BAPI_MARA-BASIC_MATL = IT_MATMASTER-WRKST.
      BAPI_MARA-HAZMATPROF = IT_MATMASTER-PROFL.
      BAPI_MARA-ENVT_RLVT = IT_MATMASTER-KZUMW.
      BAPI_MARA-PO_UNIT = IT_MATMASTER-BSTME.
      BAPI_MARA-VAR_ORD_UN = IT_MATMASTER-VABME.
      BAPI_MARA-PUR_VALKEY = IT_MATMASTER-EKWSL.
      BAPI_MARA-MANU_MAT = IT_MATMASTER-MFRPN.
      BAPI_MARA-MFR_NO = IT_MATMASTER-MFRNR.
      BAPI_MARAX-MATL_GROUP = 'X'.
      BAPI_MARAX-DIVISION = 'X'.
      BAPI_MARAX-DSN_OFFICE = 'X'.
      BAPI_MARAX-PROD_HIER = 'X'.
      BAPI_MARAX-PUR_STATUS = 'X'.
      BAPI_MARAX-ITEM_CAT = 'X'.
      BAPI_MARAX-NET_WEIGHT = 'X'.
      BAPI_MARAX-UNIT_OF_WT = 'X'.
    BAPI_MARAX-UNIT_OF_WT_ISO = 'X'.
      bapi_maraX-size_dim = 'X'.
      BAPI_MARAX-MAT_GRP_SM = 'X'.
      BAPI_MARAX-OLD_MAT_NO = 'X'.
      BAPI_MARAX-BASE_UOM = 'X'.
      BAPI_MARAX-BASE_UOM_ISO = 'X'.
      BAPI_MARAX-BASIC_MATL = 'X'.
      BAPI_MARAX-MFR_NO = 'X'.
      BAPI_MARAX-HAZMATPROF = 'X'.
      BAPI_MARAX-ENVT_RLVT = 'X'.
      BAPI_MARAX-PO_UNIT = 'X'.
    BAPI_MARAX-PACK_VO_UN = 'X'.
      BAPI_MARAX-VAR_ORD_UN = 'X'.
      BAPI_MARAX-PUR_VALKEY = 'X'.
      BAPI_MARAX-MANU_MAT = 'X'.
      BAPI_MARAX-MFR_NO = 'X'.
    *PLANT DATA
      BAPI_MARC-PLANT = IT_MATMASTER-WERKS.
      BAPI_MARC-PUR_GROUP = IT_MATMASTER-EKGRP.
      BAPI_MARC-BATCH_MGMT = IT_MATMASTER-XCHPF.
      BAPI_MARC-GR_PR_TIME = IT_MATMASTER-WEBAZ.
      BAPI_MARCX-PLANT = IT_MATMASTER-WERKS.
      BAPI_MARCX-PUR_GROUP = 'X'.
      BAPI_MARCX-BATCH_MGMT = 'X'.
      BAPI_MARCX-GR_PR_TIME = 'X'.
    *VALUATION DATA
      BAPI_MBEW-PRICE_CTRL = IT_MATMASTER-VPRSV.
      BAPI_MBEW-STD_PRICE = IT_MATMASTER-STPRS.
      BAPI_MBEW-COMMPRICE1 = IT_MATMASTER-BWPRH.
      BAPI_MBEW-VAL_AREA = IT_MATMASTER-BWKEY.
      BAPI_MBEW-VAL_CLASS = IT_MATMASTER-BKLAS.
      BAPI_MBEWX-PRICE_CTRL = 'X'.
      BAPI_MBEWX-STD_PRICE = 'X'.
      BAPI_MBEWX-COMMPRICE1 = 'X'.
      BAPI_MBEWX-VAL_AREA = IT_MATMASTER-BWKEY.
      BAPI_MBEWX-VAL_CLASS = 'X'.
      IT_MATERIALDESC-LANGU = 'EN'.
      IT_MATERIALDESC-MATL_DESC = IT_MATMASTER-MAKTX.
      append IT_materialdesc.
      IT_UOM-GROSS_WT = IT_MATMASTER-BRGEW.
      IT_UOM-ALT_UNIT = 'KG'.
      IT_UOM-ALT_UNIT_ISO = 'KG'.
        IT_UOM-UNIT_OF_WT = IT_MATMASTER-GEWEI.
        APPEND IT_UOM.
      IT_UOMX-GROSS_WT = 'X'.
      IT_UOMX-ALT_UNIT = 'KG'.
      IT_UOMX-ALT_UNIT_ISO = 'KG'.
      IT_UOMX-UNIT_OF_WT = 'X'.
      APPEND IT_UOMX.
      it_mean-unit = 'KD3'.
      append it_mean.
      it_mltx-langu = 'E'.
      it_mltx-text_name = it_matmaster-matnr.
      APPEND IT_MLTX.
      CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
        EXPORTING
          headdata                   = BAPIMATHEAD
          CLIENTDATA                 = BAPI_MARA
          CLIENTDATAX                = BAPI_MARAx
         PLANTDATA                  =  BAPI_MARc
         PLANTDATAX                 =  BAPI_MARcx
        FORECASTPARAMETERS         =
        FORECASTPARAMETERSX        =
        PLANNINGDATA               =
        PLANNINGDATAX              =
        STORAGELOCATIONDATA        =
        STORAGELOCATIONDATAX       =
         VALUATIONDATA              = BAPI_MBEW
         VALUATIONDATAX             = BAPI_MBEWX
        WAREHOUSENUMBERDATA        =
        WAREHOUSENUMBERDATAX       =
        SALESDATA                  =
        SALESDATAX                 =
        STORAGETYPEDATA            =
        STORAGETYPEDATAX           =
        FLAG_ONLINE                = ' '
        FLAG_CAD_CALL              = ' '
       IMPORTING
         RETURN                     = IT_RETURN
       TABLES
         MATERIALDESCRIPTION        = IT_MATERIALDESC
         UNITSOFMEASURE             = IT_UOM
         UNITSOFMEASUREX            = IT_UOMX
         INTERNATIONALARTNOS        = it_mean
        MATERIALLONGTEXT           = IT_MLTX
        TAXCLASSIFICATIONS         =
        RETURNMESSAGES             =
        PRTDATA                    =
        PRTDATAX                   =
        EXTENSIONIN                =
        EXTENSIONINX               =
    read table it_return with key TYPE = 'S'.
    if sy-subrc = 0.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        WAIT          =
      IMPORTING
        RETURN        =
    *else.
    *CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'
    IMPORTING
      RETURN        =
    endif.
    WRITE:/    IT_RETURN-TYPE,
            2   IT_RETURN-ID,
            22  IT_RETURN-NUMBER,
            25  IT_RETURN-MESSAGE.
               IT_RETURN-LOG_NO,
               IT_RETURN-LOG_MSG_NO,
               IT_RETURN-MESSAGE_V1,
               IT_RETURN-MESSAGE_V2,
               IT_RETURN-MESSAGE_V3,
               IT_RETURN-MESSAGE_V4,
               IT_RETURN-PARAMETER,
               IT_RETURN-ROW,
               IT_RETURN-FIELD,
               IT_RETURN-SYSTEM.
    ENDLOOP.
    This will Create Mass .

  • What are the views/fields that we can't change by Mass maintenance of MMR(material master record)?

    Hello friends,
              I would like to know the fields/views that we can not change by using mass maintenance of MMR if there are open PO for that particular material in concern. Likewise there was a question in SAP certification exam having options: "base unit of measure", "material type" and so on....

    in general you can change any field that can be changed in MM02. if the field is grayed then you cannot. e.g. if you make use a MRP profile. and in this profile the maintenance of those fields is disabled then you cannot do it MM17 either.

  • Time Capsule vs. Other Mass Storage Device

    I am a Mac newby seeking advice.  I recently purchased the MBA below to replace my personal PC.  My previous setup was a desktop with plenty of storage to handle my needs (including iTunes) and I backed up data directly to an external hard drive (I know pretty basic).
    After purchasing the MBA, I realized I do not have enough internal hard drive space to store all of my music and my current external drive is too small for all the media and backup of the MBA.  Also, the point of the MBA is to be mobile. Also, I would like my Sonos music system (with an application similar to iTunes) to be able to access the music library.  Lastly, I have far to many songs purchase outside of iTunes to use iTunes Match.  Therefore, I started seeking wireless alternatives to store my music and backup my MBA.  Although an NAS would probably be ideal, I have found out through trial and error that the basic systems do not work with a MAC and the only ones with a prayer are the more expensive ones (i.e. Synology and QNAPS).  Therefore, I have decided to pursue a more simplified approach.
    My Internet and TV provider is CenturyLink.  Their router is very basic with only 802.11g speed and without any USB ports.  The following configuration has been suggested to my by some more experienced Apple users to provide wireless data access and backup.
    Requesting CenturyLink provide me with a basic modem.
    Purchasing an Airport Extreme (or similar wireless n router with a USB port).
    Connecting the Airport Extreme (or other wireless router) to the basic modem.
    Purchasing a Time Capsule (or other mass storage device).
    Partitioning it using either the specific one for the Time Capsule (or Disk Utility for other mass storage devices) to provide one volume for my media and one for backup using Time Machine.
    Moving the media from my old external drive (which is catalogued with folders for each artist, subfolders for each album and the songs in the subfolders) by connecting the old mass storage device and Time Machine to my MBA and using Finder to do this (see the questions below regarding this).
    Moving/cataloging the media from the Time Capsule (or other mass storage device) by dragging it into the iTunes window.
    Connecting the Time Capsule (or other mass storage device) to the USB port of the Airport Extreme (or other wireless router).
    Setting up Time Machine to use the volume partitioned for backups.
    Possibly having to move cataloging files from my iTunes, Music folder to the external drive and pointing iTunes to the Time Capsule (or other mass storage device) through Preferences, Advanced to access the music.
    Overall, I am concerned with the total cost.  I just spent a lot of money, not only purchasing the MBA, but also the iPad 3 and upgrading my cell phone to the iPhone 5 (I skipped the 4).  It seems that by the time I purchase an Airport Extreme and a Time Capsule, I could also have just bought a NAS like the Synology 213 with 2 X 1TB drives, connect it to the existing wireless router via ethernet connections and have a more comprehensive solution.  Based upon these instructions and cost concerns (and bad experience), I have several questions related to this.
    Does this configuration and these instructions make sense, including those for moving and accessing my music files through iTunes (i.e. will it work)?
    Are both the Airport Extreme and Time Capsule necessary to make this work easily or can I purchase alternatives to either or each and if so, what is recommended?  If they are necessary, would you recommend doing this or buying one of the aforementioned NAS's to a Mac newby?
    Given the file structure for my music on the old external mass storage drive, can I simply move the folders over with the subfolders containing the musice files in them or do I have to literally enter into each subfolder, select all and move them subfolder by subfolder (i.e. album by album)?
    Am I missing something totally better and easier solution?
    I would be massively grateful to anyone who can provide some good answers, advice and guidance.  I am about to pull my hair out!!!!
    Thanks,
    WinoSkiBoy

    They both said about the same thing except the Apple Store business tech said to buy an Airport Extreme and just attach a partitioned external third party HDD to it.
    Except that is flakey for TM backup..
    http://pondini.org/TM/Airport.html
    And slow as the proverbial dog.. although I guess the dog is old.
    And totally inadequate as a media store or server.
    Apple's pricing is pretty cunning.. I really doubt you are going to find a cheaper unit to do both wireless and TM backups than the TC. And it is a perfectly good device to do that. It is good to have in the network. And Apple sure make their products work with other apple products.. so it does work better than other similar cost products.. although you miss a lot of features that Apple predecided for you.
    But I don't think anyone has the ideal solution to your problem. Apple believe in cloud. And if you have fibre internet that will work really well.. forks out your money and apple will store your stuff. But for the real world most of us do not have internet connection even a fraction of speed required. And it can be another decade before we will. We need a box that is half way between a TC and media PC, a file store and a NAS. Will Apple make one.. ?? I don't think so.. They believe in cloud..
    You can make the missing link one yourself. If you are so inclined.. A HP microserver running freeNAS can do TM backups and makes an excellent media store because it can do AFP. You can put a graphics card in it and plug it into your TV. You can use it with a airport extreme. But you will need a degree in Geek.. !! The synology is a preconfigured form of that.. No Geekdom required. Synology seems to have the upper hand.. this week.
    Let me make a suggestion.. Figure out if you are going to jump into the Apple way of doing stuff.. which is basically itunes on computer as a server.. and the whole network.. working as part of this.. so any media is pushed from a store in itunes.. whether local or internet..  if you want to do it that way.. getting something other than the air to run itunes is well worth it. That is what a NAS cannot do.. it cannot be a media player.
    Or you do hybrid.. ie you don't use put all your media into itunes, you use a bit of this and bit of something else.. As long as that can play files.. stored on NAS or even on the TC without the itunes requirement.. It won't be as pretty. But it isn't hard to get working.. as long as you accept this isn't going to be the perfect Apple solution.

  • Problemas para download do XML em massa no GRC NFe 10.0

    Boa tarde
    Fizemos o upgrade de versão do GRC 1.0 para 10.0 e entramos em Produção na segunda-feira, 19/02.
    Estamos tendo dificuldades para efetuar o dwonload em massa dos arquivos. Temos um programa Z que parou de funcionar e quando estamos indo pela opção do Menu
    WDY_APPLICATION - Download Archived XML nem todas as notas estão sendo exportadas
    Ex.: para um determinado CNPJ temos mais de 240 notas de saída aprovadas e só estamos conseguindo exportar 12 arquivos XML
    Alguém tem alguma idéia/dica para a solução?
    Temos que enviar os XMLs em atraso e fazendo o download individual está sendo inviável.
    Grata,
    Denise

    Olá Henrique
    Identificamos o problema através de debug da função /XNFE/OUTNFE_XML_MASS_DATA.
    O parâmetro de seleção está invertido. Se digitarmos o emissor no lugar do recebedor o programa funciona.
    É erro no standard. O curioso é que ninguém reportou esse erro. Não devem estar usando o programa de download em massa.
    De qualquer forma obrigada pela ajuda.
    Denise

  • CTe Entrada em massa

    Boa tarde.
    Estamos implementando ECC e usando a solução disponibilizada pela SAP de trabalhar com o CTe como um mestre de serviço.
    As notas foram aplicadas e tudo esta funcionando (Contabilização da Folha/MIRO e escrituração), porém é preciso registrar a folha e a MIRO para cada CTe recebido pela empresa.
    Nosso problema é que recebemos um volume grande de CTe,  gostaria de saber se existe alguma forma standard de realizar a entrada em massa ou outra de lançar os CTe de forma que escriturem nos livros fiscais e consequentemente gerem o contas a pagar
    ao fornecedor de frete.
    Obrigada
    Carolina Lapetina
    Grupo Libra

    conforme key-user da empresa a qual trabalho esta necessidade é para atender conforme abaixo :
    Revisão de Vida Útil, Valor Residual e Custo Atribuído (CPC 27 e ICPC 10)
    O objetivo dos pronunciamentos é estabelecer o tratamento contábil para ativos imobilizados, de forma que os usuários das demonstrações contábeis possam discernir a informação sobre o investimento da entidade em seus ativos imobilizados, bem como suas mutações.
    Resumindo, o CPC's 27 etc, foram aplicado no passado, resultando custo atribuído na area XX, e residual normal com nova vida útil conforme laudo para área XY, então
    è necessário fazer a revisão das vidas úteis anualmente, ou quando necessário.
    muito obrigado pela atenção.

  • Service Desk - need IB52 iBase "partner assignment" mass change

    Dear Ladies and Gentlemen,
    We are using SAP Service Desk in Solution Manager 7.0 EhP-1.
    There are many satellite systems connected to SolMan using Service Desk.
    Of course all of them are setup in SMSY, have a valid iBase entry in IB52, and have the "sold-to-party" assigned in IB52 -> Goto -> Partner.
    Now we need to assign a new business partner as "sold-to-party" for all these systems.
    We do not want to rename the current business partner, but have to assign a new business partner to not influence existing tickets.
    Thus, manually we would need to go to IB52 and change the partner assignment in IB52 -> Goto -> Partner and enter a new value for all the systems.
    Q: is there a way to perform a mass change for the "sold-to-party" partner assignment of the iBase entries? Is it possible to update or replace all or multiple existing partner assignments in iBase?
    Many thanks,
    Peter

    Hi Christian,
    Can you please tell me how did you create iBase for NON-SAP Systems? I know it is IB51/IB52? I am not sure what do you do after that? For an example I went to IB51 and create iBase number 403? now I go to IB52 and put the 403 in the installed Base field and click on Green arrrow to go inside correct? what do I do after that? where is the options to create the iBase name call "Network Group" ?
    How did you solve your issue for not showing when you went to F4 in NOTIF_CREATE? was that authorization error? if yes, do you know the object name?
    any help is much much appreciated
    Thanks in Advance
    Kumar

  • Parallel processing of mass data : sy-subrc value is not changed

    Hi,
    I have used the Parallel processing of mass data using the "Start New Task" . In my function module I am handling the exceptions and finally raise the application specific old exception to be handled in my main report program. Somehow the sy-subrc is not getting changed and always returns 0 even if the expection is raised.
    Can anyone help me about the same.
    Thanks & Regards,
    Nitin

    Hi Silky,
    I've build a block of code to explain this.
      DATA: ls_edgar TYPE zedgar,
            l_task(40).
      DELETE FROM zedgar.
      COMMIT WORK.
      l_task = 'task1'.
      ls_edgar-matnr = '123'.
      ls_edgar-text = 'qwe'.
      CALL FUNCTION 'Z_EDGAR_COMMIT_ROLLBACK' STARTING NEW TASK l_task PERFORMING f_go ON END OF TASK
        EXPORTING
          line = ls_edgar.
      l_task = 'task2'.
      ls_edgar-matnr = 'abc'.
      ls_edgar-text = 'def'.
      CALL FUNCTION 'Z_EDGAR_COMMIT_ROLLBACK' STARTING NEW TASK l_task PERFORMING f_go ON END OF TASK
        EXPORTING
          line = ls_edgar.
      l_task = 'task3'.
      ls_edgar-matnr = '456'.
      ls_edgar-text = 'xyz'.
      CALL FUNCTION 'Z_EDGAR_COMMIT_ROLLBACK' STARTING NEW TASK l_task PERFORMING f_go ON END OF TASK
        EXPORTING
          line = ls_edgar.
    *&      Form  f_go
    FORM f_go USING p_c TYPE ctype.
      RECEIVE RESULTS FROM FUNCTION 'Z_EDGAR_COMMIT_ROLLBACK' EXCEPTIONS err = 2.
      IF sy-subrc = 2.
    *this won't affect the LUW of the received function
        ROLLBACK WORK.
      ELSE.
    *this won't affect the LUW of the received function
        COMMIT WORK.
      ENDIF.
    ENDFORM.                    "f_go
    and the function is:
    FUNCTION z_edgar_commit_rollback.
    *"*"Interface local:
    *"  IMPORTING
    *"     VALUE(LINE) TYPE  ZEDGAR
    *"  EXCEPTIONS
    *"      ERR
      MODIFY zedgar FROM line.
      IF line-matnr CP 'a*'.
    *comment raise or rollback/commit to test
    *    RAISE err.
        ROLLBACK WORK.
      ELSE.
        COMMIT WORK.
      ENDIF.
    ENDFUNCTION.
    ok.
    In your main program you have a Logical Unit of Work (LUW), witch consists of an application transaction and is associated with a database transaction. Once you start a new task, your creating an independent LUW, with it's own database transaction.
    So if you do a commit or rollback in your function the effect is only on the records your processing in the function.
    There is a way to capture the event when this LUW concludes in the main LUW. That is the PERFORMING whatever ON END OF TASK. In there you can get the result of the function but you cannot commit or rollback the LUW from the function since it already have implicitly happened at the conclusion of the funtion. You can test it by correctly comment the code I've supplied.
    So, if you  want to rollback the LUW of the function you better do it inside it.
    I don't think it matches exactly your question, maybe it lead you on the right track. Give me more details if it doesn't.
    Hope it helps,
    Edgar

  • How do I mass delete email from Trash folder?

    Is there an easy way to mass delete the emails from the trash folder?

    In your settings>mail>account>advanced, there is a way you can set it to self delete after 1 day. This is the earliest setting to self delete the mails. If you need to delete all of them right away. Just open one of the mails and press the trash can icon at bottom. It automatically opens the next mail and you can just sit there thumbing the trash can until all are gone. Works for me, both ways.

  • Mass Update Column In Tabular Form

    Hi,
    I'm trying to create a tabular form that has a mass update column function. i.e. the tabular form will be displayed as normal but at the top of certain columns will be a text box or lov and what ever is entered into those boxes will be cascaded into the empty values in that column without refreshing the page.
    Hope that makes sense.
    I've search the forum but cant find reference, is this possible.
    Thanks Andy

    Hi,
    Just wondering if anyone had any thoughts on this.
    I can get the text to populate another cell e.g.
    http://mlw-mis-2/dev/apex/f?p=174:4
    But how can i get it to reference a column, this is what I'm using to reference another item
    onKeyUp="f_getTextUpper('P4_COL1','P4_TEXT')"
    and I've tried changing the P4_TEXT to other things like
    apex_application.g_f03 (vRow)
    apex_application.g_f03 (i)
    apex_application.g_f03
    But with no luck

  • PCI USB Card Does NOT Work With Mass Storage Devices

    I have a StarTech PCI card with 6 USB 2.0 ports that I inserted in my 500 MHz (overclocked) B&W Power Mac G3. It works great for any USB device EXCEPT for any hard drive or DVD/CD-RW drive. I checked the system.log file for errors. Nothing shows up in System Profiler or Disk Utility, obviously. Here's what it consistently says:
    Dec 16 23:33:28 Geoff-Myers-Power-Mac-G3 kernel[0]: USBF: 674.997 [0xf9c000] The IOUSBFamily is having trouble enumerating a USB device that has been plugged in. It will keep retrying. (Port 6 of hub @ location: 0x62000000)
    Dec 16 23:33:33 Geoff-Myers-Power-Mac-G3 kernel[0]: USBF: 679.977 [0xf9c000] The IOUSBFamily was not able to enumerate a device.
    I'm running the latest version of Mac OS X Tiger 10.4.3. What is wrong? StarTech doesn't have a driver, but nothing should be necessary. Is there a 3rd party USB Mass Storage Device driver that might work better than the Apple generic driver? PLEASE HELP ME! I cannot live with USB 1.1.

    Some users have reported problems with certain brand cards and their controller chipsets, so trying a different card may resolve the problem. Keyspan and Macally are often mentioned as being more "Mac-friendly" than some other lessser-known brands or generic cards. Does the card have a mini-power port to supplement the power requirements? With USB 2.0, each port is on a separate bus, so a card with six ports should have one. To minimize the overall draw on the available power, I prefer to install USB cards with as few ports as are needed.

  • Custom fields not getting updated in Mass Maintenance-MM17

    Hi,
    I have created a custom field in MARC table and the data is getting updated to the MARC table through MM01/MM02 but it is not getting updated by MM17.  I have checked the notes 44410, 576160, 414020 and 116311.  I have done the following changes as per the sap notes.
    1. Created a custom segment ZE1MARCM by copying the standard segment E1MARCM and added the custom field in that  
        segment.
    2. I have extended the IDOC 'MATMAS03' and added the custom segment ZE1MARCM to E1MARAM.
    3. Created a new entry in we82 and provided the extension type 'ZMATMAS03' and release '701'.
    4. Adjusted the partner profile in we20 for matmas with port and providing the extension idoc type.
    5. Added the custom field in the table MASSFLDLST.
    6. Implemented the code in BADI 'MG_MASS_NEWSEG' and exits 'EXIT_SAPLMV01_002' , 'EXIT_SAPLMV02_002' as per the 
        sap notes.
    The custom field is not getting updated through mass maintenance.  Please let me know if i have missed anything?
    Thanks,
    Geeta

    I had this same question several years ago. Please check my answer at Initialize MARC Custom Fields Using MM17 Does Not Work

  • Nokia N8, how do i save messages to mass memory/me...

    cant seem to find an option on my N8 as to where i can save my received texts. used to be in messaging----options----settings----text message or other.    checked both of them and cant find an option to save them to alternative memory???? anyone help????

    I'd like to know how to do the same, to save to mass memory or memory card,
    Check attached snapshot of phone memory details.
    Nothing is as it seems
    If I've helped , click the Star under my name
    Attachments:
    Scr000005.jpg ‏23 KB

Maybe you are looking for

  • How do I know why it says my phone is blocked?

    I am on holidays in Uruguay with my two iPhones. One it has the sim card from Europe working fine. The iPhone 4s, I'd like to put a local sim card and it tells me to contact my server as the phone is blocked. I bought the phone in the beleive it wasn

  • New bug introduced with Keynote 5.2 - Set timing and order of each build has stopped working properly on Smart Builds

    Hi there, We're heavy users of Keynote and have noticed a new bug has recently been introduced into something that was stable. I think it has emerged in Keynote 5.2, could have been Keynote 5.1 also. It's in the area of Set Timing and Order of each b

  • How to resrict number of line items in IDOC  Payment file

    Hai I had an issue where user wants to restrict the number of line items in the payment IDOC file. Is there any possibilty to restict these number of line items to 6. Because the user has some reporting problem with the bank regarding the IDOC file K

  • Substitution variable IN MAXL

    hi, following maxl script is for ASO alter database APP.DB clear data in region '{CrossJoin({StrTOMbr(&CURMONTH)},{EOP,ABC})}'physical; above script working if CURMONTH="jan" but , If CURMONTH= "jan","feb" "mar" then its giving error. any advice

  • BIP Desktop version vs. EBS version

    I am experiencing unpredictable results between how Word 2007 (with 10.1.3.3.0) renders my Template and how EBS (BIP v5.6.2) renders the same Template (content above start:body on first page missing). If I am on v5.6.2 in EBS, do I have to use the De