How to under complete document to configure prerequisite using fields both

Hi,
   When I configure prerequisite under complete document for one substitution but fialed withe syntax error when I tried use the following prerequisite:
BKPF-BUKRS = 'XXXX' AND
BSEG-HKONT IN SET1
  But I input this prerequisite under line item it is ok . I am wondering if there is no permit for BSEG table field under prerequisite under complete document. Pls give me some advice on how to under complete document to configure prerequisite using fields both in BKPF and BSEG. Thanks.

Hi Mohan,
   I did active it at call point3(complete document) but my question is when I configure prerequest I am confused that only BKPF data fields can be used in prerequest. Why field in BSEG can not be used in prerequisite?  Once I input BSEG field in prerequisite there will be syntax error message shown up.

Similar Messages

  • How can i retrieve documents(.doc,.pdf, .txt) using forms from the database.

    How can i retrieve documents(e.g .doc,.pdf, .txt etc) using forms from the database.
    i inserted the documents using sql*loader, below is the control and data files.
    -- control file
    LOAD DATA
    infile 'load.txt'
    INTO TABLE husman
    APPEND
    FIELDS TERMINATED BY ','
    (id integer external,
    fname FILLER CHAR(50),
    docu LOBFILE(fname) TERMINATED BY EOF)
    --data file
    1,../husman/dell.doc,
    2,../husman/me.pdf,
    3,../husman/export.txt,
    in the form i have a text field to display the id and an OLE container to display the document as an icon. but when i execute query, i only get the id number and not the document.
    any help will be appreciated.
    Thanks
    Hussein Saiger

    Step by step
    1. Erase all contents and settings
    2. You'll be asked twice to confirm
    3. You'll see Apple logo and progress bar
    4. You'll see a big iPad logo on screen
    5. Configuration start
    6. Set language
    7. Set country
    8. Enable Location Service
    9. Select network, enter password and join network
    10. You'll be given 3 options (a) Setup as New iPad (b) Restore from iCloud Backup (c) Restore from iTune Backup
    11. Selected Restore from iCloud Backup
    12. You'll be required to enter Apple ID and Password
    13. Agree to Terms and Conditions
    14. Select Backup file
    15. You'll see progress bar
    16. Red slider will appear; slide to unlock; step #1 to #16 is fast
    17. Pre-installed apps will be restored first
    18. Message: Purchased apps and media will now be automatically downloaded
    19. You'll see a pageful of apps with Waiting/Loading/Installing
    20. Message: Some apps cannot be downloaded, please sync with computer

  • How to print a document in reverse order using Java Print API ?

    I need to print a document in reverse order using Java Print API (*Reverse Order Printing*)
    Does Java Print API supports reverse order printing ?
    Thnks.,

    deepak_c3 wrote:
    Thanks for the info.,
    where should the page number n-1-i be returned ?
    Which method implementation of Pageable interface should return the page number ?w.r.t. your first question: don't return that number but return page n-1-i when page i is requested; your document will be printed in reverse order. Your class should implement the entire interface and wrap the original Pageable. (for that number n your class can consult the wrapped interface; read the API for the Pageable interface).
    kind regards,
    Jos

  • How to post a document in the future using DI API?

    Hello friends
    Please can someone help me find a clever way around this....
    I am using SAP 2005 SP01 PL09. I am trying to add an invoice into SAP using a VB.Net application. I want to set the date for the invoice to a future date (e.g. 01/01/2008). The problem is that even though I have set the setting which "<b>Allows future Posting Date</b>" in SBO I still get a "<b>Date deviates from permissable range</b>" Error (-5002) when I try adding the invoice.
    I know that when I try post the invoice through the SAP <i>front end</i> (i.e. still posting it in 01/01/2008) I get a confirmation screen which pops up and says "<b>Posting Date later that System Date</b>" and I can either click on "<i>OK</i>" or "<i>Cancel</i>". If i click on OK the Invoice goes through no problem.
    This however does not work when i try use the DIAPI to do the same thing.
    How can i bypass this error when i use the DIAPI??
    Any help is much appreciated
    Greeshma

    Hello,
    if you want to escalate to SAP, I think you upgrade your SAP B1 to  the latest PL i.e. PL 36. Let me know if the error still persists after upgrading.
    Rgds,

  • How to populate one internal table from another using field symbols

    Hi Gurus,
      I have a problem. I have to populate one internal table (sructure t_otput) from another internal table (sructure t_from) using field symbol.
    Structure for from table.
    types: begin of t_from,
             year(4) type c,
             ww(2) type c,
             site type marc-werks,
             demand type i,
           end of t_from.
    Structure for output table.
    types: begin of t_display,
             title(30),
             WW1(10),
             WW2(10),
             WW3(10),
           end of t_display.
    The from table looks like this:
    Year | WW | Site | Demand
    2005 | 1  | OR1  | 12.00
    2005 | 2  | OR1  | 13.00
    2005 | 3  | OR1  | 14.00
    The display table which has to be populated should look like this:
    Title  | WW1   | WW2   | WW3
    OR1    |       |       |
    Demand | 12.00 | 13.00 | 14.00
    How to populate display table using field symbol?
    Please give code snippets
    Thanks,
    Gopal

    Gopal,
    Here is the code, however I am not vary clear about the ORG1 and Demand display that you have shown in the display. I am sure with this code it should not be a big deal to tweak in whatever manner you want.
    TABLES : marc.
    TYPES: BEGIN OF type_display,
    title(30),
    ww1(10),
    ww2(10),
    ww3(10),
    END OF type_display.
    TYPES: BEGIN OF type_from,
    year(4) TYPE c,
    ww(2) TYPE c,
    site TYPE marc-werks,
    demand TYPE i,
    END OF type_from.
    data : t_from type table of type_from,
           t_display type table of type_display.
    field-symbols : <fs_from> type type_from,
                    <fs_display> type type_display.
    data : wa_from type type_From,
           wa_display type type_display.
    wa_from-year = '2005'.
    wa_from-ww   = '1'.
    wa_from-site = 'OR1'.
    wa_from-demand = '12.00'.
    insert wa_from  into table t_from.
    wa_from-year = '2005'.
    wa_from-ww   = '2'.
    wa_from-site = 'OR1'.
    wa_from-demand = '13.00'.
    insert wa_from  into table t_from.
    wa_from-year = '2005'.
    wa_from-ww   = '3'.
    wa_from-site = 'OR1'.
    wa_from-demand = '14.00'.
    insert wa_from  into table t_from.
    data : variable(3) type c.
    field-symbols : <fs_any> type any.
    break-point.
    Loop at t_from assigning <fs_from>.
    variable = 'WW'.
    wa_display-title = <fs_from>-site.
    concatenate variable <fs_from>-ww into variable.
    assign component variable of structure wa_display to <fs_any>.
    <fs_any> = <fs_from>-demand.
    endloop.
    append wa_display to t_display.
    clear wa_display.
    loop at t_display assigning <Fs_display>.
      write :/ <fs_display>.
    endloop.
    Note : Please award points if this helps you.
    Regards,
    Ravi

  • How to retrieve complete Document list using RESTful webservice

    Hi,
    I want to retrieve the complete list of documents from the CMS. When made the below call, I am getting only 10 documents(which is default). If included the parameter 'limit' I am getting a max of 50. How can I get the complete list if my CMS contains huge list (may be some thousands)?? Plz help.
    http://<serverName>:6405/biprws/raylight/vx/documents
    Thanks,
    Rekha.

    Hi Anthony,
    Thanks for the reply.
    As per my understanding, 'offset' is something which filters the first xx(offset value) documents in the result value. The result list starts from the (offset +1) th element.
    'Offset' is helpful if I know the position of the desired document
    Plz correct me.
    My requirement is - to fetch a single docId based on the name of the document from the ENTIRE list.
    I am not aware of the position of my document in the result list. In this scenario , how will the 'offset' help me?
    .Thanks,
    Rekha

  • How to remove COMPLETELY on interface configuration

    I have a SG300 switch and there are smart port macros enabled on the user/phone ports, which is giving me a headache. On another SG300 switch, there are no smartport macro and things work as expected. I can define which VLAN is used for voice and the one which can be used as data, by using it as native VLAN. How do I disable this feature (cli, most preferably, if not, GUI) so I can set the VLANs as expected? VLAN 231 is used as data and 203 is used as Voice
    Here's the messed config from my switch:
    switch#sh run int gi4
    interface gigabitethernet4
     storm-control broadcast enable
     storm-control broadcast level 10
     storm-control include-multicast
     port security max 10
     port security mode max-addresses
     port security discard trap 60
     spanning-tree portfast
     macro description "no_ip_phone_desktop  | ip_phone_desktop"
     switchport trunk allowed vlan add 231
     !next command is internal.
     macro auto smartport dynamic_type ip_phone_desktop
    and how MAC address behaves on that port. 
    switch#sh mac address-table int gi4
    Flags: I - Internal usage VLAN
    Aging time is 300 sec
        Vlan          Mac Address         Port       Type
         1         00:15:65:xx:xx:xx      gi4      dynamic
        231        00:15:65:xx:xx:xx      gi4      dynamic
    switch#
    And on another switch, thins are as expected:
    switch2#sh mac address-table interface gi22
    Flags: I - Internal usage VLAN
    Aging time is 300 sec
        Vlan          Mac Address         Port       Type
        207        90:b1:1c:xx:xx:xx      gi22     dynamic
    switch2#
    Regards,
    Vitor

    Hi Vitor,
    If you do not wish to use smart port macro you can just run global configuration mode command "macro auto disabled", all ports should restart however you may want to save running config to startup and reboot.
    I hope this helps,
    Aleksandra

  • TS1398 How do I print documents/emails from iPad using my Kodak 5210 wi fi printer.

    I am unable to print documents and e-mails from my iPad using my Kodal 5210 WiFi printer.
    How do I configure it - I do not have a cloud compatable printer.

    Not all WiFi printers are AirPrint capable and yours appears not to be based on Apples list here: http://support.apple.com/kb/ht4356
    You can still print wirelessly using a software print server like Printopia installed on your Mac or PC. Necessarily though, this means you need to have your computer running on the same wireless network as the printer:
    http://www.ecamm.com/mac/printopia/

  • How to update many documents in one go using portal permissions

    Hello,
    I have two users in the portal with different permissions on a folder:
    rct2774: Total control
    rct3343: Read
    So, connected to the portal, rct3343 can´t upload (or erase) any document.
    Now, I´ve followed these instructions to update many documents in one go (found in "how to upload a folder containg HTML files in a KM folder" topic 22 - jun - 2006)
    "You can use the WebDaV.
    1. Get the WebDav path of your KM folder by going to details->properties->Access Links
    2. Copy the url for the WebDav
    3. Go to your desktop. Right Click on My Network Places.
    click on open.
    4. Click on add a network place.
    5. Click on "Choose another network location"
    6. Paste your copied url and click on next.
    7. Enter your portal userid and password. Now drag and drop your files from desktop. "
    But, updating this way both users (rct2774 and rct3343) can update, download and erase any document that belongs to that location.
    Do you know a way to update many documents in one go respecting or keeping the portal permissions?
    Thanks in advance.
    Best Regards,
    Esteban

    Hi Marc,
    First of all, thaks for your prompt reply. I´m new in these themes and any help is wellcome.
    We are doing many tests now, so we´re using the server portal as repository in itself. It´s quite strange because the permissions work at the portal correctly but not by the other way.
    Should I download the portal drive to the client PC for mantain the portal permissions?
    Thank you!

  • How do you completely disable the installation and use of add-ons for firefox 4? Is there a config setting/file that can be changed to completely disable add-ons?

    I want to completley disable the installation and/or use of add-ons in Firefox 4. I don't want anybody that logs onto either of my computers to be able to use add-ons and I can't find a way to disable it in the configuration files. I've found ways to lock down other options like updates etc. but I cannot find a way to completely disable add-ons.

    See:
    * http://kb.mozillazine.org/Locking_preferences
    You can use a mozilla.cfg file to lock prefs or specify default values.<br />
    You can place a file local-settings.js in the defaults\pref folder to specify using mozilla.cfg.
    You can use these functions in mozilla.cfg:
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes
    lockPref(); // lock pref, disallow changes
    To prevent users from installing software use:
    <pre><nowiki> //
    lockPref("xpinstall.enabled" ,false);
    </nowiki></pre>

  • How to sort pdf documents by modified date using Javascript action

    Hello,
    I want to use a Javascript action to sort multiple pdf documents in a folder before I run a Javascript action that prints the last page of multiple pdf documents.  I received help from this forum on the last page print script and it works perfectly.  The downside is it prints in default NAME order and I need them to print in accending DATE MODIFIED order.  I'm not sure if the sort function could be incorporated into the print script or if it would be a seperate code/action.
    This is the script to print the last page of several pdf documents:
    this.print
    ({bUI: false,
    nStart:this.numPages-1,
    bSilent: true,
    bShrinkToFit: true});
    I would appreciate help from anyone that is willing to share the code to "sort by DATE MODIFIED".
    Adobe Acrobat 10 Pro
    Windows 7
    Thank you in advance,
    David C.

    I'm not a code writer.  I'm trying to streamline some operations here at work.  The original code assistance was to print the last page of several pdf documents (sometimes as many as 100 to 150 at a time) without having to open each file, scroll to the bottom, Ctrl-P, current page, Print.  Can't express how beneficial it was to get that to work.  I realize I'm looking a gift horse in the mouth, but when it prints out, it would be great to have them print in DATE MODIFIED order since they are kept in processed order rather than alpha order.
    If the two processes are too labor intensive I fully understand and appreciate all the assistance thus far.  I was hoping it would be as simple as the first script coding to do the actual printing.
    Thanks,
    David C.

  • How can i completely erase and reset a used hp touchsmart 300 1003 to my name

    i purchased a touchsmart 300 1003 used from a friend and it has all main userin his name, and when i tried to change the computer name it was successful but the original user name itn the roots of the files still under my friends name
    i've done a store display computer before but i forgot the steps
    can anybody please show me how
    thanks a lot

    Hello nevasalme,
    I see that you are trying to clean the information off of your HP computer. I have some information that may help with your issue.
    Here is a link to steps for running a system recovery on the computer. This will set the computer back to the factory state and remove all user information.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • How do I set document property with delay using jquery?

    56     $("#DivStage2").delay(11000).fadeIn(1000);
    57     $("#DivStage2").delay(56000).fadeOut(1000); //11000 to 69000
    58     < need code here > 
      I have document item as defined below
      document.getElementById('2').setAttribute("style", "color: #FFF;");
    I want this to run on line 58 above with a delay before it of 4 seconds after line 56 starts.
    Please can anyone advise.
    Thank you in advance for any feedback and for everyone who has helped me so far on previous enquiries.
    I've ordered a jquery book which might help me, but I'm still learning.
    Terry

    terryfoster wrote:
    Okay I have
       <div id="DivStage2" >
        <h2 id="1" style="color: #707070;">Topic1</h2>
        <h2 id="2" style="color: #707070;">Topic2</h2>
      </div>
    Now in the function above I have...
    $("#DivStage2").delay(1000).fadeIn(1000);              // delay 1 sec then fade in for 1 sec
    $("#DivStage2").delay(56000).fadeOut(1000);         // keep this div onscreen for 56 secs then fadeout 1 sec
    Now after 20 seconds I want to turn Topic2 white as this is the one I want to focus on.....
    and topic1 grey again
    I would have thought......
             $("h2 #2").delay(20000).css("style", "color: #FFF;").delay(20000);
    would have turned the second topic white but No.... It does nothing at all
    (hmm why does everything I cut and paste end up in a table here now!!! What a bother editing!)
    Thank you
    It wont do anything because that function will only be executed after the <div> has faded out if it comes after
    $("#DivStage2").delay(56000).fadeOut(1000);

  • How to store xml document in d/b using jsp

    hai,
    Iam doing one web application in JSP, i have a requirement to store the xml document in database. We have to use some xml parsers, so can anyone please give me the related code in JSP.
    regards,
    Praveen Vinnakota.

    If you have to store the Whole XML Document then I don't think you need to mess with XML Parsers. I mean simply the XML File in the Database Field where it has to stored
    Bye for now
    CSJakharia

  • How to attach a document for a resume on a iPad

    How to attach a document to a resume using a ipad

    This is a little klugy, but should work:
    Open teh received email (the one you need to reply to)
    Tap on the body text and Select All, then Copy
    Open the document app (note sure which one you are using), and send the resume document via email
    Tap on teh body of the document and paste the copied text in
    Modify the Subject *** needed (you may want to include the "RE:" at the beginning
    Send
    Offer Apple some product feedback here : http://www.apple.com/feedback/

Maybe you are looking for