README: PLEASE Use Appropriate Post Titles!

See title.
But seriously, some posts have been beyond ambiguous lately, along the lines of:
Help! Noob question!
Simple problem!
Almost there!
Etc..
Such titles are ineffective at conveying the nature of the issue.
Choosing an accurate, descriptive and appropriate post title will attract solutions effectively and help other users, when utilizing the forum search feature, to find a solution.
Thanks, and enjoy Arch.

Not really... Context is paramount. And please don't bump stickies, they're meant to be read, not to end up like yet another topic.

Similar Messages

  • Sap script - please use meaningfull subject titles....

    Hi,
    My requirement is to print theree texts in theree different lines.So I declared the texts in SAP script with the command "/".
    Buut in spool I am getting all the three texts in one single line.Can anyone suggest how to get the texts in three different line?
    Thanks in advance.
    Edited by: Julius Bussche on Jan 22, 2009 2:30 PM

    Ginger
    One solution to this can be creating 3 separate windows and displaying text in each one of them separately. Make sure the allignment of these windows is exactly in the way you require the text to get displayed.
    The other way can be by declaring a new character format and going about it. Like for paragraph format XX, you can use it like,
    XX    ALL THE BEST.
    XX    GOOD JOB.
    XX    WELL DONE.
    Hope this is useful.
    Regards
    Harsh
    Edited by: Harsh Talesra on Jan 22, 2009 2:13 PM
    Edited by: Harsh Talesra on Jan 22, 2009 2:27 PM

  • Bapi - please use meaningfull subject titles!

    HI experts,
            I have uploaded txt file into itab and then splitted itab-record at comma and populated itab1.itab1 is having quantity field of type char13. This itab1 is to be passed to bapi_requision_create.To do this, I am moving itab1 to 'requision_items' tab where quantity is of  p. when I am moving itab1-qunatity to requisition-quantity , it says , that it can't be moved.How to handle ? my  code is as below,
    loop at it_bapiebanc into wa_bapiebanc.
      wa_bapiebanc1-doc_type(4)            = wa_bapiebanc-doc_type(4).
      wa_bapiebanc1-PREQ_ITEM(5)        = wa_bapiebanc-PREQ_ITEM(5).
      wa_bapiebanc1-material(18)              = wa_bapiebanc-material(18).
      wa_bapiebanc1-SHORT_TEXT(40)      = wa_bapiebanc-SHORT_TEXT(40).
    wa_bapiebanc1-quantity(13)            = wa_bapiebanc-quantity(13).
      wa_bapiebanc1-unit(3)                    = wa_bapiebanc-unit(3).
      wa_bapiebanc1-DELIV_DATE(8)      = wa_bapiebanc-DELIV_DATE(8).
      wa_bapiebanc1-PUR_GROUP(3)        = wa_bapiebanc-PUR_GROUP(3).
      wa_bapiebanc1-MAT_GRP(9)             = wa_bapiebanc-MAT_GRP(9).
      wa_bapiebanc1-plant(4)                     = wa_bapiebanc-plant(4).
      wa_bapiebanc1-STORE_LOC(4)        = wa_bapiebanc-STORE_LOC(4).
      append wa_bapiebanc1 to it_bapiebanc1.
      endloop.
    data :
    it_bapiebanc type standard table of ty_bapiebanc,
    it_bapiebanc1 type standard table of bapiebanc.
    rgds,
    khadeer.
    Edited by: Julius Bussche on Mar 22, 2009 11:35 PM

    Hi,
    You have mentioned that ITAB1 has Qty field of Char13 and BAPI field of Type P.I am not clear here.
    When i looked at BAPI it has Qty of 13 length.
    Change ITAB1 quantity field as same as BAPI Qty field and try to load it.It should work.
    Sudheer

  • File upload using http-post in OSB

    Hi All,
    I am trying to upload a file using http-post method in OSB.
    I have created a business service pointing to the service url, with http method post.
    and calling this business service from a proxy service.
    I am unable to send the form data to the business service.
    Please let me know how to send trhe form data and the file information.
    The error given by Business Service is-
    the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is text/plain
    Thanks in advance.
    Seemant
    Edited by: Seemant Srivastava on Oct 12, 2010 12:28 PM

    Hi Anuj,
    A sample HTML form code for. Post HTTP service-
    <html>
    <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CSV File</title>
    </head>
    <body>
    <form method="post" enctype="multipart/form-data" action="http://xyz/UploadFile">
    <table>
    <tr>
    <td> Feed id </td>
    <td><input type="text" name="refid" value="" size="20"></td>
    </tr>
    <tr>
    <td> Username (optional)</td>
    <td><input type="text" name="username" value="" size="20"></td>
    </tr>
    <tr>
    <td> Password (optional)</td>
    <td><input type="password" name="password" value="" size="20"></td>
    </tr>
    <tr><td> Select CSV File </td>
    <td> <input type="file" name="upload" value="" width="30"/></td>
    </tr>
    <tr>
    <td><input type="submit" name="Ok" value="Go"> <input type="reset" name="reset" value="Reset"> </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    I need to pass all these information to OSB business service.

  • How  to communicate with a remote application that uses http post to request connection

    Ok, I will try to make this simple as to avoid any
    confusion.
    I am trying to receive connection requests from remote applications installed on user pc's.
    The application uses POST method to send the request to connect to my database, and if required update some tables.
    The application is not a webpage. I have no access to the internal workings of the application nor do I have any specific information about how it sends its POST. I am sure of the following:
    The app will POST to my .cfm page
    "IsConnectionAllowed" = "yes"
    This is asking my cfm page if its ok to connect. I would need to use a <cfif> to verify the the first part of the POST is in fact
    "IsConnectionAllowed" = "yes"
    If this returns true, (the app also uses to POST to pass "username" and "password") my .cfm page will then perform a query and check the username and password against the database. If a matching record is found, the application expects my page to reply with
    "#Answer# OK- connected;"
    Once the answer is given the application will then respond with data to insert or update my tables.
    Now, I know how to do the queries and update tables etc, but I have never received data from an application before.
    I tried using the <cfform> tag with a mehod of GET, and then trying to send my reply with <cfoutput>, but that didn't work. The application doesn't give any feedback or error messages. It either connects or not.
    I also tried the <cfhttp> tag, but that didnt work either. I am not very experinced with coldfusion. I used it years ago and am just getting back into it.
    I am sure this is a pretty easy thing to do, but my methods arent working.
    Using the above information, can somone please show me how I would accomplish this communication? I can then use the same method to retrieve the data for my table updates and queries.
    Here is a sample of what I have already tried:
    <cfform method="get">
    <cfif>
    "IsConnectionAllowed" = "yes"
    <!-- I need to query a username or password. But for testing I will just give the OK to connect -->
    <cfoutput>#Answer# Ok - connected;</cfoutput>
    <cfelse>
    <!-- When I query username and password, if the query returns no records I deny the connection -->
    <cfoutput>#Answer# Not connected;</cfoutput>
    </cfif>
    </cfform>
    BTW, I have examples of this being done using .php and .asp. I need to do this using .cfm. I can post the either the .php or.asp code if it will be helpful in converting the function into a .cfm page.

    Thanks Fernis.
    That code allowed me to connect!
    I have an error on the remote application, but I think thats due to the fact that I commented out the database connection and query strings. As I am mostly concerned with connection at this point, I just wanted to test that my cfm page will recognise the POST request and send the right answer, In this case
    ##Answer## Ok - connected;
    That worked perfectly and the application received the ok to connect.
    I can now use your code as a base to carry on with my database connection and update query.
    I can't thank you enough. I wouldnt have figured that out in a million years of trial and error.
    I knew it was simple though. I was over thinking it.
    I do have one last question though... In the code you presented you have
    <cfif structKeyExists(Form,"isConnectionAllowed") AND form.isConnectionAllowed EQ "yes">
    Can you you explain this    structKeyExists(Form,"isConnectionAllowed")
    I have never seen this before. Why the Form followed by a comma? I am guessing you are asking if there is an element in the POST called "isConnectionAllowed". Is that correct?  If so, do I not need to do that for each POST'ed element such as username, password, and each of the other fields that will be updated in the session?

  • How to use method POST to send XML using utl_http?

    Hi,
    I am trying to work out how to use the POST method to mimic submitting data from a HTML form, using utl_http.
    I cannot use SOAP for this as the people I am sending the data to are just expecting an XML document to be sent to a standard CGI script running on their web server.
    There is a lot of documentation on how to submit data using the POST method (using Utl_Http.Write_Text etc), but I cannot find anything that tells me how to submit form variables.
    The examples on OTN say this:
    "Alternatively use method => 'POST' and Utl_Http.Write_Text to
    build an arbitrarily long message"
    but don't tell me how to actually place the data into the required input parameters of the CGI program I am hitting.
    I need to hit a URL such as
    www.asite.com/cgiprogram
    and pass in a parameter, eg
    in_param="test+data"
    I am currently doing this as a GET, which works, but the XML document I am passing in could potentially be bigger than the GET method will allow.
    Any help would be greatly appreciated.
    Thanks,
    Leon.

    Please try the PL/SQl forum

  • Purpose of this Forum (Server General) *** Please Read Before Posting ***

    Welcome to Windows Server General Forum !
    This is an English TechNet forum, Please post your queries in English !
    Scope:
    The name "General" has a very broad significance and sometimes that might lead to some ambiguities.
    The scope of this forum is to answer General "Server Administration" related queries pertaining
    to Windows Server 2003, Windows Server 2008 / R2 and 2012  operating systems.
    Again, "Server Administration" has innumerous aspects and at times it becomes bit difficult to categorize
    them.
    We try to answer your questions in General or provide troubleshooting support in depth as and when necessary
    based on the context of the query.
    Questions could be related to AD, GP, Server OS related Queries/issues/errors, general troubleshooting etc…
    list is too huge and it's highly difficult to elaborate them here :-) 
    We understand that this scope and purpose can be a little confusing, we apologize for any confusion.
    If you might not know the scope or purpose of this forum, we'll redirect you to read this thread if we need
    to explain how this forum works.
    Out of Scope:
    Queries on following (but not limited to…) are Out of scope in this forum.
    Scripting
    SBS
    - Small Business Server
    IIS
    Coding/Development: 
    Windows Client Operating Systems
    Exchange
    Server
    Lync
    TFS
    SQL
    server
    Visual
    Studio
    .Net 
    SharePoint: 
    SCCM, SCOM
    Third Party Applications
    etc… 
    We might (but do not claim to) answer some of the out of scope questions directly here. If we do,
    then it's just a Bonus ! and it's not the purpose or in the scope of what this forum provides.
    Moving Threads:
    It may happen that, your question might have been moved to this forum in an attempt by another moderator from
    a different forum to help you find the correct forum or we might move your threads to an appropriate forum as and when necessary.
    If a community member gave you the URL/link of a specific Technet forum, then you may request a move to that
    specified forum (If a link to the forum category is specified; you'll still need to pick a specific forum from that category) or thread will be moved to the appropriate forum if a Moderator is around.
    NOTE:
    We cannot move a thread to another Microsoft forum that's not in the TechNet Forum System such as ASP.net,
    IIS.net and Answers.Microsoft.com etc… So we can only provide links to those forums.
    Marking Answers:
    We propose a reply (such as a link about where to go ask your question) to a recent question as an answer,
    and then we will usually wait one week (~7 days) before we mark it as the answer. We prefer you (the Asker/OP - Original Poster) to mark the answer, but we do not require it if you abandon the thread for a long time.
    If you (the Asker/OP - Original Poster) refuse to let us propose and mark an answer (without telling us why
    and helping us figure out the alternatives/workarounds), then we might need to lock a thread or move it to the Off Topic forum.
    Please Read Before Posting:
    How
    to ask a question efficiently in TechNet forum 
    We have dedicated Server
    Forums for different products/technologies, please consider posting your queries in appropriate forum for better help and support.
    If you can't figure out where exactly to post your questions, please seek help in "Where
    is the Forum For...?" forum and you will be given a URL/Link to an appropriate forum where you can post your questions.
    Official
    Microsoft Forum Sites
    Credits: 
    Ed
    Price - MSFT (Forum Owner) 
    This sticky has been created inspired by the Sticky on Where is the Forum for.. forum.
    Regards, Santosh 
    MVP - Directory Services
    I do not represent the organisation I work for, all the opinions expressed
    here are my own. 
    This posting is provided "AS IS" with no warranties or guarantees and confers no rights. 
    Blog | Wiki 
    If you have issues with your account verification or you can not post images, please get your account verified
    by posting request in below linked thread.
    Verify Your Account 7

    Something new (or not noticed by me before) then as this thread appears as normal discussion in
    My Thread view. 
    Regards, Dave Patrick ....
    New UI has this functionality i.e. if you reply on a sticky, it will appears as a 'Discussion' in thread view.
    Regards, Santosh
    I do not represent the organisation I work for, all the opinions expressed here, are my own and posted AS IS.

  • :-( Same thread in several forum // Post title not explicit !

    Hi forum users,
    Please, do not post several times your question.
    Please, put an explicit title !
    ( Please refer to the chart // rules )
    Regards,
    Erwan

    I'm agree with u
    Max

  • Change color of blog post title

    Hello, I'm trying to change the color of the post title (REGLAS DE ACENTUACIÓN. Palabras agudas), but not working.
    Here is the link:
    http://ivink.com/confundidos-entre-letras
    And here is the code that I have insert:
    .blog-post h2.post-title {
    color: #CC0000;
    font-size: 22px;
    font-weight: bold;
    font-family: droid-sans, sans-serif;
    line-height: 1.2;
    Title is not getting the red color.
    Thanks very much for any help.
    Ignacio

    You should always use inspect tools like firebug or the inbuilt ones in browsers. You would see the titles have an anchor inside which has its style.
    Change that to - .post-title > a

  • Use FI Posting date as a filter value, can I get YTD for current year?

    Dear Expert,
    I work on a BI report which calculate the YTD key figure (restricted by 0CYEAR and =< 0CMONTH).
    One of the requirement for the report is to allow user to enter a value for a date using FI Posting date (although this is optional).
    Without entering the value for FI Posting date, my report works fine.
    But once FI Posting date is entered, no data found.
    I expect that when the value for the FI Posting date is entered, the YTD value will be calcuated starting from the Jan 1 of that FI Posting year to the FI Posting date entered.
    But this seems not happen.
    Could you help me to resolve this problem?
    If there is a better solution, please let me know.
    Very appreciated.
    Arthur

    Hi Dipika,
    Thanks for your reply.
    In my report, FI Posting date is a free characteristic, which user can optionally select it and fiter it for a specific FI Posting Date. Do you consider it as a global filter?
    my query structure is as below:
    rows: profit center, department, manager
    columns: YTD for current year, YTD for Previous year, the difference betwwen the two
    The requirement is when user enter a FI Posting date, use it  to restrict the KF shown above.
    For example, if the FI posting date is March 15, 2008, then YTD for current year should be restricted by the period between Jan 1, 2008 and March 15, 2008 and YTD for previous year should be restricted by Jan 1, 2007 and March 15, 2007.
    Do you have any idea how to implement this requirement in term of FI Posting date?
    Thanks and appreciated.
    Arthur

  • What function module is used to post application fees of an applicant in SLcM

    Hi Experts,
    Can any one please tell me what function module is used to post the application fees to fico in student life cycle management?
    Thanks & Regards,
    Prashanti Swain

    Prashanti,
        You can use Function module "CMAC_ISR_FEES" to post application fee.
    Thanks,
    Prabhat Singh

  • Error "printhead problem please use setup cartidge that came with the printer"

    Hi, I have purchased a HP Deskjet 5525 All in one printer, it was working perfectly till 1 year, then i had not used it about 6 months, now when tried to use it again then it was throwing the error "Printhead is damaged, missing, not installed properly or damaged etc...",  then i cleaned the printhead and reinstalled it in printer then i inserted the cartidge now its generating the error "please use setup cartidge that came with printer" but among the setup cardige "yellow", "magenta", "Cyan" is accessible  by printer but when i use the black then it says "properly not installed, missing cartidge".
    So please tell me  do i need to purchase a new black cartidge, will it work? or what shoud i do ?
    cartidge NO- 685
    Thanks
    Nirmal

    Hi @nirmal007,
    Welcome to the HP Support Forum!  I understand you're having cartridge issues with your HP Deskjet Ink Advantage 5525 e-All-in-One Printer.  I would like to assist you with clearing up that error state and have some troubleshooting steps that may resolve the issue. 
    I recommend you try the following steps before you consider purchasing a new black ink cartridge.  Firstly after you've confirmed that your ink levels are not the problem (example - the level is above 10%), try a 'hard reset':
    Secondly:
    Make sure that the ink cartridges are properly vented and seated correctly
    If the vent on the top of the ink cartridge is clogged or obstructed, the ink cartridge might not work properly. Follow these steps to make sure that the ink cartridges are properly vented and seated correctly.
    Press the Power button to turn on the printer, if it is not already turned on. Wait until the printer is idle and silent before continuing.
    Open the cartridge access door. The carriage moves to the access area.
    Figure : Open the cartridge access door
    Press the tab on the front of the cartridge inward to release it, and then pull up on the cartridge to remove it from the slot.
    Figure : Remove the cartridge from the slot
    Examine the vent area on each cartridge, above the HP logo on the top of the cartridge.
    Figure : Vent area on the top of the cartridge
    If the cartridge still has the orange pull-tab attached, pull to remove it.
    Figure : Orange pull tab
    If the vent is clogged, use a straight pin to gently remove excess adhesive from the vent.
    Figure : Clean the clogged vent with a pin
    Clogged vent
    With a straight pin, gently remove excess adhesive from the vent
    Unclogged vent
    With the nozzle and contacts facing down, slide the cartridge into its slot. Press down on the cartridge until it clicks into place.
     note:Make sure that each cartridge is installed in the correct slot. Match the shape of the icon and the color of the cartridge with the slot that has the same shaped icon and color.
    Figure : Reinsert the cartridge
    Repeat these steps to inspect the vents on each of the cartridges.
    Make sure that each cartridge is firmly in place in its slot. Run your finger along the top of the cartridges to feel for any that are protruding, and if any are, press down firmly until each cartridge snaps into place.
    Close the cartridge access door.
    Figure : Close the cartridge access door
    Source
    Thirdly, try cleaning your cartridge contacts:
    Manually cleaning the print cartridge contacts
    Follow the steps below to manually clean the print cartridge contacts:
    Gather the following items to clean the contacts:
    Distilled water (tap water may contain contaminants that can damage the print cartridge)
    Cotton swabs or other soft, lint-free material that will not stick to the print cartridge
    Open the print cartridge door.
    Remove the print cartridge and place it on a piece of paper with the ink nozzle plate facing up.
     caution:
    Do not to touch the copper-colored contacts or the ink nozzle plate with your fingersFigure : Do not touch copper-colored contacts
     caution:Do not leave the print cartridge outside the printer for more than 30 minutes. Ink nozzles exposed to the air longer than this may dry out and cause printing problems.
    Lightly moisten a cotton swab with distilled water and squeeze any excess water from the swab.
    Gently wipe the copper-colored contacts with the cotton swab.
     caution:Do not touch the ink nozzle plate. Touching the ink nozzle plate will result in clogs, ink failure, and bad electrical connections.
    Repeat steps 4 and 5 until no ink residue or dust appears on a clean swab.
    Insert the print cartridge in the printer, and then close the print cartridge door.
    Source
    If you've tried all of the above noted steps and you're still unable to use the black cartridge, you may need to pick up a new one.  Let me know if this helps.  Best of luck! 
    E-roq
    I work on behalf of HP.
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • "please use setup.exe for installati​on instead of blackberry desktop software.m​si" error when trying to install the software through 610_b038_m​ultilangua​ge.exe

    "please use setup.exe for installation instead of blackberry desktop software.msi" error when trying to install the software through 610_b038_multilanguage.exe
    I need to install this so that i can transfer my contacts and calendar to my laptop

    Hi and Welcome to the Community!
    Sorry to be dense, but what happens when you do exactly as the message instructs?
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • When using the online editor in our wordpress blog on any other online editor I get this error "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X)" Please help.

    I have online editors for our blog and websites for generating articles and blog posts. Different editors from different sites and programmers. Firefox doesn't allow me to use the cut/paste/copy functions with these editors. I get this message or something similar every time. "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X)"

    See:
    *http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard
    *https://addons.mozilla.org/firefox/addon/852 - AllowClipboard Helper

  • What transaction code and entrys we use to post intercompany transactions

    hi,
    I know obya is used to configure intercompany.
    1.can you explain what accounting entrys we post.example?
    2.what tcode we use to post the intercompany transaction
    3.please any relevant documents can email to [email protected]
    thanks
    Kiranmayi

    we have 2 theories after showing the exception trace to folks who r more adept at managed code.
    the first is related to the fact that our 3rd party dlls (I think entity framework is included in these) r older versions.  I don't want to discount this theory but we have some evidence already that this might not be true.
    I hope I can do justice to the 2nd theory but will make it clearer and clearer as I get a better understanding.  I believe this is what Arthur was saying and I applaud his instincts.  They explained that .net is so "smart" that it detected
    a change in namespace  (ie context as Arthur said) and purposely threw an exception 2 save us from ourselves.  The workarounds discussed were a bit over my head but I will continue trying to better understand it.  The fact that many of the methods
    we call after reflection r now merged into one assembly seemed relevant to the discussion and possible workarounds.   
    this link came up in their discussion and I believe the bottom line here is that by qualifying assembly names further (in config?)r, a workaround is possible. 
    http://msdn.microsoft.com/en-us/library/system.type.assemblyqualifiedname(v=vs.110).aspx  .
    This link came up as well and has something to do with ILMerge and workarounds to ILMerge. 
    http://elegantcode.com/2011/04/02/dynamically-load-embedded-assemblies-because-ilmerge-appeared-to-be-out/  .
    Finally, this link came up and seems to have something to do with embedding your dlls in one assembly without them losing their identity.
    http://blogs.msdn.com/b/microsoft_press/archive/2010/02/03/jeffrey-richter-excerpt-2-from-clr-via-c-third-edition.aspx
    I'll post more here as we muddle thru this.

Maybe you are looking for

  • Templates for XML documents  in Dreamweaver CS3?

    I have a strange question. Is it possible to create a DW template (.dwt) for an XML document with editable and repeatable regions? I would like to set up some templates that will allow my users to create new XML files and edit the appropriate regions

  • Why are not all of my pictures showing on the pc computer but do on my ipad?

    I have copied pictures to my icloud roll when using my ipad and see them in my ipad on my roll but when I go on to the pc and pull up my icloud, a lot of the pictures don't show up?

  • How Do I get My USB backup drive to wake after iMac wakes from sleep?

    I backup using Time Machine to a USB portable drive. When my iMac goes to sleep and wakes later, the drive icon is still on the desktop but it is not recognized by Time Machine as an available drive for backup. I have to shut off the drive and turn i

  • Mail to users that don't exist....

    Hiya How can I make email sent to a non existant address ([email protected]) get bounced to the sender. At the moment everything is being received by my admin account. Surely there is a way to set this up? Please help.... shambeko

  • To devs - feature request: finer channel output control

    dunno how easy it would be to implement such a thing but it would be awesome if channel output was a little more flexible using ffdshow I downmix multitrack audio to pretty much whatever, and I use 4 channels (L,C,R,LFE) which sound waaay better than