Field "Mat Slip" (MTSNR) of MB03 is empty after i run BAPI_GOODSMVT_CREATE

Hello,
I'm doing BAPI_GOODSMVT_CREATE for moviment '315'.
After i run the BAPI, when i go to MB03, the field "Mat. Slip" is empty and does not appear on the screen!
I'm using the following parameters:
code= '04'
ITEM:
t_saida-matnr TO t_bapiitem-material,
t_saida-werks TO t_bapiitem-plant,
t_saida-lgort TO t_bapiitem-stge_loc,
t_saida-move_type TO t_bapiitem-move_type,
t_saida-erfmg TO t_bapiitem-entry_qnt,
t_saida-meins TO t_bapiitem-entry_uom,
t_saida-ummat TO t_bapiitem-move_mat,
t_saida-umwrk TO t_bapiitem-move_plant,
t_saida-umlgo TO t_bapiitem-move_stloc,
t_saida-sgtxt TO t_bapiitem-item_text.
HEADER:
t_bapiheader-pstng_date = sy-datum.
t_bapiheader-doc_date = sy-datum.
And when i run the same process with MIGO, the field appears.
Best Regards,
Reginaldo Borges

Hi,
You have to fill in the header:
t_bapiheader-REF_DOC_NO = 123456.   " your nota!
Best regards,
Leandro Mengue

Similar Messages

  • RMAN spool file empty after the run

    DB Version: 10gR2
    OS : SunOs 5.10
    In CATALOG mode, i run scripts in OS path like below
    connect target sys/oracle123 catalog rman/secretpass@rmancat @'/path_in_targetdb_machine/bkp.rcv'bkp.rc looks like below. The backup runs fine and the spool file gets created. But the spool file is empty ! Any idea why?
    spool log to /home/oracle/spool.log
    run{
    crosscheck backup;
    crosscheck archivelog all;
    crosscheck copy;
    crosscheck backup of database;
    crosscheck backup of controlfile;
    delete expired backup;
    delete noprompt expired archivelog all;
    delete noprompt obsolete device type disk;
    run {
    recover copy of database with tag "INCR_BKP";
         backup check logical incremental level 1 format '/bkp_dir/INCR_%d_%u' for recover of copy with tag "INCR_BKP" database;
         backup (archivelog all  format='/bkp_dir/arch_logs/ARCH_%d_%T_%u_s%s_p%p' DELETE ALL INPUT TAG "arch_logs");
         backup format '/bkp_dir/ctrl_file/RMAN_CTL_%s:%t:%p.bkp' current controlfile;
    spool log off;
    exit;

    Hello,
    If you intend to get the logs of the RMAN statement execution, you may instead use the option LOG when you launch RMAN. For instance,
    rman @<rman_script>.rcv LOG <rman_log>.logHope this help.
    Best regards,
    Jean-Valentin

  • Last field not shown in MONI if its empty during content conversion-urgent

    Hi All,
            I have my input structure like
       <RECORDSET>
          <EMPLOYEE>
             <FIRSTNAME>
             <LASTNAME>
             <PHONENUMBER>
          </EMPLOYEE>
       </RECORDSET>
           I have given my sender Conversion parameters like
       Employee.fieldSeparator=*
       Employee.endSeparator='nl'
       Employee.fieldNames=FIRSTNAME,LASTNAME,PHONENUMBER
    It is working fine.But if the value is empty for any of the field it is showing up with empty tag in MONI but for the Last field i.e.,PHONENUMBER if the value is empty the tag is not being shown in MONI. Please help me in this issue.It is very urgent.

    Hi Dinakar,
    I haven't tried but u can check these parameters and give it a try
    <b>NameA.missingLastfields</b>
    If the inbound structure has less fields than specified in the configuration then the XML outbound structure is created as follows:
    &#9675;       ignore
    Outbound structure only contains the fields in the inbound structure
    &#9675;       add
    Outbound structure contains all fields from the configuration; the fields missing in the inbound structure are empty.
    &#9675;       error
    Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
    &#9679; <b>     NameA.additionalLastFields</b>
    If the inbound structure has more fields than specified in the configuration then the XML outbound structure is created as follows:
    &#9675;       ignore
    Outbound structure only contains the fields in the inbound structure
    &#9675;       error
    Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
    The default value is ignore. If you have defined the NameA.fieldFixedLengths parameter, the default value is error.
    <b>NameA.lastFieldsOptional</b> (obsolete)
    You use this parameter to specify whether the last fields can be omitted (YES) or not (NO) in a comma-separated structure.
    If you do not make an entry, the default value is NO.
    Check for details:
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm
    Sachin

  • Table for the field MAT

    Hello,
    I want to know the table name for the field MAT (maintenance Activity type) in PM.
    Searched all the tables in the PM but unable to find the field.
    Basically this MAT should be in shynchronization with the Applicant Number in the PS that is the field ASTNR in PRPS.
    Could anybody help me out.
    Pooja

    See the table AFIH field ILART

  • File Browse is emptied after failed validation

    Why does the file browse text box get emptied after a failed validation? Is there any way to prevent this?
    To further explain, create a form on a page with two page items, a text box and a file browse item, then put a not null validation on the text box. When you submit the page with a null text box, but with a file selected for the browse button, then validation catches and throws the error message back to the user when the page refreshes. However, the file browse text box is emptied, and the user has to reselect the file before resubmitting the page.
    Is this a bug, or just the way it is supposed to work? Any way around it?
    Thanks,
    Kris
    Edited by: kshenn on Oct 31, 2008 7:06 AM

    Hello,
    >> Is this a bug, or just the way it is supposed to work?
    This is not a bug. Actually, it has nothing to do with APEX. The behavior of the file browse item is controlled by the HTML standard, which clears the field for security reasons.
    If you pay close attention to Denes example, you’ll see that even when the validation error page is displayed, the file browse item itself is being cleared. The JavaScript generated file path is the one that retain its value. I don’t have access to Denes code, but I’m assuming that in his uploading procedure he’s using the JavaScript generated path.
    >> Any way around it?
    Where the file browse item is concern, no workaround.
    In your specific case, where the validation you need is “not null”, you can create a JavaScript validation, and fire it before submitting the page (as part of the submit button). That way, the browser will not clear the file browse item, because the page will not be submitted without proper values in your items.
    Regards,
    Arie.

  • I have created PDF from hardcopy by using my scanner. After I run OCR option for my PDF by using Acrobat Pro 9. But "Text-to-speech" functionality of the PDF says that an error message comes up that says the page is empty when I turns on the read out loud

    I have created PDF from hardcopy by using my scanner. After I run OCR option for my PDF by using Acrobat Pro 9. But "Text-to-speech" functionality of the PDF says that an error message comes up that says the page is empty when I turns on the read out loud option in Acrobat. Kindly help me to sortout this problems?

    So I tried generating the same PDFs on two other computers that have Acrobat 9 Pro.  Results were reproduced.  The verdict is:
    - complex PDF files (that is, containing cross-references, tables of contents, and bookmarks) generated by Acrobat 9.x Pro are roughly 2-5x larger than the identical file generated with Acrobat 8.x Pro.
    - different PDF conversion settings make a negligable difference (less than 10% rather than 70-80%).
    - using the "Reduce File Size" or "Optimize PDF" option cuts the file size roughly in half, almost always resulting in a "image downsampling mask" warning message, which requires acknowledgement (that is a problem for batch processing or automation).
    - adding an Acrobat watermark to the file cuts the file size roughly in half.
    - just using Save As to another filename has no effect on file size.
    - generating the PDF in Acrobat 9 with links but no PDF bookmarks still results in the inflated file size.
    - generating the PDF in Acrobat 9 without any links or bookmarks results in approximately the same file size as the Acrobat 8 PDF with full links and bookmarks.
    It appears that Acrobat 9's manner of adding links is what's bloating  the files, and in my case it's probably not related to images or image resolution/print quality.  It's a shame, because Acrobat 9 seems to have made some  improvements to the Review Tracker interface, and a few other bells and  whistles which I haven't really gotten around to exporing yet.  But  unless I find a way to keep my links and the PDF file sizes comparable to what I was  getting with Acrobat 8 Pro, it looks like I'm going to stay with Acrobat 8.

  • I generate file (PDF, HTML, etc) the report is empty but I run in paper

    Hi
    I use oracle Report10g
    When I generate file (PDF, HTML, etc) the report is empty but I run in paper design show data, the report in the paper design show many pages, when generate file show only the information of the margin in the main seccion and the body is empty,
    Thanks

    Thanks Daniel for pointing that out.  Though you answer is helpful but I am not sure if that is what I would want to do.
    The link you provide for csv says "For each report there's an _report.xdo file that contains the XML structure of the report... "   It suggests I modify the .xdo file for each report.  I currently have 16 reports.
    Does it mean I modify the .xdo file for all 16  and what happens if someone creates a 17th report ?
    Also, what if I run the same report using different input parameters will that change the xml structure for the report  and therefore will need me to modify the .xdo again ? (I think it should not change the xml structure so the answer should be "NO" to that, unless I change the structure of the report).
    Finally, the link you provide says after doing what it suggest  "Now log back into BI publisher and select the report. You should now be able to see that CSV is now an option."
    CSV should be an option where ? on what screen/page ?  Maybe PDF is already an option for me that I cant see because I do not know where that option is.
    I was hoping there would be something I could do on the xdo_metadata sheet (in the data constraints section or elsewhere) OR in BI Publisher itself as some property of the report.
    I will try out what you suggest any ways.
    M. Jamal

  • RW_SERVER_JOB_QUEUE  table empty after running the report in 11g

    Hello,
    I set up Job StatusRepository in our environment ( Fusion Middleware 11.1.1.4 Win 2008 x32) as explained in Oracle Support note "How to Setup jobStatusRepository Feature in Reports 11g? [ID 858200.1]"
    The table RW_SERVER_JOB_QUEUE is always empty after running the report.
    I have checked another note "RW_SERVER_JOB_QUEUE table is empty [ID 1200613.1]" but the user who is running the report is the same as the user who " the user name where you run $ORACLE_HOME\reports\admin\sql\rw_server.sql script" so there is no grant problem to write to this table.
    Here is the excerpt of rwserver.conf file:
    <demo:jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <demo:property value="csf:reports:repo" name="dbpassword"/>
    <demo:property value="blvdev" name="dbconn"/>
    <demo:property value="pdmain" name="dbuser"/>
    </demo:jobStatusRepository>
    I n log file there is an error:
    Apr 11, 2012 10:29:13 AM oracle.security.jps.internal.credstore.ssp.CsfWalletManager openWallet
    WARNING: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    Have anybody had the same issue in 11g?
    Thanks,
    Alex

    Here is the solution I found and I would like to share if anybody is interested :
    Check the following Oracle Support Notes:
    ALERT - After Applying Patchset 11.1.1.4, Fusion Middleware Control Inserts "demo:" Tags in Conf Files of Reports Server- ENVID Section Stops Working [ID 1298701.1]
         After applying patchset 11.1.1.4 to Reports Server, any configuration changes through Fusion Middleware Control inserts "demo:" tags in the beginning of each line in conf file of Report Server.
         The behaviour is described in the following bug :
         Bug:11784251 MBEAN BROWSER ADDS A DEMO TAG IN RWSERVER.CONF AT EACH LINE
    So you I removed all demo tags in rwserver.conf
    <jobStatusRepository class="oracle.reports.server.JobRepositoryDB">
    <property value="csf:reports:jobrepo" name="dbpassword"/>
    <property value="repteam.us.oracle.com" name="dbconn"/>
    <property value="jobrep11g" name="dbuser"/>
    </jobStatusRepository>
    Regarding : PKI-02002 error:
    Error PKI-02002: Unable to open the wallet. Check password When Starting a Reports Server [ID 1316651.1]
    Temporary file cannot be created in temporary directory.
    After checking the wallet I simply changed the following lines
         <variable id="TEMP" value="C:\Users\oracle\AppData\Local\Temp\2"/>
         <variable id="TMP" value="C:\Users\oracle\AppData\Local\Temp\2"/>
    to
         <variable id="TEMP" value="C:\TEMP"/>
         <variable id="TMP" value="C:\TEMP"/>
    because the folder C:\Users\oracle\AppData\Local\Temp\2 was not created.
    Regards,
    Alex
    Edited by: user12019587 on 11-Apr-2012 2:50 PM

  • After installing iphoto 9.5 some of my  projects are  completely or partly empty after regenerating, how can I get them back?

    After installing iphoto 9.5 some of my  projects (photobooks) are  completely or partly empty after regenerating, how can I get them back?

    Define "everything" because if you've tried everything then your last recourse is:
    1 - restore your backup copy of your iPhoto Library created just prior to your Yosemite upgrade or
    2 - Starting over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1. Open the library package like this.
    2. Launch iPhoto with the Option key held down and, when asked, select the option to create a new library.
    3. Drag the subfolders of the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from the open iPhoto Library package into the open iPhoto window a few at a time.
    This will create a new library with the same Events (but not necessarily the same Event names) as the original library but will not keep the metadata, albums, books slideshows and other projects.
    Note:  your current library will be left untouched for further attempts at a fix if so desired.

  • I have completed my sap fico training, but i don't have any experience. I am an MBA finance having 6.6 years experience in accounts. Then can I get job in SAP field? & what type of course will do after MBA Finance? i want to do career in SAP Fico.

    Hi,
    I have completed my sap fico training, but i don't have any experience. I am an MBA finance having 6.6 years experience in accounts. Then can I get job in SAP field? & what type of course will do after MBA Finance? i want to do career in SAP Fico.

    Hi Mahesh,
    as you have more than 6 yrs. experience , you can opt for sap field but the main thing is that still if your job hunt will get ended, you will be considered as ab fresher, so are you ready for those bucks you will get after you will become a sap FI/CO consultant.
    Please understand one thing , if you wnats to make your career in sap field, you are most welcome, when it comes to a job for you in SAP FI/CO , you have to consider in your brain only middle or small size industry, because as far as i concern no single major company will provide you exposure to work with them (if you will get, its your good fortune). So, if you have decided to take a step ahead in sap FI/CO i will not give you negative thinking, if you are ready to negotiate in your renumeration in starting your career, then you can take a foot ahead, but look a job in middle size or small companies only, i think through this you will get any exposure more easily.

  • Ipod Shuffle suddenly emptied after two to three days not use..

    I had a problem which is my ipod shuffle suddenly emptied after two to three days i left in my room. What's the problem actually can be turn be like this since it's the first time i through it..please send me an email regarding this at [email protected] Thank You!

    Okay, and thanks for re-posting your photos. I have to agree that it definitely does look like crimping and would expect any continuity checks run on it to show an open or two. That would certainly explain your symptoms, but it's not the answer for all such cases, i.e., BLD, being reported here.
    I've now purchased two 'broken' Shuffle's on eBay, both coming off of M$ systems and reporting the blinkies. The first was Alive on Arrival and is still living happily on a daughter's eMac. The second was totally dead, with no reaction at all to anything I did; it's now disassembled, with no evidence of your crimping on the ribbon cable, while I mull over buying an LI battery and getting someone to solder it in for me.
    In your place I'd certainly be taking my evidence to Apple and pointing out that, at the end of the day, it was just a matter of pure luck that it managed to last as long with this defect as it did. I think you should be able to convince them to give you some sort of satisfaction on this, but appreciate your desire not to go through the bother of it.

  • HT204478 How do I migrate? My Photos library is empty after upgrade.

    How do I migrate? My Photos library is empty after upgrade.

    I read here that I need to start while holding Option Key to select my iPhoto library. Seems to be "Preparing Library"
    photos won't import from iPhoto to photos app

  • The Music and Sound section is completely empty after downloading FCPX.

    The music and sound section of my FCPX is empty after dowloading the app to my newly purchased Mac Book Pro. On my I7 it has tons of stock music and sound, the laptop seems to be missing this.  Any ideas why?

  • PHP Show if hides update fields, but they get overwritten with an empty string

    I have an issue with a page where some update fields are displayed depending on who is logged, for example:
    <?php if ($row_Users['UserID']=="101"){ ?>
    <input <?php if (!(strcmp($row_lodges['101_finalist'],"Yes"))) {echo "checked=\"checked\"";} ?> type="checkbox" name="101_finalist"  value="Yes"/>
    <input type="text" class="rankfield" name="101_rank" value="<?php echo($row_lodges['101_rank']); ?>" />
    <?php }  ?>
    <?php if ($row_Users['UserID']=="102"){ ?>
    <input <?php if (!(strcmp($row_lodges['102_finalist'],"Yes"))) {echo "checked=\"checked\"";} ?> type="checkbox" name="102_finalist"  value="Yes"/>
    <input type="text" class="rankfield" name="102_rank" value="<?php echo($row_lodges['102_rank']); ?>" />
    <?php }  ?>
    The issue I have is that if User101 is logged in and updates fields 101_finalist and 101_rank, it overwrites 102_finalist and 102_rank with an empty string.
    Is it possible to prevent each user from seeing the other fields for other users, and prevent the existing values for those other users not be overwritten?
    Hope that makes sense!
    Thank you.

    That would mean multiple nominations when really there only needs to be one nomination per category in any given country.
    It would be:
    1, 345, 101, Borana Lodge, 7, 2, Yes, 1
    1, 345, 102, Borana Lodge, 7, 2, Yes, 3
    1, 345, 103, Borana Lodge, 7, 2, No, NULL
    Instead of:
    1, 345, Borana Lodge, 7, 2, Yes, 1, Yes, 3, No, NULL
    Sorry, Lodge isn't in the nominations table, the list above is what is displayed on the site. Lodge gets looked up in the Ldoges table.
    At the moment it works like this:
    People can visit a website and vote for lodges in different categories, giving them a score out of 10 for each.
    If a lodge gets a vote in a particular category an admin person creates a nomination for that lodge, in that category.
    And the last bit is where judges login and tag the ones they think should be finalists.

  • Field Explorer is empty after establishing a connection to a SQL 2008 SP

    I am trying to create a report using a SQL Server 2008 stored procedure as the source of data using an ADO connection.
    The stored procedure is slightly odd, in that its building up the SQL as a string, Below is a snippet of the code to show what I mean. The reason for this is that I need to build up the WHERE clause dependign on user input.
         SELECT @var_query = 'SELECT  c_source,
            c_ccy,
            n_quantity,
           a_price,
           d_price,
           a_isd
                         FROM     ldsdbo.lds_testing_filter_data_vw WHERE'
         PRINT @var_query
         EXEC (@var_query)
    This runs fine in SQL Server, but when I try and use it in Crystal, the Database Field list is empty.
    Does anyone know whats going on, and how I can make this work?
    Thanks
    Nathan

    Well... Now I just feel obligated to reply...
    The key(s) to using an SP as your data source is to make sure that your SP does in fact return a single data set.
    So... begin by testing it in SSMS. If the following works in SSMS, then it should also work in CR...
    EXEC usp_MyStoredProcedure 'ParamValue1', 'PramValue2'
    ... note: the above example is based on the premise that the SP name is "usp_MyStoredProcedure" and you are tryig two pass 'ParamValue1' & 'PramValue2' as values...
    Obviously, you should use the actual SP name and any necessary test values if it has parameters.
    Assuming that the SP executes in SSMS AND returns a result set, you should be good to go in CR... Just do as Don mentioned and make sure you are using the NC10 drivers.
    If you are still getting stuck, remove the SP from the Database Expert and call the SP from a Command instead. It's easy to do as it allows you to use the exact syntax you used in SSMS. You'll just want to replace any hard coded values with CR parameters... (Just add the parameters to the parameter list of the command and reference them like this...
    EXEC usp_MyStoredProcedure '{?Parameter1}', '{?Parameter2}'
    HTH,
    Jason

Maybe you are looking for