Only zeros in ALEAUD field E1ADHDR / E1STATE / DOCNUM

Hi,
i m working with a scenario SAP ECC 7.0 -> IDoc -> PI -> IDoc -> R/3 4.6c
I m sending a purchase order (ORDERS.ORDERS05) from SAP ECC and i want to receive an acknowledgment from R/3. Unfortunately there are only zeros in the field E1ADHDR / E1STATE / DOCNUM, this leads to the error "ALEAUDIT IDoc cannot find request IDoc in Integration Server" on PI.
Does anybody know what to do in the R/3 system to send the original IDoc number in E1STATE / DOCNUM?
Regards,
Udo

Hi Alexander did you get to solve the problem with the empty DOCNUM field in ALEAUD?
In your first post you stated that you were dealing with an IDoc-to-File scenario but then you mention that JDBC adapter doesn't support acknowledgements. I found that a bit confusing.
I managed to get system acknowledgements from File adapter but the ALEAUD idoc received by R3 is missing some fields (like DOCNUM and STATXT) in E1STATE segment.
Can somebody enlight me with this problem without posting any link (i have already visited all of them without an answer to my question).
Thanks in advance,
Nicolá

Similar Messages

  • How can I set my filter to bring only zeros for the field?

    I have a field that has Number as data type in a table in Access. I only want to extract only zero values.
    Field1     Field2
    Orange    33
    Apple       0
    pumpkin  0
    Tangerine 12
    I appreciate your input.
    GGGGGNNNNNN
    GGGGGNNNNN

    Try a LEFT JOIN --
    SELECT [All Applications-Western].ApplicationNumber, [NN List - Western].approved
    FROM [All Applications-Western] LEFT JOIN [NN List - Western] ON [All Applications-Western].DealerNumber = [NN List - Western].DealerNumber
    WHERE ((([NN List - Western].approved)=0));
         OR a RIGHT JOIN --
    SELECT [All Applications-Western].ApplicationNumber, [NN List - Western].approved
    FROM [All Applications-Western] RIGHT JOIN [NN List - Western] ON [All Applications-Western].DealerNumber = [NN List - Western].DealerNumber
    WHERE ((([NN List - Western].approved)=0));
    Build a little, test a little

  • Field E1STATE/DOCNUM is missing! (ALEAUD)

    Hello,
    I have the following async scenario:
    SAP => IDOC-SenderAdapter => FileReceiverAdapter
    I receive an Acknowledgment (ALEAUDIT) back from XI to SAP, when the fileadapter has written the file, but field in E1STATE/DOCNUM is missing!  In others words, I don't now exactly to which idoc i receive a ALEAUD idoc.
    What could it be?
    Thanks!

    Hi Alexander did you get to solve the problem with the empty DOCNUM field in ALEAUD?
    In your first post you stated that you were dealing with an IDoc-to-File scenario but then you mention that JDBC adapter doesn't support acknowledgements. I found that a bit confusing.
    I managed to get system acknowledgements from File adapter but the ALEAUD idoc received by R3 is missing some fields (like DOCNUM and STATXT) in E1STATE segment.
    Can somebody enlight me with this problem without posting any link (i have already visited all of them without an answer to my question).
    Thanks in advance,
    Nicolá

  • Check if field has value 0 - zero value on field

    Hi,
    I've got the following code:
    DATA: v_qtd TYPE i.
    SELECT-OPTION s_qtd FOR v_qtd.
    I'm using a Z table Z001 and there's a numeric field there that's filled with values >0 (greater then zero).
    If I have 6 materials and only 4 have the field QTD with a value:
    MAT 1000 QTD 1
    MAT 1002 QTD 5
    MAT 1003 QTD 1
    MAT 1005 QTD 2
    MAT 1001 and 1004 exist but don't have any entries in table Z001.
    I'm making a report to get the values from table Z001 depending on how s_qtd is filled.
    My problem is how can I get the materials 1001 and 1004? How can I check if s_qtd is the value 0 (zero)?
    If I check s_qtd IS INITIAL then I get all the materials (1000 to 10005).
    If I check s_qtd-low = 0 it's the same as IS INITIAL.
    IF s_qtd IS INITIAL.
         (all materials 1000 - 10005)
    ELSE.
         IF s_qtd IS NOT INITIAL.
              (materials with entries in Z001 1000, 1002, 1003, 1005)
         ELSE.
              (never gets here)
    I can't check s_qtd-low = 0 and s_qtd-high = 0 because it's the same as s_qtd IS INITIAL.
    Thank you.

    Hi Carlos,
    Try the below code:
    TABLES: z001.
    DATA: it_z001 TYPE TABLE OF z001,
    wa_z001 TYPE          z001.
    SELECT-OPTIONS: s_num for z001-qtd.
    START-OF-SELECTION.
    IF s_num-low is INITIAL and s_num-high is INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001.
    ELSEIF s_num-low is not INITIAL and s_num-high is INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001
    WHERE qtd eq s_num-low.
    ELSEIF s_num-low is NOT INITIAL and s_num-high is not INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001
    WHERE qtd BETWEEN s_num-low and s_num-high.
    ELSEIF s_num-low is INITIAL and s_num-high is NOT INITIAL.
    SELECT *
    from z001
    INTO TABLE it_z001
    WHERE qtd BETWEEN s_num-low and s_num-high.
    ENDIF.
    LOOP AT it_z001 INTO wa_z001.
    WRITE:/ wa_z001-mat, wa_z001-qtd.
    CLEAR: wa_z001.
    ENDLOOP.
    Revert back in case of any issues.
    With Regards,
    Giriesh M

  • How to populate fields "DocEntry" and "DocNum" in UDT? Those are not UDF.

    I created a UDT with document type. When I populate the data, I don't know how to populate fields "DocEntry" and "DocNum". Those are not UDF. Here is my coding. Can somebody help me out?
    Dim objUserTable As SAPbobsCOM.UserTable
                        objUserTable = objSBOAPI.oCompany.UserTables.Item("AIT_POSTRANS")
    objUserTable.UserFields.Fields.Item("DocEntry").Value ="1000"
    ///////////// Error here "DocEntry" is not a UDF
                                           objUserTable.UserFields.Fields.Item("U_TrnsType").Value = "4"
                            objUserTable.UserFields.Fields.Item("U_CardCode").Value = objRecord.Fields.Item(0).Value
                            objUserTable.UserFields.Fields.Item("U_ShpBrnch").Value = objRecord.Fields.Item(1).Value.Replace("'", "")

    Currently versions of the SDK (SBO2005A SP01, SBO2007A, SBO2005B, SBO2007B) does not support Data Support of UDO-tabeles using the DI-API... That means that you can only add data to such tables using the GUI,,,
    This is currently a huge problem and the number one DI-API Development Request. The status with SAP is that this will become part of the SDK in SAP Business One 8.8 (the next major release), but 8.8 does not yet have a shipment date (My guess is that it will be 2009 before we even see it in rampup)...
    I know some people have experimented with writing direct SQL to such tables and know it can be done, but be aware that SAP does NOT support it!... Personally I've never done it for that reason althoug it would have been nice to do if some situations...
    Sorry I could not give anything better...

  • Expense Report Summary page does not show any totals - only zeros

    Hi All,
    On creation of Expense Report in the portal  When entering a billable expense report, when you get to the summary page is does not show any totals - only zeros for other two schema's its working fine like displaying totals
    we are surprised that any custom development is hitting or anything relates with configuration
    Provide valuable inputs to proceed further
    Regards
    Jaipal

    Hello vetsrini.
    Thanks a lot for your kind reply. As i said, i'm new to this and sometimes i just cannot pass over some problems. Here are the fields i have inserted:
    <?for-each:LIST_G_SETUP/AS_OF_DATE?>
    <?end for-each?>
    <?for-each@section:G_CUST_INV?>
    <?for-each:G_1?>
    <?INVNUM?>
    <?INVOICE_TYPE_INV?>
    <?DUE_DATE_INV?>
    <?sum (C_INV_BALANCE)?>
    <?sum (C_INV_B0)?>
    <?sum (C_INV_B1)?>
    <?sum (C_INV_B2)?>
    <?sum (C_INV_B3)?>
    <?sum (C_INV_B4)?>
    <?sum (C_INV_B5)?>
    <?end-for-each-group?>
    <?TOTAL_INV_AMT_DSP?>
    <?TOTAL_INV_B0_DSP?>
    <?TOTAL_INV_B1_DSP?>
    <?TOTAL_INV_B2_DSP?>
    <?TOTAL_INV_B3_DSP?>
    <?TOTAL_INV_B4_DSP?>
    <?TOTAL_INV_B4_DSP?>
    <?end for-each:G_CUST_INV?>
    In the header of the template i also have <?CUST_NAME_INV?> and the report date. When i try to enter the <?AS_OF_DATE?> it is not printed and also the header is not shown any longer. Once again, thank you for any help,
    Octavio

  • How can we remove the following zeros from quantity field ?

    Hi All.
    how can we remove the following zeros from quantity field while populating ALV by using FM REUSE_ALV_GRID_DISPLAY ?
    eg:getting output zqty = 2.000
    but i need           zqty = 2.
    help me to reslove this issue.
    Regards.
    jay

    Hi,
      While populating the field catlog do the following thing to   avoid zeros.
      wa_fieldcat-tabname = 'I_OUTPUT'.    " Curr
      wa_fieldcat-fieldname = 'FWAER'.
      wa_fieldcat-seltext_l = text-023.
      wa_fieldcat-no_zero = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR  wa_fieldcat.
    Thanks,
    Khushbu.

  • PDF forms have problems displaying text and only appears when the field is selected

    Hello,
    I created some pdf forms to distribute to the company clients. But we are having some people complaining about the text visibility. When they have work in team, the pdf that they receive from a third person often appears unfill or without text, the text is only visible when the field is selected. I need to find a solution for this because our company products are base on this forms.
    If there is any addition information that I should add to understand what is happening and how to fix it, I'll be happy to write it.
    In the company, we all have mac and the forms where created innitially in Adobe acrobat 9 pro, but we have now Adobe acropabt XI pro.
    The users have both Mac and Windows systems.
    Thank you,

    This is usually caused by the form being filled-in and saved by a Mac user who is using the Preview application to view the PDF. More information is here: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html
    It is a good idea to inform your users that Adobe Reader (or Acrobat) should be used to work with the forms.

  • Mc$6, mc$8 - only zero values

    Hello all,
    we would to see our vendor's delivery performance using the 2 reports MC$6 and MC$8.
    When executing the reports, all vendors are listed, but all other columns (Del. dt. vr1 etc.) have only zero values.
    So do I have to configure this report first to get any data or do something else?
    Thanks
    Anne

    Hey,
    thanks for your answer.
    ME6H is a usefull transaction, but I think it is kind of different from MC$6?
    Meanwhile I figured out, that I have to define intervals in MCFC.
    But even after defining the intervalls, I only get zero values??
    thanks
    Anne

  • Im trying to type my password but only zero and nine work I tried restarting but it still wont work have any ideas please answer ASAP

    im trying to type my password but only zero and nine work I tried restarting but it still wont work have any ideas please answer ASAP

    Have you tried resetting your iPad?
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).
    No data will be lost.

  • How do I zero-fill a field in a Presort Output file?

    Hello,
    I am trying to zero-fill a field in my Presort address output file.  For example, instead of posting ap.pc_no_abs as "1", I need to post it as "00000001"
    Thank you,
    Dawn Deems

    Dawn,
    Below are some examples of how to pad data when posting to output:
    To right justify data in a character-type field:
    In the Post to Output File block, place the following filter(s) to achieve your desired result:
    To prepad with leading "spaces" for a total length of 10:
    right("          "+alltrim(AP.Field_name), 10)
    To prepad with leading "zeros" for a total length of 10:
    right("0000000000"+alltrim(AP.Field_name), 10)
    Thanks,
    Kendra

  • How can i avoid leading zeros for a field in smartform?

    how can i avoid leading zeros for a field in smartform?

    Hi,
    Using the Symbols.
    &symbol(Z)&  Omit Leading Zeros  &symbol(S)&  Omit Leading Sign 
    &symbol(<)&  Display Leading Sign to the Left 
    &symbol(>)&  Display Leading Sign to the Right 
    &symbol(C)&  Compress Spaces 
    &symbol(.N)&  Display upto N decimal places 
    &symbol(T)&  Omit thousands separator 
    &symbol(R)&  Right justified 
    &symbol(I)&  Suppress output of the initial value 
    Regards,
    Shiva Kumar

  • How to add two zeros end of field

    how to add two zeros end of field?

    Hi srinu,
    If it's a number field, then just multiply by 100.
    If it's a string, then just use CONCATENATE and add the '00' to your existing string.
    Hope this helps.
    SL

  • How to add leading zeros to kunnr field

    Hi All,
    I need to add leading zeros to KUNNR field runtime.
    i.e for some customer it is displaying '2001084606'
    some customer's it si displaying '10434'.
    I want add leading zeros when customer length is
    not equal to ten '10'.
    plz kind let me know this is urgent.
    Regards
    Bhaskar

    Hi there,,
    Kunnr is using a dataelement with Char 10.
    You can do in this fashion to resolve your issue.
    len = strlen (itab-kunnr).
    len is having the lenght of the customer number.
    if len < 10..
       while len < 10.
          concatenate '0'  itab-kunnr into temp_text.
          add 1 to len.
       endwhile.
    endif.
    now finally you can assign temp_text to your itab-kunnr.
    hope this way you can resolve your issue.
    if found helpful,, don't forget to reward points.
    Thanks-
    Rahul.

  • In WebI report, is that possible to show ZERO in NULL fields?

    in WebI report, is that possible to show ZERO in NULL fields? crystal report has no issue, but i could not find a way to set ZERO to NULL field
    can you tell?

    Bram,
    This formula you used above is corrcet but is returning you a character '0' and when a descending sort is applied character values will be at the top.
    So , apply the formula 'ToNumber' on the value returned form the above formula :-
    ToNumber(above formula)
    And then it will change 0 to number and give you the exact sort order.
    Thanks,
    Rohini Haksar

Maybe you are looking for

  • What is VRAM in new BIOS 1.4 for Qosmio X770?

    for 770 series about to download now!!! what is VRAM ? Version 1.40 - 2011-10-29 Added: Hynix b-die VRAM support. Release Notes For CD-ROM BIOS updates: Type BIOS then press enter at the C:\ prompt. For all updates: After the update completes, the co

  • K9A2 CF Suspend to RAM not working?

    Suspend to RAM worked for a little while but the last three restarts have failed.  I'm using beta BIOS 1.21 and 32-bit WinXP.  BIOS 1.1 never worked.  Is anyone else having problems?  I've set the BIOS to use S3 instead of the default S1 and tried en

  • Multiple Catalogs with Photoshop Album Starter Edition 3.0?

    Is it possible to work with multiple and independent catalogs in PSA SE? I suppose all catalog information by default is stores in the file C:\Documents and Settings\All Users\Application Data\Adobe\Photoshop Album\Catalogs\My Catalog.psa (Windows XP

  • How to deploy OLAP Intelligence reports in Test/Prod?

    Hi, We are on BO XI R2 SP5 integrated with SAP Netweaver BI 7.0,both machines on solaris servers. We have created OLAP intelligence reports using OLAP intelligence connections in development environment. We deployed these reports in Test environment

  • Subtotals don't update when applying a filter

    Hello, I have a table that I reorganized with categories. I applied a "SubTotal" function to each category then I applied a filter. You can do most of this in Numbers in the "Reorganized" area. Anyway, when I applied the filters, the Subtotal never u