Document read functionality

Hi,
Can any one tell me if it is possible to read the data from the documents that are being loaded to BW. I want to read the data from the documents which are saved under the documents TAB in AWB through program. How can i do this. I know that there is a function module RSOD_DOC_MAST_CHANGE to create the documents. Is there any similar function module which will help me to read the data from the document. If not can anyone suggest some other ways by which i can do this. Its very urgent, please help me.
Regards
RR

Hi,
SE16 with table TFTIT in order to get a full list
A list of FMs with parameters can be found in table FUNCT.
Finally SE37 is the transaction for function modules...
Also go to sm37rsdf4 ---> give you all the function modules with description
List of FM:
http://www.erpgenie.com/abap/functions.htm
Hope this helps,
Regards
CSM Reddy

Similar Messages

  • Regarding Change document read

    Hi All,
    Am using Change Document read function module to find out the changed material details. i want to fetch the plant from marc to filter the records am having the only relationship i.e material to fetch the details from marc and mara,with this i can't filter because for one material four plants will be there.so am using the tabkey from that function module to fetch the plant i don't think is this a right way can anyone explain how i can get a plant.

    Think you query is misleading...
    As per my understanding you are trying to find all changes for materials in a specific plant right????
    If so below code can give you some idea:
    TABLES: mara.
    SELECT-OPTIONS: so_date FOR mara-laeda. " Date Criteria
    PARAMETERS: p_werks TYPE werks_d obligatory. " Plant
    CONSTANTS: c_tcode TYPE sytcode VALUE 'MM02'.
    TYPES: BEGIN OF ty_marc,
             matnr TYPE matnr,
             werks TYPE werks_d,
           END OF ty_marc.
    DATA: i_cdocs TYPE STANDARD TABLE OF cdred,  " Change Docs
          wa_cdocs TYPE cdred,
          i_marc TYPE STANDARD TABLE OF ty_marc, " Plant Existence
          wa_marc TYPE ty_marc.
    START-OF-SELECTION.
    " Read Change documents
      CALL FUNCTION 'CHANGEDOCUMENT_READ'
        EXPORTING
          date_of_change             = so_date-low
          objectclass                = 'MATERIAL'
          date_until                 = so_date-high
        TABLES
          editpos                    = i_cdocs
        EXCEPTIONS
          no_position_found          = 1
          wrong_access_to_archive    = 2
          time_zone_conversion_error = 3
          OTHERS                     = 4.
    " Delete documents where materials are not changed
      DELETE i_cdocs WHERE tcode NE c_tcode.
      CHECK NOT i_cdocs[] IS INITIAL.
    * Check for Material existence in Plant
      SELECT matnr werks INTO TABLE i_marc
             FROM marc
             FOR ALL ENTRIES IN i_cdocs
             WHERE matnr = i_cdocs-objectid(18)
             AND   werks = p_werks.
      LOOP AT i_cdocs INTO wa_cdocs.
        READ TABLE i_marc INTO wa_marc
           WITH KEY matnr = wa_cdocs-objectid.
        IF sy-subrc EQ 0.  " Material Defined in specified plant
          " Further Processing statements
        ENDIF.
      ENDLOOP.
    Correct me if my understanding is wrong.
    Regards
    Eswar

  • Adobe Acrobat X: Attachments and Extended Reader Functions...

    All,
    after adding attachments (e.g. PDF documents) to a PDF document and saving the document with "Extended Reader Functions" an error is shown in the Java debugger window:
    SyntaxError: missing ) after argument list
    10:Document-Level:ADBE::FileAttachmentsCompatibility
    Adobe creates a document-level javascript function called "FileAttachmentsCompatibility" within ADBE.
    Looking into the source code, the error can be easily seen
    app.alert("Dieses Dokument hat Dateianlagen. zum Anzeigen der Anlagen klicken Sie auf "Speichern", um eine Kopie des...
    (a part of the German version is shown)
    As one can see, the highlighting "Speichern" (saving) is inside of double quotation marks.
    This can only be solved by - again - saving the newly created document as a copy. Opening this document, one can edit the faulty script
    Find below the corrected version:
    var v = app.viewerVersion;
    if (v < 7)
    var n = 0;
    if (this.dataObjects != null)
      n = this.dataObjects.length;
    if (v >= 5 && v < 6 && n > 0 && (app.viewerVariation == "Full" || app.viewerVariation == "Fill-In"))
      if (this.external)
       app.alert("Dieses Dokument hat Dateianlagen. Zum Anzeigen der Anlagen klicken Sie auf "Speichern", um eine Kopie des Dokuments zu speichern. Öffnen Sie die Kopie in Adobe Acrobat, und wählen Sie "Datei" > "Dokumenteigenschaften" > "Eingebettete Datenobjekte".", 3, 0);
      else
       app.alert("Dieses Dokument hat Dateianlagen. Zum Anzeigen der Anlagen wählen Sie "Datei" > "Dokumenteigenschaften" > "Eingebettete Datenobjekte".", 3, 0);
    else if (v >= 6 && v < 7)
      if (n == 0)
       var np = this.numPages;
       syncAnnotScan();
       for (var p = 0; p < np && n == 0; ++p)
        var annots = this.getAnnots(p);
        if (annots != null)
         for (var i = 0; i < annots.length; ++i)
          if (annots[i].type == "FileAttachment")
           n = 1;
           break;
      if (n > 0)
       if (this.external)
        app.alert("Dieses Dokument hat  Dateianlagen. Zum Anzeigen der Anlagen klicken Sie oben in der vertikalen Bildlaufleiste des Dokumentfensters auf das schwarze Dreieck und wählen "Dateianlagen".", 3, 0);
       else
        app.alert("Dieses Dokument hat Dateianlagen. Zum Anzeigen der Anlagen wählen Sie "Dokument" > "Dateianlagen".", 3, 0);

    The script was automatically created by the Adobe Acrobat software...
    I know the issue, but is there any bug-fix available? I don't want to correct it for every document!
    Correction: Above you find the automatically created document.
    A corrected possibility is shown below:
    var v = app.viewerVersion;
    if (v < 7)
    var n = 0;
    if (this.dataObjects != null)
      n = this.dataObjects.length;
    if (v >= 5 && v < 6 && n > 0 && (app.viewerVariation == "Full" || app.viewerVariation == "Fill-In"))
      if (this.external)
       app.alert("Dieses Dokument hat Dateianlagen. Zum Anzeigen der Anlagen klicken Sie auf 'Speichern', um eine Kopie des Dokuments zu speichern. Öffnen Sie die Kopie in Adobe Acrobat, und wählen Sie 'Datei' > 'Dokumenteigenschaften' > 'Eingebettete Datenobjekte'.", 3, 0);
      else
       app.alert("Dieses Dokument hat Dateianlagen. Zum Anzeigen der Anlagen wählen Sie 'Datei' > 'Dokumenteigenschaften' > 'Eingebettete Datenobjekte'.", 3, 0);
    else if (v >= 6 && v < 7)
      if (n == 0)
       var np = this.numPages;
       syncAnnotScan();
       for (var p = 0; p < np && n == 0; ++p)
        var annots = this.getAnnots(p);
        if (annots != null)
         for (var i = 0; i < annots.length; ++i)
          if (annots[i].type == "FileAttachment")
           n = 1;
           break;
      if (n > 0)
       if (this.external)
        app.alert("Dieses Dokument hat  Dateianlagen. Zum Anzeigen der Anlagen klicken Sie oben in der vertikalen Bildlaufleiste des Dokumentfensters auf das schwarze Dreieck und wählen 'Dateianlagen'.", 3, 0);
       else
        app.alert("Dieses Dokument hat Dateianlagen. Zum Anzeigen der Anlagen wählen Sie 'Dokument' > 'Dateianlagen'.", 3, 0);

  • There was an error in opening this document incorrect function

    Hi, i got adobe reader pro 6, when im try to open ''some'' of my pdf, i got this error message :
    "there was an error in opening this document incorrect function"
    Can someone can help me?
    Thank

    The pdf is corrupted. It needs to be re-downloaded or recreated.
    Mike

  • PDF Documents with Functional Buttons - Works for IE and FireFox but not for Chrome and Safari

    To all,
    Good morning.  Our institution developed a PDF document with functional buttons for printing and e-mailing.  When the document is viewed via Internet Explorer and Firefox, the functional buttons work as expected.  However if the document is viewed via Chrome and Safari, the functional buttons do not work.  The workaround for those who are using Chrome and Safari, the PDF document needs to be saved to their local drive before the functional buttons work.
    Has anyone experienced this issue before?  If yes, what was your solution other than the workaround.
    Thanks.
    Babylon5

    Here's how to configure your browser to run Adobe Reader: http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html

  • How to change the language of the reading function in Pages 5.0 (to French in my case) ?

    I'm French and in the new Pages 5.0 there is a reading function (mac reads my document) but the issue is this function uses an English conception of the word and spelling, it changes my text and makes it uncomprehensible.
    Can someone help me ?

    If you are talking about text to speech, I think you have to go to system preferences/speech and make sure the system voice is set to a French one.

  • Are the following basic reading functions *really* still unavailable in ADE for VO Users?

    Adobe,
    It seems the latest build(ADE 1.8 preview 4)  *still* lacks the following basic reading functions when used on a Mac running OS X Lion 10.7.4.
    1. Inability to navigate and read by paragraph.
    2. Inability to navigate and read by line.
    3. Inability to navigate and read by word.
    4. Inability to navigate and read by character.
    5. Inability to annotate.
    6. Inability to interact with the text of a document (attempting to interact causes a restart of VO.)
    If I am mistaken, would you be so kind as to provide instructions for performing these important basic reading functions? If I am not mistaken, can you please explain why these functions are not available and can you also provide an ETA for when you will make them available?
    Also, can you please provide an explanation of the following unlabeled elements that are located on the toolbar at the top of the screen when reading an epub document?
    1. Element located to the right of the "Back to Library" button. This element is read by VO as simply "Button."
    2. Element located to the right of the "Text Size Menu Button." This element is reported simply as "Blank, Edit Text."
    3. The element to the right of the item in number 3 is also simply labeled "Button."
    4. The last element encountered on the toolbar is simply labeled "unchecked."
    Regards,
    Bryan J

    Adobe,
    It seems the latest build(ADE 1.8 preview 4)  *still* lacks the following basic reading functions when used on a Mac running OS X Lion 10.7.4.
    1. Inability to navigate and read by paragraph.
    2. Inability to navigate and read by line.
    3. Inability to navigate and read by word.
    4. Inability to navigate and read by character.
    5. Inability to annotate.
    6. Inability to interact with the text of a document (attempting to interact causes a restart of VO.)
    If I am mistaken, would you be so kind as to provide instructions for performing these important basic reading functions? If I am not mistaken, can you please explain why these functions are not available and can you also provide an ETA for when you will make them available?
    Also, can you please provide an explanation of the following unlabeled elements that are located on the toolbar at the top of the screen when reading an epub document?
    1. Element located to the right of the "Back to Library" button. This element is read by VO as simply "Button."
    2. Element located to the right of the "Text Size Menu Button." This element is reported simply as "Blank, Edit Text."
    3. The element to the right of the item in number 3 is also simply labeled "Button."
    4. The last element encountered on the toolbar is simply labeled "unchecked."
    Regards,
    Bryan J

  • Have the document about function DATES?

    Have the document about function DATES?,I study the online help that I am illegibility.

    you can go to transaction PE04, enter DATES for the name of the function.
    Finally click on the blue colored "i" icon on the top of your SAP GUI screen.
    The documentation that will be displayed will explain how the schema function DATES should be used.

  • Office for iPad and iOS 8 Document picker functionality

    Hi all,
    we want to integrate iPad application with our Office for iPad but with no success yet. Can you please advise if Office for iPad is currently supporting iOS 8 Document picker functionality? If not, then when it will support the integration between
    Office for iPad and iOS 8 document picker..?
    Thank you in advance.

    Hi,
    We support Office for Windows in the current forum, since this question is about Office for Ipad, I suggest you post the question in Office for Ipad forum:
    http://answers.microsoft.com/en-us/office/forum/office_mobile-word-os_device_ipad?tab=Threads
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can I put a READ function in a TRUE/FALSE case structure?

    Hi,
    I have a vi that operates as controller for a mechanical system of motors.  There are several sensors of various types, that provide input to the vi, including encoders, whose period is being measured.  The attached vi is the encoder period measuring part. It measures 15 periods and tells me the average of the 15 with each loop iteration.
    In my application, the encoder period measurement is not needed unless the vi knows that ALL THE OTHER sensors in the hardware configuration are measuring values within the desired range.  For example, Sensors A, B and C should all measure between 5-10.  If they are all showing values between 5-10, then, we want the encoder value to read and display.  If only one of the sensors, say A, is measuring 12, then, we don't want the period value to READ or be subsequently processed.  So, it is easy to set up the sensors A, B, C, to give a TRUE or FALSE based on whether they are within range or not, and if all 3 are TRUE, then, that value can easily be passed to the case structure that holds my READ function for the period.  Is this a good way to do this?  The goal is to eliminate unnecessary execution time that the period READ function would consume, as well as all subsequent calculations that are performed on the period value collected.  The period data is of no use if any one of the other sensors is not in the correct range.
    If any one of the other sensors is out of range, we want to skip the encoder READ step altogether.  So, it is easy to structure a BOOLEAN in my vi as shown in the attachment.  If I do it this way, will it throw an error, or just skip the READ until the BOOLEAN is true again?  Is there a better way to prevent the READ from happening if one of my other sensor values is not within the correct range?
    Thanks,
    Dave
    Solved!
    Go to Solution.
    Attachments:
    forum JUly 18.vi ‏26 KB

    Sure, you can put a Read inside a case structure. For your application, just check that your sensors are all within range (Comparisons palette), then AND the T/F's and use the result of that for your case structure. (If you are already doing the in-range check, I can't see it here because you have 5 subVIs that I cannot open here.
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

  • At what time you have looked at a message according to the "read" function.

    I was wondering, if you look at a message that was sent to you through iMessage again and you have the "read" function enabled, will the time that you viewed the message change. The reason to why I am wondering this is because I received a message at a certain time, while the "read" function said that the message was viewed way later, after I had received my response.
    Thank you in advance!

    It should be the same. Did you look at the message in the app the first time, or through the notification? I have the read function on, and it will not show "read" until I actually go into the app.

  • Error in creating the payment document; read job log

    Hi All,
    Recently we are upgraded to EHP4 pack. While running the payment proposal for the vendor I am getting the error 007 "Error in creating the payment document;read job log" Details of job log is as follows
    >            Due date determination additional log
    > Document 1100001518 line item 001 via ILS          694.00-
    > Terms of payment: 05/23/2011   60  0.000 %    0  0.000 %    0
    >  01 days grace period is being considered
    >  Maximum cash discount should always be taken
    >   Payment must take place before 07/23/2011; next payment on 07/27/2011
    > Item is due with 0.000 % cash discount
    Internal error: doc.balance not zero / comp.code SNXL vendor 1009530510 customer
    Balances:        2,052.00- ILS /        2,052.00- ILS
    >
    >            Posting documents additional log
    >  Currencies in line 1: ILS / ILS  Currencies in line 2: USD / ___
    > Document  company code SNXL currency ILS payment method T
    >  LIt PK Acct         RA            Amount            Tax
    >
    >  001 38 2001520500               3,420.00              0.00
    >                                  1,002.02              0.00
    >  002 50 0032118400               1,026.00              0.00
    >                                    297.21              0.00
    >  003 25 2001520500              72,645.00              0.00
    >                                 20,879.23              0.00
    >  004 50 0032118400              21,793.50              0.00
    >                                  6,312.93              0.00
    >  005 50 0010009101              48,457.50              0.00
    >                                 14,036.70              0.00
    >  006 40 0096100000                   0.00              0.00
    >                                    769.63              0.00
    >
    Information re. vendor 1009530510 / paying company code SNXL ...
    I have checked the configuration of FBZP The configuration settings is correct. Can you please help to solve this problem
    Regards
    Girish

    Hi Girish,
    You should be having error FZ326.
    Please kindly refer to the following link in order to solve the issue:
    http://wiki.sdn.sap.com/wiki/display/ERPFI/PaymentProgram-ErrorMessageFZ326
    or
    http://wiki.sdn.sap.com/wiki/x/jY3YCw
    Apply all notes that are relevant to your support packaged.
    Kind Regards,
    Fernando Evangelista

  • F110 Error in creating the payment document; read job

    Hello
    I am running a payment run for few vendors and I am getting this error "Error in creating the payment document; read job" I have checked all the vendor acconts involved, for any blocked data but nothing is blocked. Is there any thing else that I am missing. Pleas let me know.
    Thanks

    Hi,
    To rectify ur problem u need to check follwing points...
    1. doucuments types assogned in payment method in FBZP
    2. In Ecc 6.0 u need to create document types and number ranges in N1 ledger, because new ledger is activated by system  default in this version.
    define document types in N1 ledger
    path:Spro-FA-****-Documnet-document types-define doc.types in GL view
    give ledger as N1 and enter.
    define document types whoch u were assigned in payment method in country. for doucument types u can take reference as OBA7 tcode documnet types..
    afetr that
    define document N.ranges  fro GL view
    path:Spro-FA-****-Documnet-document N.ranges-doc. in GL view-define document N.ranges  fro GL view
    enter comany code and define number ranges for doc.types
    afetr all above setting try once in F110. u will get result..
    regds
    Tony

  • F110 " Error in creating the payment document; read job log"

    Hi all,
    when i execute payment in Tcode F110, getting message " Error in creating the payment document; read job log".
    Log for payment run for payment on 30.07.2009, identification TEST1
    Error in the recovery of constants
    Information re. vendor 1000040256 / paying company code BG10 ...
    ... payment not possible because of reported error
    Because of it, the payment file is also not generated.
    The status says " Payment run has been carried out".
    But when the open items are cleared.
    What could be the reason for this error message?
    Regards,
    Vidya

    Hi,
    As the document is in the cleared status, you can try finding out with which run date and run id the documents got cleared. Go to Transaction code SE12 and give the following details - Company code, vendor code and the payment documents (clearing document for the invoice) or you can also give the invoice document numbers and fiscal year.
    The output will tell you which payment run id and run date was used to process the payment.
    Hope this will help you understand what has happened.
    Thanks and Regards,
    Anit
    Edited by: Anit Mangat on Jul 30, 2009 4:38 PM

  • Document Compare Function in Acrobat Professional 9

    Document Compare function
    I use the 'compare' function to compare documents versions etc for changes. It looks like only 250 pages is the maximum number of pages that can compared during each operation.
    I am using documents that are 900+ pages and I keep the error message/screenshot attached. 
    Is this a limitation with Acrobat Professional 9?

    Yes, it would appear to be a limitation that Adobe have put in. I'm in a similar situatiion where I have documents up to 2500 pages long that must be compared so while it takes longer I do the compare in batches of 250 pages at a time. It could be as a result of resource usage. I'm finding that when I do a compare, the fisrt one is generally ok but after that Acrobat slows down considerably - it may just be my computer (XP Pro 1.5 GB RAM and 2.8 GHz) but I'd like to know does Acrobat empty the cache or is the cache filling up after each compare and hogging resources?
    It's a great function but I wish it would work the way I expect it to.
    Cheers

Maybe you are looking for