Free usable description per line in CCW configuration

If I use CCW configure-tool to create a solution with many positions, it will be very helpfull to describe my own each line in an, maybe 20 character flied.
This field must turn up after inport in CCW-Qoute/CCW QuickQoute and also CCW-Export to *.xls, *.XML

Hi Sridhar,
Good day!
Please be advised that 'Add User Note' feature is only available in deals/quotes. However, if you wish to have this feature be added in a configuration, you may send us an enhancement request by opening a case with CCW Team.
Open a case with the CCW  Support Team, either  create a case online at http://www.cisco.com/cisco/psn/web/workspace or by calling 1-800-553-6387 options 2 and 3.
If this is your first time to open a case using Customer Service Central, you will need to sign in to your My Cisco Workspace (http://www.cisco.com/cisco/psn/web/workspace)   and then add the Customer Service Central module to your Workspace to   open and manage your cases online. Help and support documentation is   available on Operations Exchange.
Thanks,
Jen C.
CCW Support Team

Similar Messages

  • Compact output of pacman -Qi(e) showing only prog,desc,size 1 per line

    /* ================================================================================================
    REVISED May 14, 2009
    REWRITTEN - to check for buffer overuns
    Dumb utility which takes the output of pacman -Qi(e) and creates a tab delineated text file
    showing the program name, description and file size, one program per line to be read
    with a text editor or spreadsheet.
    compiling -> q++ qi.cpp -o qi
    Program can be run either as:
    qi // which creates:
    pacQi.txt // output of pacman -Qi > pacQi.txt
    pacQi.xls // tab delineated text file of all installed programs.
    or
    pacman -Qie > somefile
    qi somefile // which creates
    somefile.xls // A tab delineated text file of explicitly installed programs
    ==================================================================================================== */
    #include <iostream>
    #include <fstream>
    #include <stdlib.h>
    #include <cstring>
    #include <string>
    using namespace std;
    string formatstr(const string ="", char=' ' , int prec=0, int strlength=0 );
    int findString ( string, string );
    string padString ( string, int,char = ' ') ;
    const int progWidth = 25 ;
    const int descWidth = 60 ;
    const int sizeWidth = 25 ;
    const int cstring_buffer = 100;
    int main(int argc , char * argv[])
    char ch ;
    unsigned int findPos=0, start, len ;
    char sourceFileName[cstring_buffer];
    char targetFileName[cstring_buffer];
    string strLine;
    string progName, progDesc, progSize;
    if (argc == 1 ) // no arguments provided creates pacQi.txt
    strncpy(sourceFileName,"pacQi.txt", 12);
    strncpy (targetFileName, "pacQi.xls",12 );
    system ("pacman -Qi > pacQi.txt");
    else // user supplied name
    len = strlen(argv[1] ) + 6 ;
    if (len > cstring_buffer )
    cout << "\n\nProgram Exiting to Prevent Buffer Overrun\n\n";
    exit (0);
    //cout << endl << argv[1]<< " length is : " << strlen(argv[1]) << endl; // testing
    strncpy (sourceFileName,argv[1], strlen(argv[1]) + 2 ) ;
    strncpy (targetFileName,argv[1], cstring_buffer - 10 ) ;
    strncat (targetFileName,".xls",5);
    ifstream ifile (sourceFileName) ;
    ofstream ofile (targetFileName) ;
    progName ="";
    progDesc = "";
    progSize = "";
    while (ifile.good() )
    getline(ifile,strLine);
    findPos = findString ("Name", strLine); // Find Name Line
    if (findPos > 0 )
    for (start=findPos+2; start < strLine.size();start++)
    ch = strLine[start];
    progName = progName + ch;
    progName = padString(progName,progWidth);
    progDesc=""; // remove remants of progDesc second line
    progSize="";
    findPos = findString ("Size", strLine); // Find Size
    if (findPos > 0 )
    for (start=findPos+2; start < strLine.size();start++) // kill trailing K
    ch = strLine[start];
    if ( ( (ch >= '0') and (ch <= '9') )or (ch == '.') )
    progSize = progSize + ch;
    string temp;
    temp ="";
    progSize = formatstr(progSize, ' ' , 3, 25);
    findPos = findString ("Description", strLine); // Find Description
    if (findPos > 0 )
    for (start=findPos+2; start < strLine.size();start++)
    ch = strLine[start];
    progDesc = progDesc + ch;
    progDesc=padString(progDesc,descWidth);
    if (progName>"" and progDesc>"" and progSize>"")
    ofile << progName << '\t' << progDesc << '\t' << progSize <<endl ; // Print program record
    progName ="";
    progDesc = "";
    progSize = "";
    } // while loop
    ifile.close();
    ofile.close();
    } // E N D M A I N
    //==================================================================================
    int findString ( string source, string target) // if source found returns ":" + 2
    int found;
    string test;
    test = source;
    found = target.find(source);
    if (!found )
    found = target.find(":");
    if (found < 0 )
    found =0;
    return found;
    //========================================================================
    string padString ( string str, int num, char ch)
    string temp;
    int len;
    temp = str;
    len = str.size();
    for (int start = len; start < num; start++)
    temp += ch;
    return temp;
    //===========================================================================
    string formatstr(const string str, char leadchar, int prec, int strlength)
    using namespace std;
    int i1,i2,len;
    int sptr,tptr,wholeDigits=0,fracDigits=0;
    int fracPtr=0;
    int noc,commaptr; //Number Of Comma's
    bool hasDec=false, isNeg =false;
    string temp,temp2,fracStr,wholeStr,s;
    s=str;
    len=s.size(); // Length of String w/o '-' sign
    temp="";
    if (str[0]=='-')
    isNeg=true; // If negative kill minus sign
    for (int i1=1;i1< len ; i1++ ) // Copy rest of string to s
    temp=temp + str[i1];
    s = temp;
    len=s.size();
    for (sptr=0;sptr <len;sptr++) //Find # of digits wholeDigits + in decimal
    if (s[sptr]!='.')
    wholeDigits++;
    else
    fracPtr=sptr;
    hasDec=true;
    wholeDigits=sptr ; // Represents digits before dec since sptr is at dec. don't increment
    fracDigits = (len-(fracPtr)); // Back into # of decimal digits
    break;
    fracStr="";
    if (hasDec)
    for (i1=fracPtr;i1<len;i1++) // Build fracStr
    fracStr=fracStr + s[i1];
    temp = ""; // bugaboo caused by negativity
    for (sptr=wholeDigits-1,tptr=0; sptr>=0 ;sptr--,tptr++ ) //Reverse wholeDigitsing w/o decimal
    temp= temp + s[sptr];
    temp2=""; // commatize reversed string to temp2
    commaptr=0;
    noc = temp.size() / 3 ; // S E E IF W O R K S
    for (sptr=0;sptr<wholeDigits;sptr++)
    if (commaptr==3 && noc)
    temp2=temp2 + ',';
    noc--;
    commaptr=0;
    temp2=temp2 + temp[sptr];
    commaptr++;
    temp=""; // Reverse commatized Reversed String (wtf)
    for (sptr=temp2.size() -1 ; sptr >= 0 ; sptr--)
    temp = temp + temp2[sptr];
    s=temp;
    len =fracStr.size();
    if (prec < 0)
    ; // Put string back
    if (prec == 0 ) // Leave out fractional part
    fracStr="";
    if (prec > 0 )
    temp="";
    if (fracDigits > prec) // Will Truncate decimal not round up
    for (int i1=0;i1<=prec;i1++)
    temp=temp + fracStr[i1] ;
    fracStr=temp;
    if (fracDigits < prec +1 && len >0) //fractDigits include '.'
    for (int i1=1;i1< (prec-len+2);i1++)
    fracStr=fracStr + '0';
    if(len==0)
    fracStr='.';
    for (int i1=1; i1 <= prec; i1++)
    fracStr = fracStr + '0';
    s=s+fracStr;
    temp = " " ;
    temp[0]=leadchar;
    temp= temp + s;
    if (isNeg)
    temp = '(' + temp + ')';
    i1=temp.size();
    temp2="";
    if (strlength > 0 ) // Pad String for strlength
    i2=strlength -i1;
    for (i1=0;i1<i2;i1++)
    temp2=temp2+' ';
    temp = temp2 + temp;
    s = temp;
    return s;
    Last edited by ljshap (2009-05-14 16:53:51)

    Daenyth wrote:If you're using C, why not either use libalpm instead of system(pacman...), or add the functionality to pacman itself (-Qqi)?
    I never heard of libalpm, but I'll look into for my own information.
    If I added the functionality to pacman itself (assuming i knew how), I would have to change the source and recompile every time there was an update.  My program should work with new versions unless there is a major change to the output of pacman -Qi(e).
    My "program" produces the following output format:
    52dec                              liba52 is a free library for decoding ATSC A/52 streams.                          207.860
    aalib                                AAlib is a portable ASCII art GFX library                                                           824.000
    abiword                           A fully-featured word processor                                                                 12,833.000
    abiword-plugins            Various plugins for Abiword                                                                           4,199.000
      It can be read with a regular text editor or a spreadsheet where it can be sorted by size if you want to see whats taking up hardrive space without scrolling through the detailed output of pacman -Qi.
    Obviously, the program has extremely limited usefullness unless you just want to to see installed programs, it description and size in a more compact format either out of curiousity or your planning on reinstalling but want to see the descrition as well as the program name.
    I appologize if this functionality is already available in libalpm or elsewhere, but I figured I'd put it up in case anyone wanted it.
    Thanks for the additional information.

  • Free of charge po line items for all account assignments

    Dear All,
    Is there any setting by which for all account assignments/item category combinations, I should get option to create free of charge PO line items, irrespective of the preceeding documents through which I prepare PO (from PR).
    I have checked in account assignment configuration and didnt find any fields that favor the setting.
    Please let me know if there is any customization setting for above requirement.
    Best Regards,
    Krishna

    Hi,
    The 'Free Items' indicator in the overview is only used to facilitate               
    the switching off of the Inv.Receipt flag and the GR-based IV flag.                 
    Note that the 'Free Items' indicator is not stored on the PO item                   
    table EKPO.                                                                         
    The Inv.Receipt flag (and the GR-based IV flag) are the fields that                 
    really controls if an item is 'free' or not.                                        
    So, the field is initiated based on the values in those fields rather               
    than from input from the user.                                                      
    When an invoice is expected it's not a free-item. This indicator 
    invoice receipt is chosen from the main-item and also from the          
    customization maintained for item category 0 in table T163.  
    I am afraid that I have to say that in standard SAP design                   
    it is not possible to default the "Free item" flag.   
    Regards,
    Edit

  • Is it possible to have more than one Tax code per line item in Billing docu

    Is it possible to have more than one Tax code per line item in Billing document ?

    Hi,
    I have a different perspective there.
    If an item is applicable for two different taxes which are represented by two different tax condition types and these tax conditions are configured in the tax procedure, FTXP and so on....then these two condition records can have two different tax codes.
    We actually have this scenario in EU now, where EU talks about service tax in 2010 apart from the normal VAT. So now we have MWST and ZWST(Say)
    Now there are some materials which come with a service associated with it. So a service charge is also levied when the material is sold. So the material price will become applicable for VAT and the service charge becomes applicable for service tax. In this case, the tax classification of the customer will have two entries in sales orders updated in the fields VBAK-TAXK1 and VBAK-TAXK2 based on the sequence number of these condition types.
    Now based on different tax classification of the customer, we have 2 different tax codes representing different %of tax.
    Hope it helps

  • Idoc per line item in SO

    Hi
    I have configured output type at the line item level for Sales orders. When I have save a sales document, the ORDERS05 Idoc type is triggered. It contains segments for all the line items.
    Can we have the Idoc generated with only line item, for which the output type is created, even if the Sales Order has n number of Items?

    Hi,
    What I want is to get the net value that is displayed in the conditions tab of VA01/VA02
    before saving the sales orders. Is there a way to do that or an FM that computes for the
    net value per line item.Thank you!

  • 3 way match between PO/GR/IR per line item

    Hi..
    I'm having an issue with 3 way match between PO/GR/IR. I want to this on line item level. As standard, SAP will compare line items based on line item numbers when doing the match (at least for quantity match). However, this is not possible since the vendors don't always use the line items in the PO (send to them) to create the invoice. And sometimes they simply leave out the line item number. However, the material number is always on the PO, GR and IR. Is it possible to do the 3 way match per line item using the material number as the unique identifier?
    Kind regards
    hundvov

    hi
    Three Way Match
    Yes, Three Way Match Means PO -> GR -> IV
    For this, You need to Put Tick mark against GR Based IR in Purchase Order Item Detail Invoice Tab and Vendor Master Purchasing Tab.
    Once This Purchase Order is Saved. You cannot do / System will not allow you IR Until you make Goods Receipt for the Purchase Order.
    The same applies to External Services.
    http://sap.ittoolbox.com/groups/technical-functional/sap-log-mm/sap-3-way-match-configuration-1639406
    http://sap.ittoolbox.com/groups/technical-functional/sap-log-mm/3-way-invoice-match-1381773
    regrds
    kunal

  • LE7:Score Layout:Global Format:Maximum Bars per Line - Line Break Bug!

    Hello
    This problem occurs in Logic Express version 7.
    (I am using MacOS version 10.4.2 on an eMac)
    I am currently compiling and editing a large score for a big band composition consisting of 22 parts:
    Flute 1
    Flute 2
    Clarinet 1
    Clarinet 2
    Alto Sax 1
    Alto Sax 2
    Tenor Sax 1
    Tenor Sax 2
    Baritone Sax
    Trombone 1
    Trombone 2
    Trombone 3
    Trombone 4
    Trumpet 1
    Trumpet 2
    Trumpet 3
    Trumpet 4
    Guitar
    Keyboard
    Electric Bass
    Percussion 1 (Kit)
    Percussion 2 (Aux)
    I am creating the score in a separate file, and I am combining parts into 1 stave each by instrument like this:
    Flute 1 & 2
    Clarinet 1 & 2
    Alto Sax 1 & 2
    Tenor Sax 1 & 2
    Baritone Sax
    Trombone 1 - 4
    Trumpet 1 - 4
    Guitar
    Keyboard (2 staves)
    Bass
    Percussion
    Each instrument, with the exception of keyboard which has 2 staves, consists of one stave, making up systems of twelve staves each. By sizing down each score style to 2,
    I have managed to fit 2 systems onto each page, therefore significantly reducing the amount of paper needed.
    The problem comes when organising the layout of my score,
    in particular, the line breaks. Using layout:global format, I have limited the maximum number of bars per line to 8, both in the page edit and normal score mode.
    I am trying to divide up my score so that there are 8 bars per system. Using the white arrow tool, I am dragging bars up and down in order to achieve this.
    However, when I get 30 odd bars in, I discover a system with 12 bars crammed into it - and even printing it off, it is clear that the system could benefit with less bars; the notation is squashed up together and not very easy to read.
    THIS IS THE ACTUAL PROBLEM:
    So I tried using the white arrow to move the last 4 bars down onto the next system, and a bug occurs where I end up with about 20 bars on the system, oddly distorted, the first few bars of which are squashed up together at the beginning of the line, and the last bar of which is stretched far off the right hand side of the page out of view. Then the next 20 or so bars are no where to be seen (probably far off the right hand side of the page) before the system below.
    If you dont know what I am talking about, I could provide a screenshot if you request.
    I have tried everything to get 8 bars on that particular system; dragging the stretched bar downwards, dragging squashed bars downward, moving bars down 1 by 1, moving bars onto the system above, moving bars away from the system below (to make room for the 4 bars that I want to move from above), adding more bars and dragging them down, but none of these methods have worked. I am either stuck with 12 bars crammed onto one system and 4 bars on the next or an oddly distorted version of the system which cannot possibly be read. Even when I settle with the unsatistactory former, I encounter further problems on subsequent systems below, some systems of which are already distorted.
    All I want is to have 8 bars per system, it should not be too much to ask! The layout:global format:maximum-bars-per-line calculation seems to be redundant, even when I reset the default line breaks - it just does not automatically set 8 bars per line, which it should do. Is there not an option to determine bars individually by number onto their respective lines, without having to use the white arrow graphic layout tool?
    The problem is extremely frustrating, and it is preventing me from completing, presenting and handing in a score for my university music composition.
    I have no other score producing software, and starting it
    from scratch on paper is going to take me weeks, because it consists of 830 12/8 bars in 22 parts, and I need to get it ready by next term!
    Any help would be extremely helpful and much appreciated, especially a patch or a useful way round. It could be related to memory, or hard drive space, as I have experienced similar problems in the past, where my score has been stretched off the page during a time when I have had little disk space...and this is a very large piece of music which might stretch the score capabilities of Logic.
    If so, has anyone got any suggestions?
    Thanks!
    Rory
    eMac   Mac OS X (10.4.2)  
    eMac   Mac OS X (10.4.2)  

    nope just cutting should work.
    here are some things to try:
    1. try assigning a different score style. for the regions. duplicate and then adjust the default ones if necessary.
    2. try creating a new instrument set. in fact delete them and make a new one (use the key command: create instrument set from selected)
    3. it may be a formatting problem so check:
    in global layout constant spacing (try 8 or 9) and proportional spacing (try 45 or so). then try factory defaults.
    4. try copying and pasting the midi into a brand new region and looking at the score for that.
    5. try fiddling with the layout tool drqagging bars up or down.
    normally simply cutting the region of just one object is enough to force a redraw. maybe try it on all of the regions. what happens when you double click on a region?

  • Event List - Used to show 1 event per line that I could open and view photos. Where is that feature?

    I was editing photos (iPhoto) and events were shown as 1 Event per line, preceeded by the > triangle, that I could click and open the event to see the photos.
    I was collapsing all the events so I had a nice list by date, and was naming each event.
    Then I hit something, and the 1-line per event went away, and now instead of showing events as a list,
    it shows events as "icons" with the key photo etc.
    How do I get back to listing events as a LIST ??  Like in the Finder window, where you can see
    files as Icons, Lists, Columns, or CoverFlow.
    All I can see now is the "Icons" view, I want the "Lists" view.
    Anyone seen the "Lists" view ?? and how to get back to it?
    Thanks

    I found the answer here:  https://discussions.apple.com/message/17430153#17430153
    Select VIEW menu item, then click "EVENT TITLES"
    To Collapse all the List sub-item details, cursor on one triangle, then ALT-CLICK and they all close up producing a useful listing;.

  • Is there a way to have a continious flowing text box with a limit of 26 characters per line?

    I am trying to make an interactive pdf form or an indesign form for a classified section in a newspaper. We use a 26 character limit per line for pricing reasons. What I need is for a text box or field to flow continuously yet limit each line to 26 characters. Right now we have an interactive pdf form that has numerous lines that limit 26 characters per line but they do not flow so you would have to tab or cut a word short in order to go to the next line, the other problem with this is you can't copy and paste a full classified ad since it cuts it off at 26 characters. Any input on how I can achieve the the above question would be greatly appreciated.

    There is a way in Acrobat to have text flow from one form field to another form field while entering the text. You can set your character limit per form field, and have as many fields as needed. But you cannot copy text and paste into the form field and have text flow throughout.
    Here is a link that describes how to set the properties within Acrobat.

  • Text per line in a billing plan

    Hi,
    Apparently SAP doesn't support the input of a note (text) per line in a billing plan.
    I found a userexit called "USEREXIT_MOVE_FIELD_TO_FPLT" in the include "RV60FUS1" (program "SAPLV60F"). As i understand it right this userexit enables the creation of a new field in the table "FPLT" (billing plan : Dates).
    Hence my questions :
    Is it possible to create a new field for adding text comments in this table ?
    This new field will this be displayed automatically on the billing plan screen ?
    If not, is it possible without modifications to the standards to display this field in the  billing plan screen ?
    any help would be most welcome.
    with regards

    Bogo wrote:
    One of our family members has deceased. I need to remove a line in our family plan. The line that needs to be removed is the primary line. That needs to be reassigned to a different line.
    Sorry to hear about your loss. 
    You will need to call customer service for this.  Canceling a line can not be done online and they should be able to help reassigning the primary line. (Dial *611 from your mobile device or (800) 922-0204)
    Good luck

  • GL Description in Line item report FAGLL03

    Hi All,
    How can we polulate GL Description in Line item report FAGLL03? It looks like applying sap note 368310 could be an option (i am not sure) but is there a way to customize
    Thanks
    Ron

    Hi Ravi,
    We don't have do anything in the Header rows. This transaction will help us to insert any description on the header rowa. But what we are looking at is to polulate the GL account description along with the GL account number. Now we are only getting the GL account number in the line items and not the Gl account description along with it
    Thanks
    Ron
    Edited by: Ron on Dec 2, 2009 11:46 PM

  • In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    iOS 7
    Seperate text size modification is no longer available in Safari Reafer.
    Use Settings.
    Settings >General > Text Size

  • Send an attachment in email with length more than 255 char per line

    Hi All,
    I have to send an attachment in email with length more than 255 char per line. I dont want to break the line after 255 char and add it in another line.
    Please suggest me any function module which can perform this.
    Thank you all.

    I looked at all threads in the forum, there was about 5 or 6 identical questions, but surprise, nobody knows! It seems that SO_NEW_DOCUMENT_ATT_SEND_API1 function module does not allow more than 255 characters by line.
    It would surprise me a lot if there is no workaround !
    As it is very easy to add any binary attachment which is like a very long line, PDF for example (several kilobytes), via the function module above (lots of examples in the forum), I would advise you to try to use the same way, i.e. use the contents_bin parameter instead of the contents_txt parameter (convert the text into binary) and add the line feeds yourself (okay I know, it's not very smart).
    Last thing, this function module is deprecated, and we should use BCS classes, maybe they work better.

  • ALV Grid: Alternate Field Catalog per Line Type possible?

    I'm using the ALV Grid Classes: Is it possible to change the Field Catalog per line type? I have two different line types: 1) Interspersed headers and 2) data lines. The Interspersed headers should have no_zero = 'x' and the data lines no_zero = space.

    It can be done by REUSE_ALV_HIERSEQ_LIST_DISPLAY in classic ALV .
    Alternately, it can be done by ALV object model. Try SALV* and look into sample programs.

  • Smartform per line item

    Hi,
    Is it possible to issue a smartform per line item in the outbound delivery process?
    Thanks
    Lindy

    Hi Lindy,
    Could you elaborate the issue a bit then I would be in a position to solve your issue.
    Cheers,
    Saraswathi.

Maybe you are looking for