Draft

Hi,
  I have a problem in Purchase Order form.
  I have designed an adobe form for Purchase Order.  Its working fine.  Now the new requirement is... in EKKO table there is a field which decides whether the Purchase Order is released or not (EKKO-FRGKE).  If this field is with the status 'R', then the Purchase Order is released.
  So my problem is, who ever prints the PO, if the EKKO-FRGKE NE 'R', then 'DRAFT' text needs to be appear across the form.  If the filed EKKO-FRGKE = 'R' then 'DRAFT' text need not to appear.  Any inputs on this.
thanks in advance.

Kishore,
Carry out the following steps :-
1. Populate the value from SAP in the required field EKKO-FRGKE from your SAP program.
2. Right Click on Page1 in the Hierarchy palette and click Insert Subform.
3. Now since there is no direct mechanism of displaying Watemarks in Adobe Forms like MS Word. Hence have a look at this [thread|watermark in pdf.; for possible workaround. Add the text object from Standard Library at suitable position to your master page so that it appears on all pages of your PO form.
4.Assuming you keep the name of the Text object as Text1, write the following JavaScript in initialize event of the subform added in step2.
if(EKKO-FRGKE == "R")       // This means PO has been release and we don't want to display *Draft* text.
     form1.pageSet.Page1.Text1.presence = "hidden";  
else
     form1.pageSet.Page1.Text1.presence = "visible";  
Chintan

Similar Messages

  • Using iPad mail program I have a draft of an email. I attempted to "cancel" and "delete draft" but it is still on my screen even after shutting down and restarting. How do I exit so that I can use other mail functions?

    Using iPad mail program I have a draft of an email. I have attempted to "cancel" this and "delete draft" but the email stays on my screen. How can I exit this so that I can use other email functions?

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Problems in creating a Goods Receipt Draft

    Hello,
    I am trying to use the DI-API and the SDK to create a Goods Receipt Draft document and link it to an existing Purchase Order.  When I try to add the draft object, I receive an internal error (-2010).  Here is the code that I am using.  Can someone see if anything is wrong with this, or does anyone have any insights into this type of error?
    SAPbobsCOM.Documents draft = null;
    draft = company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oDrafts);
    draft.Reference1 = tempDocEntry;
    draft.CardCode = tempCardCode;
    draft.DocDate = DateTime.Now;
    draft.NumAtCard = tempOrderNumber;
    draft.DocObjectCode = SAPbobsCOM.BoObjectTypes.oPurchaseDeliveryNotes;     // Used so that the objType will be 20 for a Goods Receipt Draft
    draft.Comments = "";
    draft.Lines.BaseEntry = System.Convert.ToInt32(tempDocEntry);
    draft.Lines.BaseLine = System.Convert.ToInt32(row["Line #"].ToString());
    draft.Lines.BaseType = System.Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oPurchaseOrders);
    draft.Lines.ItemCode = row["Item #"].ToString();
    draft.Lines.Quantity = System.Convert.ToInt32(row["Qty"].ToString());
    draft.Lines.Price = System.Convert.ToDouble(row["unit price (USD)"].ToString());
    draft.Lines.WarehouseCode = "0" + row["Whse Code"].ToString();   // prepend with zero, if the code is of length 1
    draft.Lines.Add();
    result = draft.Add();        // Add the draft now
    if (result != 0)
          thisError = company.GetLastErrorDescription();     //*** THE ERROR RESULT IS RETURNED HERE...
    I am hoping that someone can provide some feedback and direction on this one fairly quickly as I am on a pretty tight time constraint to implement this solution.
    Thanks,
    Jonathan

    Hi Jonathan,
    I haven't tested your code but I notice that you are calling the Add method of the Lines child object incorrectly. It's a bit confusing but the Lines.Add method should be called first and then you use the SetCurrentLine method to access the properties of this line. To make it more confusing, a new instance of the Documents object automatically gets one, blank line so you only need to call Lines.Add when adding a second line (and each subsequent line).
    For example, say I have a recordset of line details from a base PO that I want to add to a new, draft GRPO:
    int lineIndex = 0;
    while (!rec.EOF)
         if (lineIndex > 0) draft.Lines.Add(); // Only need to add new line after first one
         draft.Lines.SetCurrentLine(lineIndex); // Set focus to newly added line so I can set properties
         draft.Lines.BaseEntry = System.Convert.ToInt32(rec.Fields.Item("DocEntry").Value);
         draft.Lines.BaseLine = System.Convert.ToInt32(rec.Fields.Item("LineNum").Value);
         draft.Lines.BaseType = System.Convert.ToInt32(SAPbobsCOM.BoObjectTypes.oPurchaseOrders);
         draft.Lines.ItemCode = System.Convert.ToString(rec.Fields.Item("ItemCode").Value);
         draft.Lines.Quantity = System.Convert.ToDouble(rec.Fields.Item("Quantity").Value);
         draft.Lines.Price = System.Convert.ToDouble(rec.Fields.Item("Price").Value);
         draft.Lines.WarehouseCode = System.Convert.ToString(rec.Fields.Item("WhsCode").Value);
         lineIndex++;
         rec.MoveNext();
    Kind Regards,
    Owen

  • When I am writing an email, I get an alert message that says "The message could not be copied or moved to the drafts folder. Writing to the folder failed. To ga

    When I am writing an email, I get an alert message that says “The message could not be copied or moved to the drafts folder. Writing to the folder failed. To gain disc space, choose Empty Deleted and choose Compact Folders and try again.”
    If I do that, I get a message saying “There was an error copying to the Sent folder,, retry?”
    If I retry it sends the uncompleted email. All I can do is keep deleting the message and carry on. Then the whole business might repeat itself.
    Help!
    Frank

    Because the location for each song in your library is on your hard drive.  If the hard drive isn't there, how can iTunes play it?
    You'll have to move/copy the music from your hard drive to your computer's hard drive.
    Basically, EASIEST way to do all this, if you don't care about your play counts, etc...
    -Delete EVERYTHING from iTunes, so that your library is now empty.
    -Go to "Advanced" inside of the "Preferences" window, found in the "Edit" drop-down.  You can also access Preferences by pressing Ctrl+, (Press Ctrl and the comma key)
    -Change your iTunes Media Folder Location to something simple, but on your computer. I use C:/iTunes.  Make sure "Keep iTunes Media Folder Organized" and "Copy files to...." are both checked.  You can close Preferences now.
    -Now, drag and drop your music from your hard drive into your iTunes library.  iTunes will automatically add the music to your library, as you would expect, and also creates a copy of each file to place into that iTunes Media Folder you just created.
    Shouldn't have any more problems...

  • Draft Message

    Problem Statement : While Drafting a Message, If I select multiple contacts in the "To" and draft message also. How can I save draft message.
    Expected Solution : If I press go back, it should automatically show me in all messages list as "Draft Status".

    To Sync Draft messages from your Nokia phone to your Nokia Suite,
    1. Click on the Messages option in the suite.
    2. Under (messages in Nokia), select Drafts.
    3. The draft messages will all be listed on the center window.
    4. Select all the messages you plan to sync; Click, hold and drag them to the Drafts folder on top left (ie in the Suite).
    All the best

  • Drafts folder relocation Outlook 2013 and Gmail IMAP and multiple saves to trash folder

    Hi,
    I have Office professional 2013 32 bit running on Win 7 64bit. I have an issue that I know has been discussed but I see no resolution.
    The drafts are saved on the server not locally and the trash folder fills with multiple copies of the draft, the number of copies appears to relate to the time of editing the draft. I have to go in and delete these copies in Trash after writing an email.
    Outlook 2013 does not allow me to remap the drafts folder I click unsubscribe and it says the folder is a special folder and cannot be unsubscribed in Outlook. I use the account on my iPhone and this allows me to unsubscribe from the folder.
    Has anyone found a solution or is anyone working on a resolution for this problem?
    Best regards,
    Clive
    Regards, Clive

    I am having a similar problem with trash receiving multiple copies of some drafts. In last 20 minutes 19 copies of a draft have been included in trash. It seems to happen when I view a draft --but not solely
    Using Outlook 2013 with IMAP GMail on windows 7 on a laptop. It synchs with my IPHONE. Yesterday I called Dell Support. They said it was a virus -- though a thorough scan found one item --it was deleted and problem continues.

  • Incoming mail going into Drafts folder

    I don't have any mail rules set. I get hundreds of emails a day all going to my Inbox (or Junk). Mail from one particular sender goes into my Drafts folder so I usually miss it. How can I stop this?

    Mail>Preferences>Junk Mail
    Uncheck the 2 boxes marked below.

  • Mail going to DRAFTS

    I have a Yosemite 10.10.1/OSX Server 4 network. One client machine, new iMac also with 10.10.1, is consistently finding his outbound email going to the DRAFTS folder, and not being sent.  However, when he re-sends from DRAFTS, the mail goes out.
    What do I need to check or change to have mail sent correctly?
    Thanks in advance.
    Ken

    For reference the support statements and requirements for Exchange 2010 virtualization are here
    http://technet.microsoft.com/en-us/library/jj126252(v=exchg.141).aspx
    They are over and able the regular support requirements.
    Cheers,
    Rhoderick
    Microsoft Senior Exchange PFE
    Blog:
    http://blogs.technet.com/rmilne 
    Twitter:   LinkedIn:
      Facebook:
      XING:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Mail Messages Going To Drafts Folder

    Almost every mail message I compose - both new messages and replies - are showing up in the Drafts folder.  These seem to be identical to messages after they are sent and appearing in the Sent folder.  I'm not saving them at any time, so why would these messages go to "Drafts"?
    Thanks,
    JD

    While indeed unchecking this option stops the behavior, it's not the best of solutions.  The options to save drafts on server is available with any decent IMAP program, and generally is very beneficial.  Say I start a message on my Mac, and then have to leave before it's done.  If it's saved to the server, I can then pick this message up later on my iPhone or iPad and complete it and send it.  Or I can start it on an iOS device, have it save to the server from there, and then pick it up on my Mac later to complete.
    So, the functionality of "Save drafts on server" is widely known amongst IMAP clients, and it would be nice if Apple Mail would simply replace a previous draft of a particular message with the latest version rather than piling up multiple versions of the email.  Also, it's customary that when you eventually send the message, the drafts also disappear.
    It would also help if there was a way to increase the auto-save time to a longer setting so that they don't pile up so fast.
    Danita

  • Mail Going To Drafts Folder

    I have a seemingly strange issue in that whenever I write one particular recipient the email ends up in my Drafts folder. When I check the Sent folder its shows as Sent. Is it really sent? And if so why is it sending a copy to Drafts?

    While indeed unchecking this option stops the behavior, it's not the best of solutions.  The options to save drafts on server is available with any decent IMAP program, and generally is very beneficial.  Say I start a message on my Mac, and then have to leave before it's done.  If it's saved to the server, I can then pick this message up later on my iPhone or iPad and complete it and send it.  Or I can start it on an iOS device, have it save to the server from there, and then pick it up on my Mac later to complete.
    So, the functionality of "Save drafts on server" is widely known amongst IMAP clients, and it would be nice if Apple Mail would simply replace a previous draft of a particular message with the latest version rather than piling up multiple versions of the email.  Also, it's customary that when you eventually send the message, the drafts also disappear.
    It would also help if there was a way to increase the auto-save time to a longer setting so that they don't pile up so fast.
    Danita

  • Error: Not able send mail from OWA 2010. When I send mail, the mails go to Drafts Folder.

    Error: Not able to send mail from OWA 2010. When I send mail, the mails go to Drafts Folder. I have installed everything correctly but when I tried to open the OWA and trying to send mail from OWA. The mails do not deliver and mails become saved in Drafts folder. I tried to re-send messaged from Draft also but not able to send. 
    Screen Shot: http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/Error%20-%20Not%20Able%20to%20Send%20Mail%20from%20OWA%202010.docx
    Scenario: I have below configuration of exchange 2010 server Setup:
    1. Windows Domain Controller with Global Catalog on Windows Server 2008 which only for Windows 2008 Server Native.
    Server Name: WDC2010
    Domain: Blazex.Com
    2. Hub/Client Access Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Hub/Client Access Exchange role servers.
    Server Name: HC2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Hub and Client Access Server.
    3. Mailbox Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Mailbox Exchange role servers.
    Server Name: MBX2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Mailbox Server.
    4. 2nd  Mailbox Server: It is installed on Windows Server 2008. As per Microsoft recommendation, I have just installed Windows Server 2008 and then join this computer to Blazex.com.
    After that installed the Mailbox Exchange role servers.
    Server Name: 2MBX2010.blazex.com (This is not a Addition Member server or ADC)
    Role: Mailbox Server.
    5. Client Windows 7: It is installed on Windows 7 Ultimate Workstation. As per Microsoft recommendation, I have just installed Windows 7 and then join this computer to Blazex.com.
    Workstation Name: WIN7.blazex.com
    Role: Workstation
    Error Description: I have installed everything correctly but when I tried to open the OWA and trying to send mail from OWA. The mails do not deliver and mails become saved in Drafts folder. I tried to re-send messaged from Draft also but not able to send. 
    Screen Shot (Same As Above): http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/Error%20-%20Not%20Able%20to%20Send%20Mail%20from%20OWA%202010.docx
    I don't know what I am missing but I think there is some configuration I need to do on Hub/Client Access Server (HC2010).  I tried to access the mailbox on XP Client system through OWA. I get the same problem as Win7.
    Can someone please help me on this?
    Thanks and Regards
    Shambhu

    Hi Subhash,
    I have done the troubleshooting but I didn't find any problem at server side. I will send you mail also with all EXBPA report and as well DC, HC and Mailbox servers' Application Log and System Log.
    Below are the questions's answers which was asked by you:
    1.     Please check whether you can send email via Outlook.
    I am not able to open the MS Outlook. Please check all details in this thread : http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/c491c5c7-7d6f-48ff-97fa-6bf83d94e53c
    2.     Please run EXBPA to have a health scan.
    I have run the EXBPA and didn't see any critical Problem. I have took the screen shot and report. Please have a look in below screen shot link:
    a. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/EXBPA.docx                                                                            - Final Report
    b. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.BaseLine.200906270226501077.data.xml                        - Baseline Health Check
    c. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Connectivity%20Test.200906270223318201.data.xml      - Connectivity Check
    d. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Health%20Check.200906270125477730.data.xml            - Health Check with 2 Hr. Baseline option
    e. http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/ExBPA.Permission%20Check.200906270224343377.data.xml      - Permission Report
    The error which I received in EXBPA, that allready ignored by you and told that it is bug in EXBPA. Have a look here: http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/d4bb03bb-db84-4a8b-83ba-19937d7dcacf
    3.     Please check application log, whether any error event logged there. They could come from ADAccess related error or etc.
    I didn't see any ADAccess event on the server. For this I have left my lab PC open and I will check again.
    4.     We find that if mail .que gets corrupt, then this issue will occur, please try to move the affected user to another store and then test the issue.
    I am facing this problem with all users (7 users). Anyway I moved one user from one server Mailbox Database (2mbx2010) to Other Server Mailbox Database (mbx2010). After that
    a) Rebooted the Workstation
    b) Login successfully with same user.
    c) Delete the Old MS Outlook Profile
    d) Create New profile for same user without any problem.
    e) Tried to login in MS Outlook and got the same error. : http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/c491c5c7-7d6f-48ff-97fa-6bf83d94e53c
    f) Open the OWA successfully for Same user.
    g) Tried to send mail but again mail went to Drafts Folder.
    5.     I noticed that you test the issue after you close outlook. I recommend you to reboot your pc and then access
    mailbox via OWA to test the issue.
    I tried you suggested option, but sorry it also couldn't help.
    6.  You also check your disk space.
         All Servers have Enough Disk Space. Check the EXBPA Report.
    7. You may run EXTRA to get log information for further troubleshooting.
      Need more time for this.
    8. Please save application log, system log as *.evt file, then send them with EXTRA,EXBPA report to [email protected] .
       I have sent it as your mentioned mail address OR, you can get the mentioned log from below link also:
       a) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/WDC2010%7C_APPLICATION.evtx           - DC/GC Application Log
       b) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/WDC2010%7C_SYSTEMEVENT.evtx          - DC/GC System Log
       c) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/HC2010%7C_APPLICATION.evtx              - Hub/Client Application Log
       d) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/HC2010%7C_SYSTEM.evtx                      - Hub/Client System Log
       e) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/MBX2010%7C_Application.evtx                - Mailbox Application Log
       f) http://cid-31ba948d0da4d57e.skydrive.live.com/self.aspx/.Public/MBX2010%7C_System.evtx                      - Mailbox System Log
    There will be some error log you will be that the system is not able to communicate with DC/DC, MBX or HC at everyday around 3 AM or some time 6 PM Evening also. These error came because I have installed VM on Windows 7 Workstation and after 45 min or one hrs. if I don't work on PC, then pc goes to sleep. so you may ignore these alerts.
    I hope my answer will give you some clue and I expect more help from your side.
    With Best Regards
    Shambhu Sharma

  • Mail is sending drafts to my inbox

    So I have 2 mail accounts set up through Mail, a Gmail account and another through my web domain. Within Mail itself, I have no problems, however when I am composing an email or reply on the Gmail account, whenever Mail auto-saves a draft, that draft shows up as an email to myself on my blackberry (which is set up to also receive both email accounts). This doesn't happen when composing an email from my phone, or at all with my other account.
    Has anyone else run into this problem? Is there a way to fix this without disabling the draft auto-save? Any help/insight would be amazing as I've grown a bit tired of having to delete 40 emails from my phones inbox every time i write a semi-lengthy email.
    Thanks in advance!

    We started having the same trouble with our gmail account in the last couple of days. I would say that it's happening every 30 seconds or so.
    Our msn email account does not seem to have the same trouble.
    Any suggestions would be appreciated.

  • Mail messages going to drafts

    My email messages are all ending up in the drafts folder, even though they have been sent. Any way to get these out of the drafts folder??

    I am having the same problem... started about 2-3 months ago.... a copy of all mail messages is saved to draft, even though they are sent... Anyone figure this out yet???
    thanks so much
    Rose

  • Iphone 3, sync'd with Exchange, sent mail goes to draft folder

    Sent Mail (Exchange Account), is going to the drafts folder

    NOTE: This also applies to Exchange 2010
    You may want to check that you are getting Event ID 15002 or 15003 logged to the Application event log first before making this change.
    See this
    ExchangeServerPro article for reference.
    Also, see this
    Krudler blog post for shortened version.
    Please ensure if you are modifying the
    "PercentageDatabaseDiskSpaceUsedHighThreshold" value in the EdgeTransport.exe.config file, you should take into consideration the percentage value notified in the Event Log.
    See this
    MS Technet article for more technical information.
    I had the same error as Shimon1 when using the MailFlow Tool in Exchange, however I did not have event 15002 in my Application Event Log. I resolved this problem by:
    Modify the TCP/IP network protocol settings using the following commands
    netsh int tcp set global chimney=disabled
    netsh int tcp set global rss=disabled
    netsh int tcp set global autotuninglevel=disabled
    netsh int ip set global taskoffload=disabled
    I noticed when viewing individual messages in the queue in Exchange Management Console Queue Viewer, they had this message:
    "Error: 4.3.2 432 STOREDRV.Deliver; recipient thread limit exceeded"
    This was resolved with the help of this
    MS blog on Exchange SP1 improvements.
    I made the following addition to the EdgeTransport.exe.config file.
        <add key="RecipientThreadLimit" value="2" />
        <add key="MaxMailboxDeliveryPerMdbConnections" value="3" />

  • IPhone Deletes eMail message when moving to Draft Folder

    Hi, here's a nice bug.
    I repled to a message, but it failed to send it so it wnet into the Outbox automatically. I came back later and decided to move it to the draft folder. "Poof", the message is instead deleted. Nice feature, Apple.
    Anyone know where to submit bugs - is that the same place you submit suggestions 4 improvement?

    I called apple about this bug a few weeks ago. It is an error with any POP email accounts. You cannot move emails between folders, they dissapear. They are working on the problem they told me.

  • MS Access Freezes and Closes when I save a draft email via Outlook 2013

    I have Access 2013 Office 365.  When I email a report from access via Outlook 2013 I have problems.  Outlook opens fine. If I hit send everything is fine. However if I save the email as a draft Access freezes and then closes after a 10- 15 sec delay.
    The email is saved as a draft in Outlook but very annoying to have to reopen my Database .
    The message I get is : MS Access has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available
    I tried compact and repair but that didn't help. Also tried turned of add ons. That didn't work.
    Never had this problem with office 2010.  What can I do?
    I just discovered the same thing  is happening in Excel and Word.

    Hi all,
    Thanks for visiting our forum and sharing your experience here. It'll be benefited to our communicator.
    Have a good time.
    Regards,
    George Zhao
    TechNet Community Support

Maybe you are looking for

  • Where can I get an original x58 Pro-E IOH chipset heatsink assy?

    Recently built an i7 gaming rig and like everyone else had high nb temps which I'm not very keen on. I had a Thermalright HR-05 from another build (took it out of my old system and replaced it with the original HS and sold that PC leaving me with it)

  • Line rejection - excise issue

    Dear Gurus, I have made return PO for line rejection & made GRN against this PO.During GRN there is visible of BED,CESS with movement type 161.But during excise return into T code J1IS, there is no display of BED,CESS, even by selecting material & go

  • Error in Mat Doc. Cancel (102 Mvt)

    Dear Friends, I am getting the following error while  cancel of Material Document : "Deficit of PU IR quantity 1.000 NOS"     Message no. M7021 The material is a capital Material type (Non Valuated - No Value-Qty update) Account assignment is "A" ass

  • Users folder permission

    My friend was updating her macbook, she said she was doing an update for Microsoft office. Upon reboot it will hang at a blue screen. I can't even get it to go into safe mode. Anyways, I didn't want to mess around with it, I wanted to get her files o

  • Set Block order by property

    Hi Everybody i am using oracle 6i forms. I have Database block and have one display field non database item. I want set order by on that field(non databse field),bt no idea how can i set, can anybody help me. thanx in advance