Outbound Idocs are not generated for some material number MATNR

Hi all,
We are using a custom program to process the IDOCS to some other thirdparty systems.
but the problem is the IDOCS are not generated and also we can't find the IDocs in TRFC also.
But it is working for the other matnr.
I have already debug the custom program, and it is taking all the inputs correctly.
plz guide me guys

Hi Praveen,
This is the code I am using
LOOP AT GS-MATNR_WERKS ASSIGNING <MATNR_WERKS>
GS-COUNT = GS-COUNT + 1.
    GS-TEXT  = 'IDOC for Material & & (& of &) is just being created'(001).
    REPLACE '&' WITH <MATNR_WERKS>-MATNR INTO GS-TEXT.
    REPLACE '&' WITH <MATNR_WERKS>-WERKS INTO GS-TEXT.
    REPLACE '&' WITH GS-COUNT            INTO GS-TEXT.
    REPLACE '&' WITH GS-LINES            INTO GS-TEXT.
    CONDENSE GS-TEXT.
    CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
         EXPORTING
              TEXT = GS-TEXT
validation code for the MATNR & WEKRS
CALL FUNCTION 'Z_MASTERIDOC_DISTRIB_ZCOPEBOM'
         EXPORTING
              MATNR        = <MATNR_WERKS>-MATNR
              WERKS        = <MATNR_WERKS>-WERKS
              MESSAGE_TYPE = P_MESTYP
GS-CREATED = GS-CREATED + 1.
    GS-COMMIT  = GS-COMMIT + 1.
    IF GS-COMMIT >= 100.
      GS-COMMIT = 0.
      COMMIT WORK.
    ENDIF

Similar Messages

  • Lines are not generated for holidays and sundays

    Hi
    creating a sale order shcedule lines are not generated for sunday for a particular plant .
    Schedule lines are generated for subsequent monday only.
    the plant calander  is also  correct
    with regards
    partha

    Hi
    I would really double check the factory calendar ans the  of the plant and sales organisation
    regards,
    Sidi

  • Palnning entry not generated for the material

    Hi,
      We RUN the MRP with MD01, but for for some material the PR are not generated,  with MD01 I checked the palnning file with MD21 there is no entery for that material but when we RUN single level MRP with MD03 for that material it creates the PR so what can be the problem as for some material the PR are not generated with MD01 but it generates with MD03  all MRP data is proper in material master.
    regards,
    zafar

    Hi,
    Generally the planning file contains a list of all materials which has a valid MRP type in material master and relevant to the planning run. As soon as a material master record is created with valid MRP type, it will be automatically included in the planning file. You can find it in transaction code MD21.Whenever system find MRP relevant transactions i.e Stock updation,Receipt,Issues etc it will be included automatically in Planning file with appropriate indicator(NETPL,NETCH etc.).
    Only in some exceptional cases, it is necessary to make an entry in the planning file manually.For an example after run MRP ,that material relevant Indicator will be removed. But still if you want to force it for next MRP run,you can include it manually..
    And Please also check in material master entries properly maintained or not.
    Kuber

  • Line items are not appearing for some users

    Hi
    In one module pool program some line items are not appering for specific users. For Ex: Out of 5 line items user1 is able to see only 3 and user2 able to see all the line items. what might be the reason.
    Regards
    John.

    Hi,
    What do you mean by line items? Are you talking about screen fields in your module pool program or output of the program?
    Please clarify your issue.
    Regards,
    RS

  • Outbound IDocs are not visuible in Middleware system(SeeBeyond)

    Hi Experts,
    We need need your expertise help on this issue.
    Issue:
    The Outbound IDocs which are in status 12 in SAP system are not visuible in Middleware system(SeeBeyond) for customized message type( forecast -ZFOSHT)
    If we create a IDoc by using customized program, IDoc(eg.0000000012345678) is successfully created and the status of IDoc is 12. but not visible in Seebeyond.
    but If we are re sending the same IDoc(0000000012345678)  through WE19(IDoc creation)  without changing any thing,the newely created IDoc reached to the Seebeyond.
    Please look the issue and help me on this.
    Raghavendrarao.R
    +91 9739006564

    Hi,
    After your Function module for IDoc creation either it is Z function module or standard one "MASTER_IDOC_DISTRIBUTE" write these
    CALL FUNCTION 'DB_COMMIT'.
    CALL FUNCTION 'DEQUEUE_ALL'.
    COMMIT WORK.
    This should solve your problem.

  • Spool not generated for some conditions

    <b>Requirement :</b>Developing a data transfer program. Approach used is Call Transaction in S mode.
    In some cases(if Receiving Storage Location is PKGX) I need to load only MB11 and other cases I need to load 3 transaction sequentially – MB11 creates Mat. Doc. No.  which in turn passed to the LT06 to create TO(Transfer Order) and the TO passed to LT12 to confirm TO.
    <b>Problem –</b> When I run it in background(it generates report in foreground), job finished successfully, data is loaded into system and spool status shown as error ONLY IF ALL THE 3 TRANSACTIONS CALLED AND LOADED.
    <u>I debugged the Batch Job(using t-code JDBG) line by line output,contents are writen to output but at the end spool goes into error and report is not visible.</u>
    In all other cases like messages/outputs due to record not correct  or/and  only MB11 is to be processed, spool is generated with status Waiting and report is visible.
    <b>Statement at top –</b>
    REPORT  ZL6C_LOAD_INVENTORY_WM_SLOC
            NO STANDARD PAGE HEADING
            MESSAGE-ID ZOLSC_AS
            LINE-COUNT 65
            LINE-SIZE  148.
    <u>It works if I set line-size as 132 .</u>
    To overcome this I used FM GET_PRINT_PARAMETER with various cominations of parameter passed but it doesn’t work –
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
    COPIES                 = L_C_ONE
           DEPARTMENT             = L_C_SYSTEM
           DESTINATION            = L_C_LOCL
           EXPIRATION             = L_C_2
           LAYOUT                 = L_C_X_65_255
           LINE_COUNT             = L_C_65
           LINE_SIZE              = L_C_255
           LIST_NAME              = L_LIST_NAME
           LIST_TEXT              = L_LIST_TEXT
           MODE                   = 'BATCH'
           NEW_LIST_ID            = G_C_X
           NO_DIALOG              = G_C_X
           RECEIVER               = L_C_SAP
           RELEASE                = G_C_X
           SAP_COVER_PAGE         = G_C_X
           REPORT                 = SY-REPID
           USER                   = SY-UNAME
    IMPORTING
           OUT_PARAMETERS         = L_PARAMS
    EXCEPTIONS
           ARCHIVE_INFO_NOT_FOUND = 1
           INVALID_PRINT_PARAMS   = 2
           INVALID_ARCHIVE_PARAMS = 3
           OTHERS                 = 4
       IF SY-SUBRC = 0 AND NOT L_PARAMS IS INITIAL.
         NEW-PAGE PRINT ON PARAMETERS L_PARAMS  NO DIALOG NEW-SECTION.
         G_SPOOL = 'X'.
       ENDIF.
    Also when I use this FM under INITIALIZATION then it generates the spool but content written at TOP_OF_PAGE not displayed. When I use it under START-OF-SELECTION, problem still remain same.
    Please Suggest
    thanks
    Sonal

    Hi,
      All spool requests will be stored in TSP01 table
    TSP01 - Spool Requests
    field name for Spool request number is RQIDENT
    Hi,
    Take a look at OSS Note 422136 which states:
    "2. You can only store one spool request even if a step generates several spool requests during processing. The application is responsible for a "spool overview" in this case. If a step generates several spool requests during processing, only one request can be stored. In this case, the application report should issue the number with a message when writing a spool request so that it is then displayed in the job log."
    Also take a look at OSS Note 519059 which further supports the case that you must capture the individual spool numbers as they are being created (i.e. within the job step's program). The note contains the following:
    8] Question: How are the spool requests assigned?
    Answer: The step information is stored in table TBTCP. This has space for exactly one spool request (field LISTIDENT). If a step generates several spool requests during the processing, only one can be stored. In this case the application is responsible for a "spool overview
    <b>Reward points</b>
    Regards

  • Special characters in SBWP dynamic columns are not showing for some users

    Hi experts,
    We have set up a dynamic columns for business workplace. One of the field displays the comments entered by the user. Some users are able to see the values entered perfectly. But for some users, if we enter special characters like @gopal, it is not displaying the value in dynamic column.
    Are there any workflow/user settings need to be changed.
    Thanks
    Gopal

    I had the same issue, you should check the link between AD and CRM, so you could make a new user in AD and connect your CRM account with it, then you should return the old AD account back. It worked for me, try it :)

  • Photos are not syncing for some reason.

    Photos taken on my Treo 755p are not transferring to my computer. They used to transfer to the 'Palm' folder under 'My Pictures' on Windows XP. The transfer used to occur with no problem...but I'm currently not having any luck. I went so far as to backup my Palm files, delete the Palm Desktop software, re-install it and then HotSync the new software with my phone. Does anyone have any tips???
    Your help is much appreciated!
    Thanks!
    Drew
     the
    Post relates to: Treo 755p (Verizon)

    The downloadable versions of Palm Desktop don't include a Media conduit (though I think the 6.2.2 version does, but it's for Vista users).
    You should be using the version that came with your installation disk to get the Media conduit.
    You can use version 6.2.2 on an XP box, but I feel it's a "less-capable" version than 4.2
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Some key figure are not update for movement type 101

    Dear All,
    I have done load for Inventory and now i am finding that for some material the with movement type 101 the key figures are not getting populated, for these materials the values in characteristics is getting populated fine.
    I have loaded the data according to stranded procedure in "How to Load...."
    I have checked the values of material in R3 and it is there.
    Example of the record::
    Material    Plant Movement type  Calender Day    quanity Base Unit
    10101      01       350                     01.02.2006     20             KG
    10101        01       101                     05.07.2006                      KG
    10101         01      101                      10.07.2006                      KG
    The Quantity is not appearing in second and third record.

    Hi,
    Please check whether you have set  ''Rule groups''  at transfermation level . There you can set the conditions like materials having movement type X can be updated to one Key Figure and material having movement type Y can be updated to another Key figure.
    Please check whether you have set this option at transfermation level.
    For example, may be in your case materials from different plants are updating to different key figure.
    Thanks,
    Edited by: kavitha nagandla on Feb 17, 2010 7:19 AM

  • Date fields for info structure S032 are not generated

    Hi Experts,
    I am trying to update set up tables for '02'  using OLI2BW. I excluded some plants from selection and executed the set up. But the job run for few mins and completed with the message "Date fields for info structure S032 are not generated".
    I couldn't see any records in RSA3.
    Please through some light on this issue.
    Points reward for usefull help.
    Please no wild guess.
    Regards,
    -N-

    Did you find out why. I am getting same message.
    Thanks
    Shalini

  • Every movie purchase through iTunes fails to transfer to my iPhone or iPad and the message I get is this: some of the items in the itunes library, including were not copied to the ipad because you are not authorized for them on this computer... help?

    For a couple months now, every movie purchase through iTunes fails to transfer to my iPhone or iPad giving me the error: "some of the items in the iTunes library, including were not copied to the iPad because you are not authorized for them on this computer". I have read many forums about deleting, reinstalling, de-authorizing and authorizing my iMac through the iTunes store. Many suggestions don't work except to rename the movie to *.MP4 in Finder under the iTunes movie directory. I imagine this is a setting or a bug somewhere... any suggestions on how to bypass having to rename the files in Finder? My research into Google suggests this problem dates back to 2007 or so but it is now more prevalent than ever.
    Thanks.

    Try:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases

  • I was trying to sync my itouch with my new mac, and some songs won't download because they are not authorized for this computer. But even after my computer was authorized they still won't sync. How do I fix this?

    I was trying to sync my itouch with my new mac, and some songs won't download because they are not authorized for this computer. But even after my computer was authorized they still won't sync. How do I fix this?

    I have the same problem. It is only with tv shows and only with programs I have downloaded after the software update.
    Apple support sent me the above link too....but it doesn't solve the problem...my computer is authorized and the content is in my library and will play on my Mac air, but it will not sync the tv shows, it keeps saying my computer isn't authorized for it.
    No answers here, but you are definitely not alone with this issue.

  • Change pointers are not generated when creating a material master

    Dear Experts,  
    Change pointers are not generated when creating a material master. 
    However, when a change is made to the already created material, the change pointers are created according the fields in BD52.  
    Am I missing any settings?
    I need to create change pointers immediately when I create the material master in MM01.  
    Please suggest. 
    Regards,
    Shetty

    did you follow the steps given in
    http://help.sap.com/saphelp_nw73/helpdata/en/4a/6dcbe9c95261a3e10000000a421937/frameset.htm

  • Help! Some features of Mac OS X Mavericks are not supported for the disk "Macintosh HD"

    I'm on a MacBook 13" mid 2010, OS X 10.7.5, I want to upgrade to OS X Mavericks. I have searched around for a few days, I find people with the same problem but can't really get the solution for it. I prefer not to reinstall OS X, I want to upgrade. I don't have boot camp or something just a 250 GB HD.
    Well, while I'm trying to upgrade from the download from Apps Store, I open the installer, press continue then accepts the Terms.. then select Macintosh HD and click install, then an warning message shows up "Some features of Mac OS X Mavericks are not supported for the disk "Macintosh HD"
    As I've read the article that is included in the waring message i did try to install anyway because it say that I would be fine, but when i did try to install the installer starts and after like 3 minutes a window appears, Install Failed.
    I've even try to make a installer on USB, both with the command in terminal and with Diskmaker, but it does not help.
    It seems impossible to upgrade. Please Help me.

    First, see the heading "What to do if the installer warns that no Recovery System can be created" in this support article. If you use Boot Camp, back up and delete the Windows partition using Boot Camp Assistant. Try the installation again.

  • Some features of Mac OS X Lion are not supported for the disk

    At the beginning of the installation on my MacBook Pro (early 2008, non-unibody) this alert appeared. The disk is partitioned into three partitions: 1. = Photoshop-scratch, 2. = System, 3. = Bootcamp. It seems that this causes the system-message. What could be the reason for that: The Photoshop-partition or Bootcamp? Is it possible to erase just the PS-partition and then install Lion or do I have to reformat the disk?
    Message was edited by: Stefan Gregor (... **** orthography ...)

    OS X Lion: 'Some features of Mac OS X Lion are not supported for the disk (volume name)' appears during installation

Maybe you are looking for

  • IN_WRONG_TABLESPACE

    We just upgrade out BW system 3.1 Content and upgraded to BI7.0.  Now I am getting the messages: BR0970W Database administration alert - level: WARNING, type: IN_WRONG_TABLESPACE, object: (index) SAPR3.CO2MAPINF~0, value: PSAPEL700D BR0970W Database

  • [SOLVED] PekWM themes - the root menu

    Is it possible to remove/change the 'title bar' of the root menu in pekwm? It is currently the same as all of my windows and I'd like it as something else/removed. Solution: Menus and Windows have different themes, I had them set to the same in the t

  • Is green screen possible with Mini DV?

    Hi. I have a Canon XL2. I want to use some green screen effects in my next doco to liven up some talking heads I am to record. Is MiniDV even an option for this? I have heard the mini dv compression causes too many artifacts. Please assume I have rea

  • Flash animation interactivity for autism nonprofit

    I run a nonprofit that is creating an educational Flash animated video series for children with autism - we are trying to figure out the best way to composite our animation and export our videos so that we can retain the Flash interactivity and be ab

  • How to compile and run servlets

    Can anybody tell me what is the exact path to put the servlet class file in tomcat 4