Text download

Hi Folks,
I'm still struggling to download text to frontend.
I want to create a file like this.
000001 textline 1
000001 textline 2
000002 textline 2_1
000002 textline 2_2
for this reason I created the following code.
data tab_lines type table of tline.
call function 'READ_TEXT'
  exporting
    object    = out_head-TDOBJECT
    name      = out_head-TDNAME
    id        = out_head-TDID
    language  = out_head-TDSPRAS        "textkopf-tdspras
  importing
    header    = impi
  tables
    lines     = tab_lines
  exceptions
    not_found = 1
    others    = 2.
CALL FUNCTION 'GUI_DOWNLOAD'
  exporting
    filename              = 'c:\texte_line.txt'
    APPEND  = 'X'
    write_field_separator = 'X'
  TABLES
    data_tab              = tab_lines.
But how can I add an additional field?
I tried to create a structure to keep the fields and download them, but it does not work.
I allready managed to create the Header file according to LSMW input structure.
Now I stuck with the lines.
Thank you very much for any help.
Rg. Jimbob

Hi,
May this way
report  zars no standard page heading
        line-size 170
        line-count 65(4).
data tab_lines type table of tline.
data : tab_wa type tline.
data : begin of i_download occurs 0.
data : itemno(5) type c.
   include structure  tline.
data : end of i_download.
call function 'READ_TEXT'
exporting
object = out_head-TDOBJECT
name = out_head-TDNAME
id = out_head-TDID
language = out_head-TDSPRAS "textkopf-tdspras
importing
header = impi
tables
lines = tab_lines
exceptions
not_found = 1
others = 2.
loop at tab_lines into tab_wa.
   move-corresponding tab_wa to i_download.
   move <your item no> to i_download-itemno.
   append i_download.
endloop.
CALL FUNCTION 'GUI_DOWNLOAD'
exporting
filename = 'c:texte_line.txt'
APPEND = 'X'
write_field_separator = 'X'
TABLES
data_tab = i_download.

Similar Messages

  • Just got iPhone 4 but doesn't have a mic for speech to text. downloaded dragon dictation but too many steps to make it work for texting. how can I get easy speech to text

    just got iphone4 but it has no mic for speech to text. downloaded dragon dictation but too many steps to make it work with texting. how can I do simple speech texting?

    To get speech to text you need an iPhone that supports Siri. The iPhone 4S and the iPhone 5 both support Siri

  • LG Revolution Grp Texting/Downloading

    I lost my iPhone a month ago and I knew this was going to be hard downgrading to a LG Revolution because I don' t have the money to pay full retail for a new one. I can get past the norm ** of this phone like the slowness, pressing "end" to end a call 5 times, screen blacking out when I receive a phone call, not receiving text messages here and there, etc. But when it comes to grp texting, I just don' t understand it. I try to add multiple recipients to a grp text and it will not let me add more than 1 person and kicks me out of the text. Also, when I receive a grp text (which I stand stand this phone grp texting cause you are not in the conversation but just in an individual conversation w/ the sender) it says "downloading" and sometimes, never downloads the text. I then have to call the sender to see what he/she wrote. Someone please help w/ this issue.
    Thanks.

    going through the same dang thing I can't get it to restart at all...

  • Mysteriously added text downloading to Acrobat Create PDF Online

    Working on Acrobat.com's create an online pdf web page I
    downloaded a Word Document from my pc to Acrobat.com and opened the
    Word document (on Acrobat's web site) to find the document
    different than the original Word document on my pc.
    The Word document (as well as the pdf conversion displayed
    next to it) on the Acrobat.com web page mysteriously had an added
    line of text showing a previously unknown date (January 9, 2006)
    inserted before the body of the original text but under the
    original page header. The font also looked slightly different
    throughout the body and header of the document and the document
    itself was extended to 3 pages long instead of 2. In the conversion
    the now added 3rd page also mysteriously included the standard
    header and footer and renumbered the first two pages to include
    this new 3rd page (page x of 3) in the footer.. When I went back to
    the original Word document on my pc nothing was added or changed.
    I downloaded another Word document with a different page
    header from the same pc to the Acrobat webpage and while that
    document looks graphically slightly different there was no text
    added.
    It seems that there must be some sort of embedded legacy date
    code or script at the beginning of the Word document that while not
    visible in either the reveal codes side pane, or showing up in any
    way when working or printing the document in Word is somehow
    revealed in the text of the document when downloaded to the Acrobat
    site even before its converted to a pdf file.
    How can I manage this?

    I am using Windows XP Professional O/S and Firefox as my
    browser. I get that the font options will change the file as opened
    at Acrobat that may change the layout,
    but,....
    how do you explain the mysterious extra date 'string' that
    appeared at the start of the word document as it showed up at
    Acrobat's website?
    Since this is standard out of the box Word and included fonts
    (garamond 12) why does this do this.

  • Problem in JA text Download into file

    When text file is downloaded from ECC ,  the Japanese character takes more spaces in the file , comparing to Earlier version 4.6 C ( NUS) .
            For that other characters left to it  displaces from its defined position
    thanks
    bobby

    When text file is downloaded from ECC ,  the Japanese character takes more spaces in the file , comparing to Earlier version 4.6 C ( NUS) .
            For that other characters left to it  displaces from its defined position
    thanks
    bobby

  • Info record Text download and upload

    Hi,
    Can you guys tell me how to download the info record text from one plant (info record text and purchase order text in inforec) and then i need upload the same text in diff plant. Is there a std way of doing this? (i don't think i have seen it) Can you tell me any download / upload code or the tables i can use to download and the procedure to upload.
    Thanks,
    Appreciated your quick reply.
    Suresh

    info record text :
    Table: STXH  and STXL  Text object :EINA    text id:AT and text name :info record no  .
    Use FM : READ_TEXT
    Purchase order text:
    Table:STXH and STXL  Text object: MATERIAL  text id:BEST and text name: material no
    use Function module SAVE_TEXT to upload or use LSMW

  • ISQL and text download

    It looks like iSQL outputs the query result in HTML format, which is difficult to work with for our analysis purpose. Is iSQL tool be able to output query result to plain text file? what version, if so?
    Can anyone help?
    Thanks :)

    You can use SET MARKUP HTML to turn PREFORMAT ON. The HTML
    headers and footers will still be generated but the content
    will be traditional space-indented and formatted text.
    Are you using the "dynamic report" feature of iSQL*Plus?
    E.g. in iSQL*Plus 10g
    http://machine_name.domain:5560/isqlplus/dynamic?script=http://machine_name2.domain/myscript.sql
    (The 9.2 syntax is slightly different)
    -- CJ

  • What hardware/software combo for digital speech recording followed by text download to my iMAC is most compatible with the new Yosemite OS?

    Currently running OS10.9.5 on an iMAC with 2.7 GHz Intel Core 15 processor and 4 GB 1333 MHZ DDR3

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Merging the internal table and structure for PO text material download

    Hi Experts,
       I have a query regarding downloading the PO text from material master.Actually i have successfully downloaded the PO text using TLINE structure along with FM like READ_TEXT and GUI_Download.But when i had to append the PO text for corresponding material,there i got the problem.Let me explain clearly.Below is my coding for PO text download.In that i have used TLINE structure/table for get the POtext via FM READ_TEXT.Also I am using an internal table(It_tab) which consist fields of TDFORMAT,TDLINE and MATNR,So what i need is,i want to merge TLINES structure/table into internal table(it_tab).That is I want to display the PO text along with material No.That is my requirement.But when i append the it_tab using my coding,it was not displaying in the correct order.Attached screen shot is the sample output(excel sheet).column B and C respectively for POtext and material number.I want to get in correct order as it gets the misarrangemnt.(i.e) PO text and material number should come with the same line.So Please help me to complete this task.Kindly point out if i am wrong.
    PO TEXT download from material master :
    DATA :  BEGIN of IT_LINES OCCURS 0.
                INCLUDE STRUCTURE TLINE.
    DATA : END of IT_LINES.
    DATA : t_line TYPE STANDARD TABLE OF IT_LINES WITH HEADER LINE.
    TYPES: BEGIN OF tp_matnr,
            matnr type TDOBNAME,
            END OF tp_matnr.
          DATA:lv_matnr TYPE matnr,
           t_mara TYPE TABLE OF tp_matnr WITH HEADER LINE.
    SELECT-OPTIONS : s_matnr FOR lv_matnr.
    SELECTION-SCREEN BEGIN OF BLOCK BL1 WITH FRAME TITLE TL1.
    PARAMETERS: P_FILE(50) TYPE C.
    *PARAMETERS: P_DOWNL as CHECKBOX.
    SELECTION-SCREEN END OF BLOCK BL1.
    INITIALIZATION.
    TL1 = 'PO TEXT DOWNLOAD'.
    START-OF-SELECTION.
    SELECT matnr FROM mara INTO TABLE t_mara WHERE matnr IN s_matnr.
    DATA : BEGIN OF it_tab OCCURS 0,
             TDFORMAT type TDFORMAT,
             TDLINE type TDLINE,
             MATNR type TDOBNAME,
             END OF it_tab.
    LOOP AT t_mara.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    *   CLIENT                        = SY-MANDT
        id                            = 'BEST'
        language                      = 'E'
        name                          = t_mara-matnr
        OBJECT                        = 'MATERIAL'
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        =
    *   OLD_LINE_COUNTER              =
       TABLES
        lines                         = t_line
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF sy-subrc = 0.
         APPEND LINES OF t_line to it_tab.
         it_tab-tdline = t_line-tdline.                                           
         it_tab-matnr = t_mara-matnr.
         APPEND it_tab.
      ENDIF.
      ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    FILENAME = 'D:\Test.xls'
    FILETYPE = 'ASC'
    WRITE_FIELD_SEPARATOR = 'X'
    SHOW_TRANSFER_STATUS = 'X'
    TABLES
    DATA_TAB = it_tab

    Hi Manish,
      Thanks for the support.I did simple modify in coding.Now I got the output in the correct order.If i follow the step of it_tab-tdline = t_mara-matnr, it is storing in the column B as you mentioned.But it was displayed in the second line.So i did adjust your below coding.Finally got the solution.Thanks manish
    DATA wa_line LIKE LINE OF t_line.
    LOOP AT t_line INTO wa_line.
      it_tab-tdformat = wa_line-tdformat.
      it_tab-tdline = wa_line-tdline.
      it_tab-matnr = IT_TAB-matnr.
      APPEND it_tab.
    ENDLOOP.
    Regards,
    Kavi

  • BLOB Support in Reports - Download Text

    I have included a BLOB database column within my report. Now I would like to use the name of the file that was uploaded into the BLOB database field as my download text instead of the default download text "Download".
    According the APEX User's Guide 4.0 substitution strings are permitted in the 11th position of the DOWNLOAD format:
    11 Download Text String used for the download link. If nothing provided, Download is used. Note that this will support substitutions (useful for translated applications).
    I have tried the following DOWNLOAD format but the file name is not substituted as the download text.
    DOWNLOAD:PIBDOCS:PIBDOCS_FILE:PIBDOCS_ID::PIBDOCS_MIME_TYPE::PIBDOCS_BLOB_DATE:PIBDOCS_CHAR_SET:attachment:#PIBDOCS_FILE_NAME#
    Is there any way to use a database column (PIBDOCS_FILE_NAME), instead of a page item, within the substitution string?

    create another column for file name, then you can use jquery to change text, title of td "download". here is sample code you can use.
    <script type="text/javascript">
    $(document).ready(function ()
    $(".apexir_WORKSHEET_DATA tr").each(function() {
      $this = $(this)
      var fileName= $this.find("td:nth-child(9)").text();
      $this.find("td:nth-child(7) a").prop('title', fileName);
    $('.apexir_WORKSHEET_DATA td:nth-child(9),th:nth-child(9)').hide();
    </script>

  • Preventing html text from downloading before image

    Hi. I am so NEW to this. I just created my first web site
    ever! It's mine.
    Problem: If anyone goes to see the site for the first time
    and clicks on the links--my html text downloads before my images,
    and this looks weird for a second. What can I do to fix that?
    Anything simple? My site is:
    http://www.lolabernabe.com
    Thanks so much for your help. I will miss this forum after
    Adobe changes it!
    L.

    "manhattangirl" <[email protected]> wrote in
    message
    news:gntn65$bts$[email protected]..
    > Hi. I am so NEW to this. I just created my first web
    site ever! It's mine.
    >
    > Problem: If anyone goes to see the site for the first
    time and clicks on
    > the
    > links--my html text downloads before my images, and this
    looks weird for a
    > second. What can I do to fix that? Anything simple?
    >
    > Thanks so much for your help. I will miss this forum
    after Adobe changes
    > it!
    >
    > L.
    >
    Hi L
    This is a normal part of the process. The html text is
    smaller in size than
    your images, so loads much quicker.
    Even if there were some way to hold back the display of the
    text until the
    images are downloaded, I would suggest that you wouldnt
    really want to do
    that.
    Imagine someone coming to your newly created web site
    (congratulations!),
    and they see nothing on the page.
    Many people would think that either the site is too slow and
    might not hang
    around. Its much better for them to see something happening
    on the page
    straight away.
    My advice would be to learn how to optimise your images to
    get them to
    download as quickly as they can, without destroying too much
    quality of the
    image. If your images are really large, in physical size,
    perhaps you could
    consider slicing them into a couple of sections, so that it
    doesnt take as
    long for something to appear on the page.
    Regards
    Fiona

  • Faulty iDisk downloads to ipod touch

    Has anyone else experienced this problem with idisk and ipod touch?
    I have tried several times via apple care and my apple store to correct a problem of incomplete downloads with the iDisk application to my ipod touch.
    A page of four small jpeg photos will randomly drop one of the four photos when accessed via iDisk on my touch.
    Each touch I have tried suffered the same problem.
    Accessing the file from a computer works correctly.
    Likewise, a page of text downloads incompletely . . . about 1/3 to 1/4 of the bottom of each page is missing when downloaded to an ipod touch.
    I am baffled that the genius's at the Apple store are totally unconcerned with my issue, and that no one at apple care will even listen to a mobile me related issue.
    In theory, idisk would be a great tool for a touch, in practice it seems useless for a touch.
    I'm not just complaining, I'd like my idisk app to function as it should, any advice will be appreciated. It's sad that I have to turn to a public forum to seek an answer, rather than getting support from Apple.
    thanks, bob

    maybe reading this thread helps: http://discussions.apple.com/message.jspa?messageID=10977658#10977658.

  • Mulitple File Downloads in AIR

    ** EDIT **
    Just tested. I was throttling the downloads to 28kbps. Think
    there must be a timeout on the file functions, as when it was reset
    without throttling, the file downloaded 100%. Is there a way to
    reset/remove a timeout on a URLStream?
    Good morning all.
    I'm having trouble with a file download component I've
    written. It worked fine debugging, but when testing an installed
    version of the application, there seems to be a problem with the
    loop, and files not completely downloading.
    I have tested, and one file in the loop is writing to the
    directory (event.complete action) at about 45%.
    How can I check if the total bytes downloaded is the same as
    total available, and if not, force it to carry on the download for
    that particular item?
    The code for the page is below:
    public function Update():void {
    if(appModel.fileArrCol.length > 0) {
    var urlReq:URLRequest = new
    URLRequest(appModel.fileArrCol[0][1].toString());
    trace(urlReq.url);
    urlStream = new URLStream();
    urlStream.addEventListener(IOErrorEvent.IO_ERROR,
    onStreamError);
    urlStream.addEventListener(ProgressEvent.PROGRESS,
    progressHandler);
    urlStream.addEventListener(Event.COMPLETE,
    fileTransferHandler);
    urlStream.load(urlReq);
    private function fileTransferHandler(event:Event):void {
    urlStream.readBytes(fileData, 0, urlStream.bytesAvailable);
    var fileLoc:String = appModel.fileArrCol[0][2].toString() +
    appModel.fileArrCol[0][0].toString();
    var file:File =
    File.applicationStorageDirectory.resolvePath(fileLoc);
    var fileStream:FileStream = new FileStream();
    fileStream.addEventListener(Event.CLOSE, fileClosed);
    fileStream.addEventListener(IOErrorEvent.IO_ERROR,
    onStreamError);
    fileStream.openAsync(file, FileMode.WRITE);
    fileStream.writeBytes(fileData, 0, fileData.length);
    fileStream.close();
    trace("File " + appModel.fileArrCol.length + ": " +
    appModel.fileArrCol[0][0].toString());
    private function onStreamError(event:IOErrorEvent):void{
    //Alert.show("Invalid Username or Password!","Warning");
    this.showCloseButton =true;
    btnUpdate.visible = true;
    trace(event.text);
    private function progressHandler(event:ProgressEvent):void {
    /* bar.setProgress( Number(event.bytesLoaded /
    event.bytesTotal), 1 ); */
    bar.setProgress(event.bytesLoaded,event.bytesTotal);
    progLabel.text = "Downloading " +
    Math.round(event.bytesLoaded / 1024) + " kb of " +
    Math.round(event.bytesTotal / 1024) + " kb " +
    (appModel.fileArr.length - 1) + " files remaining";
    private function fileClosed(event:Event):void {
    // run a progress bar or sqlite table update here
    appModel.fileArrCol.removeItemAt(0);
    if (appModel.fileArrCol.length > 0){
    Update();
    } else {
    progLabel.text = "Uploads Complete";
    var thisServerVersion:String =
    appModel.fileDownloadServerVersion;
    var thisDescription:String =
    appModel.fileDownloadDescription;
    var thisDownloadDate:String = appModel.fileDownloadDate;
    // store the file download details within the database table
    if(appModel.checkFileDownloadHistory(thisServerVersion).valueOf()
    > 0) {
    // a record matches the version number in the xml. do
    nothing
    } else {
    appModel.storeFileDownloadHistory(thisServerVersion,thisDescription,thisDownloadDate);
    // close the box down
    PopUpManager.removePopUp(this)
    public function init():void{
    btnUpdate.visible = false;
    this.showCloseButton = true;
    if (appModel.urlAvailable){
    Update();
    }else{
    Alert.show("No Network Connection Detected","Message");
    this.showCloseButton =true;
    btnUpdate.visible = true;
    public function titleWindow_close(evt:CloseEvent):void {
    PopUpManager.removePopUp(this)
    The application reads the number of files from an xml file on
    the server. That works fine, but I think the loop is wrong. In
    debug, it traces the file names without a problem
    Please please please can someone help me? I need to get this
    sorted and resolved by this lunchtime.
    Many thanks in advance,
    Matt

    http://kb.mozillazine.org/Unable_to_save_or_download_files
    Separate Issue;
    Your System Details shows;
    Installed Plug-ins
    Shockwave Flash 16.0 r0
    Shockwave Flash 11.9 r900
    Having more than one version of a program may cause issues.
    Grab the uninstaller from here:
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html Uninstall Flash Player | Windows]'''
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html Uninstall Flash Player | Mac]'''
    Then reinstall the latest version.
    Flash Player '''v16.0.0.257<br>https://www.adobe.com/products/flashplayer/distribution3.html'''
    Shockwave Director '''v12.1.6.156 http://get.adobe.com/shockwave/'''

  • Show File name as download link in a report

    Hi people,
    In an application (APEX 4.2.1) I have a reprot whith a file donwload column. I implemented the download as a BLOB column with "DOWNLOAD" as Format Mask. This works fine, I can download attachments, no probs so far. However, I want the Download Text to show the name of the actual file instead of a static text "Download".
    Any suggestions on this?
    Kind regards,
    Vincent Deelen

    Hi fac586,
    Thanks for your reply.Actually, my first thougt was to use #FILE_NAME# reference, I tried it again, but it doesn't really work for me. I end up with a download link that reads exactly "#FILE_NAME#".
    I've put up an example in my demo app to show:
    http://apex.oracle.com/pls/apex/f?p=vincentdeelen:31:0:::::
    I've included screenshots of the page setup in the report.
    Regards,
    Vincent

  • 4.2 blob download format mask not working

    I am using Apex 4.2
    I have been working through the book Beginning Oracle Application Express 4. In chapter 6 the a blob is added to a report.
    I have pasted the code example into the report definition (albeit with my own page numbers) :
    SELECT
       "TICKET_DETAILS"."TICKET_DETAILS_ID" "TICKET_DETAILS_ID",
       "TICKET_DETAILS"."TICKET_ID" "TICKET_ID",
       "TICKET_DETAILS"."DETAILS" "DETAILS",
       "TICKET_DETAILS"."CREATED_ON" "CREATED_ON",
       "TICKET_DETAILS"."CREATED_BY" "CREATED_BY",
       dbms_lob.getlength("ATTACHMENT") ATTACHMENT
    FROM
       "TICKET_DETAILS"
    WHERE (("TICKET_DETAILS"."TICKET_ID" = :P5_TICKET_ID))
    I go to the report attributes and click on the attachment column.  I enter the suggested format mask
    DOWNLOAD:TICKET_DETAILS:ATTACHMENT:TICKET_DETAILS_ID::MIME_TYPE:FILE_NAME:::inline:Download.
    When I press apply I keep getting :
    1 error has occurred
    "" not found. (Go to error)
    I have confirmed that the query runs and that P5_TICKET_ID does exist on page 5.
    Not understanding what this meant I tracked down this page
    17.10 About BLOB Support in Forms and Reports
    and the section "Providing a Download Link" seems to confirm that the above format mask is correct.
    Any pointers would be greatly appreciated.

    I've also done the exercises in the book and it worked for me.
    Your format mask is correct. But before pressing submit you also have to enter the blob column attributes:
    *Format Mask (Value Required):                   DOWNLOAD
    *Blob Table (Value Required):                       TICKET_DETAILS
    *Blob Column (Value Required):                   ATTACHMENT
    *Primary Key Column 1 (Value Required):     TICKET_DETAILS_ID
    Primary Key Column 2:
    Mimetype Column:                                      MIME_TYPE
    Filename Column:                                       FILE_NAME
    Last Updated Column
    Character Set Column:
    Content Disposition:                                    ATTACHMENT
    Download Text:                                           Download
    Maybe you forgot that?

Maybe you are looking for

  • Data lost in Production

    Hi Everyone, We got a very big problem in production system. We had transported one ztable (contains customer number, material as primary key) to production earlier. this ztable contains data which was updated by users. We had changed date also prima

  • Communicate with IMac to Nokia N8

    You can send files to a Nokia N8 (or any bluetooth smart phone) via the iMac's bluetooth connection. Excell or Word files or a contacts. To transfer a contact to your Nokia phone first export the contact as a .vcf file to a folder in your iMac and th

  • PRIMAVERA 6.0 - CIM Techologies, Inc. - Davao City

    PRIMAVERA 6.0 ENTERPRISE FOR PROJECT MANAGEMENT Course 102 This course provides hands-on training for Primavera's client/server based solution Participants will gain a thorough background in the concepts of planning and scheduling. Scheduling techniq

  • I need to Change my security questions because I don't know them how do I do this

    I need to change my security questions because I don't know them how can I do this

  • ReOrder Point Quantity Exceeded

    When I create a sales order (VA01) for a TAC item category (assembly order), I do not receive the warning message V1108 "Reorder point for item & has been exceeded:&" I have searched SDN and OSS.  I found OSS note 88054 which perfectly describes the