Adding Price List lines in exising Price List

Hi All,
I have a requirement to create some price list, which i am doing it through PROCESS PRICE LIST API. Now as per our next phase, i need to insert new lines in that same price list.
Is there any API throught which i can achieve this.
Thanks
Aryan

Same API Aryan - you can do update, insert and delete with it: look at some of the worked examples in the api guide, on MOS and in the scripts pre-loaded in $QP_TOP.
Regards,
Jon

Similar Messages

  • Modifying recently added song list

    iTunes 9.0
    is it possible to customise the recently added song list?
    I have imported a lot of albums in one go but only want some of the albums to show up in recently added. I was hoping I could remover some of the albums from the recently added list, is there a way to do this?
    Christo

    Oh, I just discovered how to create a smart playlist. Cool.

  • Adding a Goal Line to a chart in Webi

    Post Author: geozuh
    CA Forum: WebIntelligence Reporting
    Does anyone know how to add a goal line to a chart created in WEbi? It seems like this would be a standard option.

    Post Author: jsanzone
    CA Forum: WebIntelligence Reporting
    geozuh,
    You would think that adding a goal line to a WebI report would be an available option within the software package, but it is not (but this sure sounds like a viable enhancement, so hopefully some of the Business Objects Enhancement Gurus are listening in).
    It should be possible with a bit of fiddling with data in your database to create a "reference-type" table that could mimic all of the data values present but you would "plug" a metric-type column with the goal.  For instance, on your bar graph you have x and y coordinates.  The x could be the total sales by year, the y is the items (I know, I should be using an example from E-Fashion, but I'm not up-to-speed on it).  In your "reference-type" table you would replicate all of the year and item data and create a new column (perhaps called "goal") which you plug with the goal value.  In your universe you can link the two tables and when the report runs, voila you have all of your data.  Now you can use the "vertical bar and line" graph to plot your old x and y and use z for the goal.  Just a thought, and I know, "it's the long road to China", but hopefully you've got some ideas to tool with now.

  • 2 Sports channels to be added to your line-up.

    i want to request 2 Sports channels to be added to your line-up.
    BEIN SPORTS  &  PAC12

    celticpride wrote:
    I received an email from verizon today saying that in april they will be dropping G4 and adding esquire  tv on channel 191? not sure of channel number or if the new channel will be in HD. BTW will verizon have all the nba league pass channels in HD and dual feeds like directv next year?
    Just so we're clear, Verizon isn't dropping G4 - G4 is going away. It is no more. It's being converted into the Esquire Channel. It's not a matter of Verizon dropping one for the other. So before people start a million threads whining about "Why is Verizon dropping G4?!" I hope they know the facts. 

  • Group address (from mail list) is added to subject line

    Just this week-without changing any settings-emails that are sent to a mailing list show the addressee in the subject line as well as the address, but in brackets, i.e. address [email protected] / subject -[[email protected]] great news!
    I checked with my ISP who hosts our mail and they thought it might be a virus attached to address book or mail program.
    Can anyone help? It is a problem in annoyance only, altho it interferes with searching.

    Just this week-without changing any settings-emails
    that are sent to a mailing list show the addressee in
    the subject line as well as the address, but in
    brackets, i.e. address [email protected] / subject
    -[[email protected]] great news!
    That is very unusual. You might want to check with the mailing list administrator and see if anything has changed there. Is there anything unusual about the way you create and send these messages?
    I checked with my ISP who hosts our mail and they
    thought it might be a virus attached to address book
    or mail program.
    Hmph, obviously they haven't got the slightest clue what they're talking about. This might be true with a Windows machine, but there is no such virus on Macs. You can safely set this worry aside.

  • Duplicated values when added to list of list

    Hey all,
    I'm making a list of lists, when I print the values just after adding in the list of list everything seems fine, but when I print that list where I call it it has duplicate value instead of the 2 different that I see when I first print it, I really don't know what's wrong.
    I tried 2 different declarations for the list of list but is the same result, I also tried using index to add the list but no change either.
    What is wrong? or how should I do it instead.
    Thanks in advance
    The code is this
    public class ReadFile extends Metrics{
        public List loadFile(String filename) throws IOException{//void
            FileInputStream fstream = null;
            ///TRACE POINTS
                List<TracePoint> CharPoints=new ArrayList<TracePoint>();
                List<List> ListaChars = new ArrayList<List>();
                //List<List<TracePoint>> ListaChars = new ArrayList<List<TracePoint>>();
            try {
                fstream = new FileInputStream(filename);//"xy.dat");
                DataInputStream in = new DataInputStream(fstream);
                BufferedReader br = new BufferedReader(new InputStreamReader(in));
                String strLine;
                Normalize norm = new Normalize();
           //Read File Line By Line
                while((strLine = br.readLine())!= null) {
                    int INDEX=0;
                    ///READING VALUES FROM XY FILE and splittting
                    String[] temp = strLine.split(" ");
                    ///clear list before reusing it
                    CharPoints.clear();
                    String[] tempNorm = norm.normalize(temp, 0, 1);
                    for (int i = 1 ; i < tempNorm.length ; i=i+2){
                        CharPoints.add(new TracePoint(Float.parseFloat(tempNorm),Float.parseFloat(tempNorm[i+1])));
    ListaChars.add(INDEX, CharPoints);
    System.out.println(" Charpoints is "+ CharPoints);
    System.out.println(" LISTofCHARS is "+ ListaChars);
    INDEX++;
    //Close the input stream
    in.close();
    }catch (FileNotFoundException ex) {
    Logger.getLogger(ReadFile.class.getName()).log(Level.SEVERE, null, ex);
    }finally {
    try {
    fstream.close();
    } catch (IOException ex) {
    Logger.getLogger(ReadFile.class.getName()).log(Level.SEVERE, null, ex);
    //return CharPoints;
    return ListaChars;
    public static void main(String args[]) throws IOException{
    ReadFile test2 = new ReadFile();
    List<List> characters = new ArrayList<List>();
    characters = test2.loadFile("xy.dat");
    //System.out.println("\ncharacters = " +" "+ characters.get(0));
    The result is this, the first look like its copying ok, but when the second is added is duplicated and the first value is not there anymoreCharpoints is [TracePoint: 0.395683, 0.913669, 0.000000, TracePoint: 0.136691, 0.928058, 0.000000, TracePoint: 0.000000, 1.000000, 0.000000]
    LISTofCHARS is [[TracePoint: 0.395683, 0.913669, 0.000000, TracePoint: 0.136691, 0.928058, 0.000000, TracePoint: 0.000000, 1.000000, 0.000000]]
    Charpoints is [TracePoint: 1.000000, 0.004096, 0.000000, TracePoint: 0.999937, 0.003151, 0.000000, TracePoint: 0.999811, 0.001765, 0.000000, TracePoint: 0.998866, 0.000000, 0.000000]
    LISTofCHARS is [[TracePoint: 1.000000, 0.004096, 0.000000, TracePoint: 0.999937, 0.003151, 0.000000, TracePoint: 0.999811, 0.001765, 0.000000, TracePoint: 0.998866, 0.000000, 0.000000], [TracePoint: 1.000000, 0.004096, 0.000000, TracePoint: 0.999937, 0.003151, 0.000000, TracePoint: 0.999811, 0.001765, 0.000000, TracePoint: 0.998866, 0.000000, 0.000000]]
    Edited by: mtiv on Oct 24, 2009 6:02 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    while((strLine = br.readLine())!= null) {
                    int INDEX=0;
                    INDEX++;
    }On each iteration of the while loop, index equals 0. Try moving the variable index outside of the while loop.
    List<TracePoint> CharPoints=new ArrayList<TracePoint>();By convention variable names begin with a lower case letter, it is an important practise to live by as I was lead to believe CharPoints was a class at first.
    Mel

  • How to save users added to list using people picker to sharepoint Group

    Hi
                I have created List with some people picker columns and now when I save a list,the data is saved to list as well as the users in particular column will be added to particular sharepoint
    group. Is there any sharepoint out of box solution for this or I need to do it programmatically. Kindly provide me any procedures or solutions as you know.
      1) how to bind the particular sharepoint group to the particular column
      2) How to add users to the particular sharepoint group
    Thanks
    Razvi444

    Hi Razvi444,
    There is no out of the box way to achieve this.You need to write a custom event receiver ,inside event receiver
    event,  you
    can check column (people picker value) and add it to desired group if that user not exist already.
    Thanks

  • How to set Bin Location when adding Pick List by DI

    I would like to add Pick Lists by DI.
    This is Working but if i Try to Add a Bin Location by using This Code:
        oPL.Lines.BinAllocations.BinAbsEntry = Convert.ToInt32(binabs[a]);
        oPL.Lines.BinAllocations.Quantity = Convert.ToDouble( quantity[a]) ;
    i'll get iternal error -2007
    if i Update the Picklist afert addig using above mentioned code update runs without error Message but no Bin Locations are visible in Pick List.
    Picklist looks like this:

    Hi Fabian,
    SAPbobsCOM.PickLists oPickList = SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPickLists);
    oPickList.Lines.BaseObjectType = "17";
    oPickList.Lines.OrderEntry = 378;
    oPickList.Lines.OrderRowID = 0;
    oPickList.Lines.ReleasedQuantity = 5;
    if (oPickList.Add() != 0)
        System.Windows.Forms.MessageBox.Show("Error : " + SBO_Company.GetLastErrorDescription());
    //Screenshot 1
    if (oPickList.GetByKey(Convert.ToInt32(SBO_Company.GetNewObjectKey())))
        oPickList.Lines.BinAllocations.BinAbsEntry = 1; // 05-SYSTEM-BIN-LOCATION
        oPickList.Lines.BinAllocations.Quantity = oPickList.Lines.ReleasedQuantity;
        if (oPickList.UpdateReleasedAllocation() != 0)
            System.Windows.Forms.MessageBox.Show("Error : " + SBO_Company.GetLastErrorDescription());
    //Screenshot2
    Screenshot 1
    Screenshot 2
    regards,
    Maik

  • Adding a list in BSP Page

    Hi,
    In our requirement, we have three output list fields fetched from Database Table.
    One more field is to be added for the display.
    The code which gets the data is something like this
    href="<%= target_page %>?i_sap_job=<%= wa_zadm_jobrun-jobname %><%= amb %>i_RUNINSTANCE=<%= wa_zadm_jobrun-RUNINSTANCE %><%= amb %>i_type_flag=<%=e_type_flag%><%= amb %>i_message=<%= e_message %><%= amb %>i_header=<%= e_header %>i_maestro_job
    =<%= wa_zadm_jobrun-maestro_job %>">
    The fields jobname, runinstance were already existing. The new field maestro_job is to be added to the output list.
    The data is coming in debugging, but in output it is not diplayed.
    Hope the query is clear...
    Thanks in advance..
    Do let know if any other details are required.
    It is an urgent requirement...
    Regards
    Ajaz

    answered by self...
    Thanks

  • Add the "play next" feature. (Adding chosen lists of songs to any playlist already playing)

    Hello, I'm new to spotify and didn't find any duplicates for this idea. Sorry if I'm wrong. Even though I'm new to Spotify, I've used several streaming services already (grooveshark, google play, winamp, etc.) And they all shared a very dear feature to me which I'll call "Play Next" in lack of a better name. The feature is pretty basic and useful: Choosing the song which will play next, before whichever song that was meant to play. There you are, listening to your randomized playlist and you just want to hear a song, or a few songs (either from the playlist itself or not), but you don't necessarily want to stop your playlist from playing. Being new to spotify, I don't know what to do in this situation, I have to click the song and then re-randomize the songs again? Anyhow, I believe it would be a nice addition to the service if you could manipulate the list's order while playing. Then we would be able to listen to any songs we like whenever we like and keep listening to the random songs afterwards. Sorry for any bad english.

    Updated: 2015-07-27
    Hey there and welcome to the community!
    Have you tried to 'Queue' a song? On desktop just right-click a song you want to listen to and choose 'Queue'. Then it will play after the current song. Once that song has been played, your playlist will continue normally. You can access the Play Queue when clicking on the bottom right 3 vertical lines icon.
    Was that what you're looking for? ;)

  • How do I delete the recently added songs "List is getting to large

    I am unable to find ,how to delete the "RECENTLY Added" songs after having  moved them to the various ctegories I selected

    The Recently Added playlists in iTunes is a Smart Playlist.  So in order to remove songs from this list you need to either wait until the song is no longer qualified to be listed in the Smart Playlist (more on that in a minute) or you need to adjust the rules out the Smart Playlist accordingly.
    Either way though, this playlist hardly takes up any available hard drive space as it is just a list of pointers to your actual song files and not duplicate entries or anything of the sort that would be eating up significant amounts of drive space.
    If you'd like, you can edit the rules out this Smart Playlist in iTunes to contain a smaller set of tracks or change the Date Added rule to only keep songs from a smaller time frame to help reduce the size of this playlist.  To do this, right->click on the Recently Added playlist and select Edit Smart Playlist. A new window show pop up.
    In this window, you can the Date Added rule so that it contains tracks that were added in the past X (X being a number of your choice) number of days, weeks, or months.  You can also enable the Limit to X (X again being a number of your choice) rule to contain a smaller or larger number of items, GBs, MBs, hours, or minutes. To enable it, simply place a tick mark next to the rule.
    When you are finished editing the playlist, click the OK button. If you did make any changes, the list should update dynamically immediately and will continue to do so as time goes on.
    B-rock

  • Delete added SharePoint Lists in Outlook automatically

    Hi
    We add successfully a SharePoint contact list to Outlook with group policies for more than 300 Users.
    After migration to a new list with a new stssync-String we need to remove the old list. Is there any way to do automate this job with GPO or a script.
    We use SharePoint 2010 with Outlook 2013.
    Thanks,
    Juerg

    Hi,
    Based on my knowledge, after you add successfully a SharePoint contact list to Outlook with group policies, the SharePoint list is added completely in Outlook as a local file.
    If you un-configure this group policy, the SharePoint contact list would still be listed in user’s local machine. Users can remove the list manually from SharePoint List in Outlook account settings. Personal suggestion, we can ask a question in Outlook program
    forum to confirm if it can be achieved by using a script or coding:
    http://social.msdn.microsoft.com/Forums/en-US/outlookdev
    Regards,
    Winnie Liang
    TechNet Community Support

  • Remove recently added play list?

    I need to try and claw back some space on my 160 classic. Is it possible to remove the recently played list? I never use it, nor do i really use the recently added list either. The only ones i use are top 25 and top rated. Would removing either of this lists give me back any space?

    Removing playlists won't free up storage space on your iPod. Playlists don't contain actual songs, just links to songs.
    If you want to free up space, you need to delete the song files themselves.

  • Firewall-safari getting added to list.

    ok, from time to time, I notice that Safari gets added to the list of apps allowed to get incoming info. I know I have the checkmark turned on to allow signed software. But what actions cause safari to get added to the list. Is there a log in console that I could look at that would tell me when and why safari got added.

    Aaron Oneal wrote:
    What appears to be happening is that Finder is not dropping the inherited permissions on a copy. I just copied the file to a folder that doesn't have an ACL and when I inspect the file permissions it still shows the inherited permissions from the source when I would have expected them to have been dropped. So of course, when I copy that file back to the folder with the ACL it again preserves the source inherited permissions, combines them with the destination, and results in the duplication.
    I came to the same conclusion. Explicit permissions don't seem to be duplicated, but inherited permissions seem to be retained, and then duplicated. Funny though when I made a fresh local non-administrative account (machine is bound to OD) it would not duplicate permissions. It would only happen with OD user accounts. Also it seems to be 10.6 (client) specific. I still have quite a few 10.5.8 machines and they would not duplicate. When I get a chance I want to do a fresh 10.6.3 install and see if that version was doing it, although I don't personally believe so. Also I haven't tested on non-bound 10.6 machines. However it sounds like same effect from your research.
    Then again we could get lucky and today's 10.6.6 update will fix it.

  • Adding Spool List recipient

    Hi Team,
    When setting up a user to receive emailed reports the "Spool List Recipent" is not retaining the email addres
    It is saved as part of the SM36 set up. But when going back to check in SM37 the error is No Spool List recipient.
    Could you please help me on this.
    Regards
    Raghu

    Thanks for your valuable suggestions
    Furtherance all the reports printed to a particular printer. But few of the customers didn’t receive those reports. Even though I didn’t set them to print, but still we are getting prints. We set them only to receive mails.
    In the successful job log I found “Error sending data (2)” Message no. PO780
    Laurie , did u face this issue in your tricky. Does all this issues may helpful in this note 1810625
    I really appreciate your help in advance
    Regards
    Raghu

Maybe you are looking for

  • Transfering Texts From iPhone 3 to iPhone 4?

    I'm getting an iPhone 4 this week, and I want to know if I can transfer all my text messages (most importantly), contacts, etc., over to the new phone from my iPhone 3. Could someone explain how to do this (if it's possible). Thanks!

  • Query performance improvement using pipelined table function

    Hi, I have got two select queries one is like... select * from table another is using pielined table function select * from table(pipelined_function(cursor(select * from table))) which query will return result set more faster???????? suggest methods

  • Why does my iMac keep freezing?

    Problem description: 21.5 inch Mid 2010 iMac constantly freezes. Problem 1st reported to Apple a couple years ago when computer would freeze, only mouse/pointer would remain active, though clicking did nothing. Now computer works for as little as ½ h

  • Layer 7 HTTP Policy Map

    Hi Everyone, I have this Layer 7 Policy Map which i config using ASDM  under inspects policy-map type inspect http test4         parameters           protocol-violation action drop-connection log         class _default_GoToMyPC-tunnel           drop-

  • Adobe Reader Plug-In - Startup Parameters

    Hello, Sorry if this has been asked before but I want to embed the plugin in an html page.  I found the startup parameters for navigation panel (starting it looking at pages (thumb nails)) and a couple others. I am still looking for the following;