How can I change Quotation EKPO-AGMEM using BAPI

How can I change Quotation EKPO-AGMEM using BAPI

As I said in my previous post, column headers in Excel are merely row 1 cells. May be I missing something here, so please be more explicit with your question.
I guess you are using the Excel Report tools, and you want to modify an existing sheet. From my limited experience with the Excel Report tools, it is not possible to open an existing woorkbook (except as template...), so the answer to your question should be "Forget it"...
The work around is to use the example I pointed for you before, and either to write the whole new colum headers as a string array, starting in A1, or to write a single string to a given cell in row 1.
Hope this helps 
Chilly Charly    (aka CC)
         E-List Master - Kudos glutton - Press the yellow button on the left...        

Similar Messages

  • How can I change excel column header using Labile.

    Dear Experts,
                          How can i change excel column header using LabVIEW.
    Thanks for any and all help!
    M.S.Sivaraj.
    Sivaraj M.S
    CLD

    As I said in my previous post, column headers in Excel are merely row 1 cells. May be I missing something here, so please be more explicit with your question.
    I guess you are using the Excel Report tools, and you want to modify an existing sheet. From my limited experience with the Excel Report tools, it is not possible to open an existing woorkbook (except as template...), so the answer to your question should be "Forget it"...
    The work around is to use the example I pointed for you before, and either to write the whole new colum headers as a string array, starting in A1, or to write a single string to a given cell in row 1.
    Hope this helps 
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • HT204411 My boss gave ma a gift card but I can not use it in my country, how can I change country to star using it?

    My boss gave ma a gift card but I can not use it in my country, how can I change country to star using it?

    You cannot change your iTunes country unless you are really moving to another country, nor can you change country association for a gift card.  Give it as a gift to a friend who lives in the country of origin for the card.

  • How can i change mx:Label /Label using css?

    Dear Experts,
    It is funny that <mx:Label> </mx:Label> doesn't have property to change the background color.
    Does anyone know how can i change <mx:Label></Label> using css?
    Regards,
    Man Pak Hong, Dave
    [email protected]

    I think you have set the backgroundcolor for Label in Flex4...? In Flex3 doesn'y allow to set the background color directly...However you can use this work around if you want to set the background color.
    You can also set the color for textField in the code below by using the textField styleSheet property.
    <?xml version="1.0" encoding="utf-8"?><mx:Application  xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="applyBGtoLabel()">
     <mx:Script>
    <![CDATA[
     import mx.controls.Text; 
    private function applyBGtoLabel():void{
    var textField:TextField = new TextField();textField = myLabel.mx_internal::getTextField();
    textField.background =
    true;textField.backgroundColor = 0xFF0000;
    ]]>
    </mx:Script>
     <mx:Label  id="myLabel" text="Apply a background color for me....please" height="25" />
     </mx:Application>
    Thanks ,
    Bhasker Chari.S

  • How can i change the number im using for FaceTime?

    Everytime i try to call someone on facetime it comes out as another number using the same apple id, how can i change that?

    Hello Lazboy1,
    The following article details both the processes for unlinking a phone number and correcting the lack of a phone number attached.
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Cheers,
    Allen

  • How can I change the database & schema used by an Application?

    Hi community,
    I am very new on Essbase and I need help to find out how can I change the database connection (and schema) used by the database of an Application. The figure is that I need to point this database to a QA environment (currently it points to DEV).
    If I do a right click over the properties of the database, I can see the following tabs: [ General ][ Dimensions ][ Statistics ][ Modifications ][ Compression ]. However, there is no option to change the database connection.
    Is there a way to do this?
    Thanks in advance for any help! Cheers!

    Are you trying to change a database connection of Planning application?
    Essbase application do not have a relational connection.
    Regards
    Celvin
    http://www.orahyplabs.com

  • How can I change Label's text using ActionScript?

    Hi~ everyone~
    I want change Label's text using ActionScript.
    Test.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" initialize="init()">
    <fx:Script>
      <![CDATA[
       private function init():void{
        var btn:BtnScript = new BtnScript();
        this.addElement(btn);
      ]]>
    </fx:Script>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:Label x="182" y="149" text="Label" id="lbl"/>
    </s:Application>
    BtnScript.as
    package
    import flash.events.MouseEvent;
    import mx.controls.Alert;
    import spark.components.Button;
    public class BtnScript extends Button
      public function BtnScript()
       super();
       this.addEventListener(MouseEvent.CLICK, eventHandler);
      private function eventHandler(event:MouseEvent):void{
              // lbl.text = "changed text";
           // HOW CAN I ACCESS LABEL IN MXML FILE?
    I'm about to learn flex. Please help me.
    Thanks in advanced.

    You could achive this very easily(but this shouldn't be used in production code as it'll be difficult to manage as the project grows) by defining a static data member varibale of DataType Label something like below, (modified/added code in BOLD)
    Test.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" initialize="init()"
          creationComplete="creationCompleteHandler(event)">
    <fx:Script>
      <![CDATA[
       private function init():void{
         var btn:BtnScript = new BtnScript();
         this.addElement(btn);
       private function creationCompleteHandler(event:FlexEvent):void{
         Model.someLabel = lbl;
      ]]>
    </fx:Script>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:Label x="182" y="149" text="Label" id="lbl"/>
    </s:Application>
    BtnScript.as
    package
      import flash.events.MouseEvent;
      import mx.controls.Alert;
      import spark.components.Button;
      public class BtnScript extends Button
        public function BtnScript()
          super();
          this.addEventListener(MouseEvent.CLICK, eventHandler);
        private function eventHandler(event:MouseEvent):void{
              // lbl.text = "changed text";
          // Now use Model.someLabel which is basically 'lbl'.
          Model.someLabel.text = "changed text";  //Mission Accomplished....
    Model.as
    package
      public class Model
        public static someLabel:Label;
    Note: This approach is just to give you an idea but instead should use the MVC pattern.

  • My computer is off and set up on Japanese. I can not login anymore because I type the password in English but the keyboard was set up last in Japanese language.how can I change the language by using the keyboard only so that I can write in English my pass

    Hi
    My computer was shut down. It was set on Japanese Hiragana language before shutting down. Now I want to login with my password in English. Yet, teh keyboard was set in Japanese and thus, I can not login anymore. How can I reset/change from Hiragana Japanese mode to Englsih ( US) with some shortcuts on my keyboard?
    thank you

    Try Apple/Command + space.
    For the future, go to system prefs/accounts/login items and check the box for Show Input Menu on Login Screen.

  • How can I change a style setter using code?

    I have several Labels using the same Style:
    <Canvas.Resources>
    <
    Style TargetType="{x:Type Label}" x:Key="TitleStyle">
    <
    Setter Property="FontSize" Value="24"/>
    <Setter Property="FontWeight" Value="Bold"/>
    </Style>
    </Canvas.Resources>
    I'd like to change the Setter "FontSize" using some code.
    Any idea?

    You cannot change a setter (or anything else in a style) once the style is in use.
    You can create a new style, remove the current style from the resources, and add the new style as the value for key "TitleStyle".  Elements that used DynamicResource to refer to the style will change, but elements that used StaticResource will not.
    Another approach is to add a trigger to your style.  Then you can get the effect of changing FontSize from code:  just have the code change the value that the trigger reads as its input.
    Yet another approach is to data-bind the FontSize to some property that you can change from code, and attach a ValueConverter to the binding that chooses the size you want.

  • How can I change the active Midlet using the '*' cell phone button

    Hello
    I've got a problem trying to do that in J2ME MIDP:
    'I have different class extending Midlet that I want to display one after the other. The change may be done when I click the '*' button of my cell phone'
    For the moment I've created a main class that extend Canvas and which contain a vector of objects extending Midlet.
    I'm able to change the objet which I want to display, but not to display it....
    Is it possible to do that?
    Do you have any idea of how to deal with that?
    Thanks a lot...

    Hello
    Thx for your answer .. but I shouldn't have explain correctly my problem because I don't think this answer it .. sorry
    I need an interaction between a Midlet class and a Canvas class.
    In fact I have several forms, and I need to allow my Canvas class to change the form displayed when a button is pressed.
    But If I have a form in a Midlet , I can display it but can't catch the click on a button.
    And if my Canvas is displayed I don't know how to display the form I want to.
    So is it possible to do that... and if so, how?
    Thank you very much...
    Al161084
    Message was edited by:
    al161084.1

  • My ical will not let me add events it saying my calender was created by mail.  How can I change this.  We use mobile me and synch

    Does anyone know how I can add events to my desktop ical when the message I receive says that the calender was created by Mail
    I do not know how this happened.  I managed to synch and change this some months ago but I do not know how!

    Hi Cara,
    Welcome to Discussions.
    With iCal closed, try deleting it's preference file (User/Library/Preferences/com.apple.iCal.plist).
    If this does not work try repairing permissions. Open Disk Utility (Applications/Utilities/Disk Utility) and select your boot volume on the left and click Repair Permissions.
    If neither of these work post back.
    John M

  • How can i change what number imessage uses?

    I have two iphones, the 4 and the 4s, and both of them are using the same imessage number but this number i have never used. since the number is grayed on my phone i cannot change it. but when i go to my number it shows the actuall number i am using.  I also cant send mms unless i am sending it to someone who has an iphone through imessage, but when i put the number that imessage is trying to verify , in messages its like i am talking to myself. i have reset my network settings and i have turned imessage and facetime off a hundred times and nothing has worked. i set my iphone as new so i dont understand why its doing that help anyone its really annoying when u have a new phone and u cant use it like u want to. any advice would be greatly apperciated no matter how small the information is .

    Try turning off iMessage, wait a minute or two, then turn it back on.  Also, confirm that your number is correct in Settings>Phone>My Number.

  • How can I change file encoding for use in Itunes?

    For instance, aiff to apple lossles files, or mp3 to apple lossless, or any other conversion. And which is best?

    I don't really understand some of the settings that you posted. Stereo and joint stereo are two different things, so you can't encode as both at the same time. For modern MP3 compression, joint stereo is usually preferred, because it allows the encoder to use fewer bits in encoding the stereo information, and it doesn't result in any perceptual losses in stereo imaging.
    48.000 kHz is pointless unless you are ripping from source material that is actually at that sample rate. Redbook-standard CD audio is at 44.100 kHz, so just stick with that (or better yet, leave the sample rate setting at "auto" so it will pick the setting that matches the source material you are ripping from).
    320 kbps is kind of overkill as well. Actually, if you want to rip to MP3, I would advise you to stay away from the iTunes encoder, because most listening tests indicate that it hasn't been updated much since the first versions of iTunes back in the late 1990s. It is no longer a modern encoder. Assuming that you are on a Mac, I suggest that you download the iTunes-LAME plugin (http://www.apple.com/downloads/macosx/ipod_itunes/ituneslameencoder.html), which allows you to encode tracks into the iTunes Music Library using the LAME MP3 encoder. LAME is an open-source encoder project that has been continuously developed over many years and has been heavily tested for transparency. The latest version (3.97b1) has been shown in listening tests to be almost the same quality as equivilent-bitrate AAC files.
    Once you download the iTunes-LAME plug-in, you can install the latest version of LAME by going to http://www.rarewares.org/mp3.html . Scroll down to "Encoders/decoders built using LAME 3.97 beta 1" and download "For Mac OS X." This is a Unix Executable file. To install it in the iTunes-LAME plugin, go to Your User Folder/Library/iTunes/Scripts. Right click on the iTunes-LAME application and select "Show Package Contents." Open the "Contents" folder that appears and then open the "Resources" folder. You should see a Unix Executable there titled "lame." Replace this file with the 3.97b1 Unix Executable that you downloaded. Now iTunes-LAME will encode with LAME v.3.97b1 instead of its default LAME build. 3.97b1 has some major improvements over earlier LAME versions, so even though this installation process may seem daunting for some people, it is well worth it.
    To use iTunes-LAME, you first select a CD or playlist from the Source list (the left-hand column) in iTunes. You then click on the Script menu (the little script icon) and select "Import with LAME...". iTunes-LAME opens, showing you a command line and an Import button. LAME encoding options are selected using command-line switches. Fortunately, there are variable bit-rate (VBR) presets that have been heavily tested for transparency, so you don't really need to know anything about the command line options. Just type in "-V 2 --vbr-new," which is one of the most heavily-tested presets, and hit the Import button. This results in variable bit rate files that usually average out to between 170 and 240 kbps, depending on the complexity of the source. For more information on the presets, see http://wiki.hydrogenaudio.org/index.php?title=LAME#RecommendedEncoderSettings
    The only major downside to using iTunes-LAME is that it cannot take advantage of iTunes' error correction option when ripping CDs. If you want error correction though, you can always just have iTunes rip to WAV first, and then convert those WAV files to MP3 using the iTunes-LAME plugin.
    Feel free to ask any more questions.

  • How can I change the email address used to authorize my computer?

    I borrowed ebooks from a public library using a different email address which I should have used to authorized my computer hosting the adobe digital edition. Is there a way to modify the email address used to authorize my computer as I get an error message when I try to return the books. Thanks

    This says it was assumed answered but where is the answer?  I've gone thru the Help processes to do this but it doesn't change.  The old address is still there.  I have trouble returning books to the library and getting new books.

  • How can I change the email I use for my Apple ID

    I deleted my email account because it got hacked and I want to change my Apple ID email

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Manage your Apple ID -
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/

Maybe you are looking for

  • Screen field pass as a parameter

    Hi, Can i pass a screen field as import parameter or table to user exit ??? Regards Nitin Varshney

  • Reg : Getting trigger name

    Hi all, Is there any way to get all the TRIGGERS defined for an specific field item. For eg: If an Text Item has 3 triggers namely (When-Validate-Item, Key-Next-Item & Post-Text-Item). Programatically can we get those names ? Thanks & Regards,

  • How does chat applet works?

    how does chat applet works? What specific technologies should i learn to make a chat messaging work? thanks in advance for ur help...

  • Altering the shape of pixels in illustrator

    Hello! I was wondering if anyone might be able to give me some advice on how to alter the shape of the pixels in an image to a custom pixel shape in illustrator. Thanks in advance.

  • Programs that rely on Java won't work since upgrade to Lion!!!

    I opened a program yesterday after the I upgraded to Lion and a message box opened up stating that it would have to update Java for the program to work.  The java update seemed to work but the program never opened.  I tried to re open the program aga