Código de item da lista de serviço - Salvador

Boa tarde amigos,
Estamos no meio de um projeto de implementação de NFSe, e por incrivel que pareça estamos obtendo êxito, porém no meio desse caminho, há uma série de mapeamentos de campos referente aos respectiavos municipios dos quais, estão nos dando um pouco de dor de cabeça.
Para que fiquei mais claro a minha duvida, neste momento estamos mapeando Salvador, e no nosso cliente existe uma tabela contendo sua lista de serviço. Essa tabela deve ser linkada com as das prefeituras que são emitidas as notas, neste caso Salvador. O campo que nos pede essa informação é o tsItemListaServico C Código de item da lista de serviço 5 do manual de integração.
Gostaria de saber de vocês se alguém possui/jáviu ou sabe, se esta lista é especifica para Salvador ou é como a Nacional, aparentemente esta aqui - http://www.usp.br/gefim/manuais/CodigosISS.htm
Bom estamos mapeando agora Salvador mas depois partiremos para Recife, RJ, BH e Curitiba, estou deixando aqui citado, porque caso haja mais dessas listas.
Enfim acredito que seja somente isso, agradeço a atenção de vocês desde já!
Vitor Grassato

Fernando mais uma vez obrigado pela dica.
Venho aqui informar que cadastrei no SAP os códigos que foram definidos junto ao fiscal da empresa quais melhor se encaixavam com as descritas nos manuais das prefeituras.
No proprio site de cada prefeitura em seu campo Legislação há uma lista diferente para ser atribuida junto aos tipos de serviço de cada empresa.
A que mais me chamou atenção foi RJ, que possui cerca de 6 digitos para o campo do manual da ABRASF que é de 5 digitos, lçogo é necessario fazer uma alteração no XML caso vc queira implementar no municipio de RJ.
Do mais o Fernando ja exemplificou!
Agradeço a todos a colaboração e boa semana!

Similar Messages

  • How to insert sharepoint list item attachment to sql server db programatically

    Hi,
    I need to insert sharepoint list item attachments to sql server db programatically. Could some one suggest some approach and if any one work on it please provide the code. Thanks in advance

    hi,
    you can do it using powershell. Use the below script to loop through all the items attachments inside list.
    $web = $site.RootWeb<br />
    $Lists = $Web.Lists[$ListName]
    $Library = $web.Lists[$LibName]
    foreach($listItem in $Lists.Items)
    if($listItem.Attachments.Count -gt 0)
    Write-Host "**************************************************"
    Write-Host $listItem.Attachments.Count"Attachment(s) available in the ListItem:" $listItem.Title
    Write-Host "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
    $i=0
    foreach($attachment in $listItem.Attachments)<br />
    $i++
    Write-Host $i".Attachment Name:" $listItem.Attachments.UrlPrefix$attachment
    $file = $web.GetFile($listItem.Attachments.UrlPrefix+$attachment)
    Write-Host "Adding Files to Library:"$Library.Title
    $bytes = $file.OpenBinary()
    Write-Host "Successfully Added"<br /> Write-Host "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
    Write-Host "**************************************************"
    And use the below script to insert into SQL.
    #Connect to DB
    $DB = “server=MyInstanceName;integrated security=sspi;database=Bob”
    $conn = new-object System.Data.SqlClient.SqlConnection($DB)
    #Build the command and parameters
    $cmd = New-Object System.Data.SQLClient.SQLCommand
    $cmd.CommandType = [System.Data.CommandType]‘StoredProcedure‘
    $cmd.Parameters.Add(“@Col1″, [System.Data.SqlDbType]‘VarBinary‘)
    $cmd.Parameters[“@Col1″].Size = -1
    $cmd.Parameters[“@Col1″].Value = $bytes
    $sql = "INSERT INTO <table> (Col1) VALUES " + $cmd.Parameters[“@Col1″]
    #Execute the command
    $conn.Open()
    $cmd.ExecuteNonQuery()
    P.S. There may be some syntax error you have to make it work but the concept is right.
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • List of server names

    Is it possible to get a list of server names that Adobe uses for hosting Creative Cloud apps and services?
    I am stuck behind a whitelisting firewall and any domains I need to access have to be listed specifically.
    Thanks

    Well... this morning I tried it again and it worked, without my having to change anything!
    I then managed to get Edge Animate to install after simply retrying 20 times.
    It seems there was some problem with Adobe's servers but what else is new?

  • Vendor open items aging list - Reg.

    Hi,
    My client is requesting a transaction in SAP which can be used to produce a Vendor open items aging list and the output should be exactly the same as it is for the Customer open items aging List (transaction S_ALR_87012178). Moreover, It is essential for him to have only one line per vendor. He does not want to  find a report in the accounts payable side that looks like the one which he mentioned for the accounts receivable side.
    Since this is an urgent ticket, can any body help me in this regard.
    Thanks,
    Prasanna
    Moderator: Please, search before posting

    Dear expert
        Reference from sdn forum
    You can customize the vendor report to show the items overdue per vendor by using the following steps
    1. Create a form using T Code - FKI4
    In this form ( two-axis structure) provide the details for each column as per your Client requirement - Due from 0 - 30 days
    etc. You can create a column (using formula method) at the end by adding the previous columns, this will give you total
    amount of overdue items for each vendor
    2. Create a report using T Code - FKI1
    Based on the Form created in the above step. Make additional selections based on client requirements like document type,
    company code, account type, currency etc. Execute the report.
    The following link will give provides detail steps for the creation of the aforementioned form and report.
    Re: AR aging report (summary by customer)
    Vendor Aging Report
    Regards
      Ajeesh.s

  • Calendar displays different items in list vs day/month view

    I have a strange problem. When viewing my Calendar items in List view, the items are all wrong for the day. But in Day & Month view they are correct.
    I have tried resetting my sync history, and also removing all items, then checking the replacing items on ipod with Outlook calendar box, but it didn't fix it. It was correct until this last sync.
    Any help would be appreciated.
    Thank you.
    Message was edited by: SpyglassSally

    I figured out how to fix it so it displays the same events, no matter the view, but I can't tell you why it works. Maybe someone else can? So in case anyone else gets this, here's what you do:
    With Calendar open, click on Calendar in the upper left corner. Deselect Birthdays so only Calendar has a check by it.
    For some reason, that fixes it.

  • Help needed in removing duplicate items of list box  in java

    How to remove duplicate items of list box while dynamically inserting (on-click event)
    It is not identifying duplicate data
    Variable name is HP_G1
    HP_dmg1 = (DefaultListModel) HP_G1.getModel();
    int a = HP_G1.getModel().getSize();
    System.out.println("HP list no--------> "+a);
    if(a!=0)
    for (int j=0; j<a; j++)
    String item1 = String.valueOf(HP_List.getModel().getElementAt(j));
    System.out.println("HP list added--------> "+item1);
    if(HP_dmg1.equals(item1)){
    HP_dmg1.remove(j);
    else
    HP_dmg1.addElement(GPL);
    }

    Your code is unreadable, so I'll ignore it. In the future please press the message editor's CODE button to format code.
    As to your problem, to the point you normally use a Set instead of List when you don't want duplicates in a collection.

  • Web Matrix FTP Remote Connection Error - "Connection Error - Failure to get file list from server. An entry with the same key already exists."

    Does anyone have experience with this issue when connecting to a Linux FTP Web Server running a FTP Site?
    "Connection Error - Failure to get file list from server. An entry with the same key already exists."
    I cannot access the root directory of the ftp file server using Web Matrix 3. The site is .php based, and
    is accessible when connecting with FileZilla or Remote Connecting via FTP with Visual Studio.
    All sites have been deleted from Web Matrix, the user Application Data has been cleared and Web Matrix has been reinstalled.
    Issue Persists....
    Thanks in advance,
    Justin

    Turns out that the program leaves metadata in your app data folder that is not removed upon uninstallation of the software.
    This is incorporated to communicate with a file that uploaded into the ftp directory when publishing pages.

  • Not getting the server pool in the list of server pool

    We are facing following issue. Can you please help on this. Or how can we get help on this. I would be thankful for this.
    We have created a server pool which consists of two vm servers. Two vm servers we created manually.
    We are using following steps to create third virtual server.
    1. Click "next" on "create virtual machine" screen.
    2. Click "next" on "installation media" screen
    3. It asks to select a server pool from the list but we are not getting the server pool in the list of server pool which we created earlier.
    We did this exercise before and we got the server pool name in the list which allowed us to create virtual machine. Now when we reinstalled the vm servers machine and also vm manager, we are not able to do this once again.

    Hi,
    please check the status in Server Pools ( it need to be in Active). then check in the Servers the status need to be in active in VM Manager.

  • Allow user to select each item in list item only once.

    Hi,
    What is the best way to go to stop the user selecting the same item in a list item more than one.
    I have a multi record block, the user can select values 1-10 for each record, but they should not be allowed to select duplicates.
    Thanks for any help!

    Hi,
    Suppose you have 4 list items A,B,C,D in block "test" and same 4 values in each list item. Now you want that, no two values selected by user in list item should be same.
    On when-validate-item of list item B write code like :
    If :test.A is null then
    Message('First A must be enter");
    Raise form_trigger_failure;
    end if;
    If :test.B = :test.A then
    Message('value already in list item A');
    Raise form_trigger_failure;
    end if;
    Now, for C same code with a addition of condition for B with OR operator like:
    If :test.C = :test.A or then :test.C = :test.B
    Like that.... you can achive your functionality.
    But one restriction is that user has to enter values in list item in a pre-defined order only....
    Hope that it would work for you.....

  • After adding list view into the web part page, the items and list control ribbon is not activated.

    I created new webpart page and added one list view web part into the page.
    However I can see the ITEMS and LIST tabs on ribbon area, but all the buttons are deactivated.
    Do I have to activate any feature for this or any settings are needed for the webpart?
    I already have full permission for this site.
    For your easy understand I added the screenshot.

    Thanks for you advice.
    However I am currently using the context menu and edit link in the view.
    My Client keep complaining about the ribbon is not activated even thought it works fine in the SharePoint 2010.

  • Create document item from list, then no lookups

    SharePoint 2013: I have a content type set up in a document library with a default document template attached (in this case an excel workbook file).
    In SPD 2013 (using a 2010 workflow), I can use the "Create Item in List" function in SPD from an adjacent list on the same site collection to create a record in the document library, and set the content type such that when the workflow is done there
    is indeed a new document waiting for me in the doc library, utilizing the expected template file.
    The issue:
    The output of the "Create Item in List" function is the ID of the item created.  Using the Create variable, I believe I should be able to immediately lookup attributes of the newly created Document item, such as the last modified date and URLs.
     I'm doing the lookups within the output of a Log (to workflow history) function.  However, certain fields always come back blank.  Performing the same lookup, using a known Document item ID (created in another w/f session) is successful.  It
    would be nice to email out a URL of the file I just created from the same workflow.
    I've tried having the W/F wait up to 5 minutes, but it appears that certain attributes cannot ever be retrieved in the same workflow, while others can indeed be retrieved (GUID of the new doc is successful, for instance).
    I've read some online debate related to this, but I can't find anyone having the exact same issue as me, nor explain why it's happening.  It seems like it should be so straightforward.  Any ideas?  Thanks!

    Hi,
    According to your description, my understanding is that you create a document library item using “Create item in list ” action and when you log some certain attributes of the item to workflow history list, then
    it has no value.
    I try to reproduce this issue with your steps and it works as expected in my environment.
    For a better troubleshooting, I suggest you do as the followings:
    1. Check if the certain new created item field has value in the list which always return blank.
    2. I suggest you can create a new simple workflow to log the field data for new created item to workflow history list to test if it works.
    3. If the issue still exists, I suggest you can track the workflow using Fiddler. You can see detailed web request for the workflow, it will be easier to find the cause of this issue.
    Here is a detailed article for your reference:
    http://msdn.microsoft.com/en-us/library/office/dn508412(v=office.15).aspx
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Missing menu item attachment list in GOS regarding purchase order

    Hello All,
    I customized the archiving for different kinds of documents.
    There is all quite good for example with sales orders or invoices. I can call the transaction codes to view a speacial document - in those cases VA03 / VF03 - , click on the special GOS-icon and select from the drop-down menu the attachment list. The attachment list opens as a popup and there I see all created PDF documents.
    Only with purchase orders it won't work. Calling the ME23N and clicking on the GOS-icon the menu item attachment list is not active (light grey). With administration transaction OAAD I can see that there are archived PDF documents. So, the archiving works but still not the viewing of archived purchase orders.
    How can I activate the attachment list in this case? Maybe I forgot to do something?
    Thank you very much for your help!

    Hi,
    Check if note 1506581 is present in your system,if not please implement the same.
    Also check if in /SPRO -> IMG Customizing -> "Integration with
    our mysap.com components" -> Supplier Relationship Management ->
    Message Control -> "Activate Document Transfer"
    the customizing is correctly set for BUS2012 (Purchase Order).
    If not, please maintain this entry correctly and re-test the
    scenario.
    Regards,
    Ashwini.

  • Controls in ITEM and LIST tabs of Ribbon disabled always in Punishing SharePoint 2013 site if i add list to home page as List View Webpart

    Hi,
    Below is the scenario,
    If i created any custom list and navigating to the list (AllItems.aspx) and on selecting the item, i can see controls in ITEM and LIST tabs of Ribbon are enabled in SharePoint 2013 publishing site.
    If i add the same list in the home page (add web part --> select list view webpart) in the publishing site, on selecting of item, all controls in ITEM and LIST tabs of Ribbon are disabled always.
    Please help me to fix this issue ASAP.
    Regards,
    Krishna

    Hi,
    Thanks for your reply.
    Ribbon controls (only ITEM and LIST tab) still in disabled mode even if i selected the item in the list view webpart.
    Also, i have noticed the below things,
    when i create a published site (default page : default.aspx) and add the list view webpart in the default page, the controls are in disabled mode on selecting item in list view webpart.
    when i create a team site (default page : home.aspx) and add the list view webpart in the default page, the controls are in enable mode on selecting item in list view webpart.
    Please help me on this.
    Regards,
    Krishna

  • Latest ep of my podcast doesn't show in iTunes. Subscribers CAN download it. Podcast page shows 'Total: 3 items' but lists only items 2 and 3. RSS feed is validated and fine.

    Latest ep of my podcast doesn't show in iTunes store. Subscribers CAN download it. Podcast page shows 'Total: 3 items' but lists only items 2 and 3. RSS feed is validated and fine. How do I get iTunes to display it?

    I've used Feedburner many times and never had such a problem. I am a bit confused, forgive me if I ask for questions already answerd. Have you tried updating the podcast in someone elses copy of iTunes? My guess is that the file is bad since it is working in other programs but not iTunes. I would try making a new .mp4 file and podcasting it and seeing if that works.
    Good luck!
    ~Ben

  • "Unknown list item type 'list'" error

    Hi Friends,
    I am facing a problem while creating a listbox (in inDesign JScript). I have written the following syntax to create the same:
    var myDialog1 = app.dialogs.add({name:"Simple Dialog"});
    var styleList = new Array("Part Num","Part Title","Chap Num","Chap Title","Chap TOC");
    var submenuItems = new Array("Style Formatting","Indents and Spacing","Paragraph Rules","Keep Options","Hyphenations","Nested Styles","Bullets and Numbering");
    with(myDialog1){
    with(dialogColumns.add()){
    with(dialogRows.add()){
    with(borderPanels.add()){
    with(dialogColumns.add()){
    var styles = dropdowns.add({stringList:styleList,selectedIndex:0,minWidth:133});
    with(dialogColumns.add()){
    var submenu = ListBox.add("list",submenuItems);
    myDialog1.show();
    But it is showing the following error message:
    "Unknown list item type 'list'"
    I want to know that what I should write in the parameter list. Please help me in this regard.
    Thanks a lot in advance

    Hi Adithi,
    dialogColumns don't know a child called 'ListBox'.
    You can use 'dropdowns' instead as you did in 'var styles = dropdowns.add({stringList:styleList,selectedIndex:0,minWidth:133});':
    var submenu = dropdowns.add({stringList:submenuItems, selectedIndex:0});
    Martin

Maybe you are looking for

  • Calendar in ios7 on ipad not showing correct month.

    After updating to ios 7 on my iPad with Retina the calendar app will not show the correct month in the future. If I scroll back in time the months will change correctly. ie: The name of the month at the top and the dates will change correctly. If I s

  • My PC doesn't recognize my iPhone 4s

    Hello. Today I was updating from iOS 6 to iOS 7. Ok, I downloaded the new OS, extracted it and then a backup was made. After the backup, on iTunes, a message appears: Waiting for iPhone.... I waited something about 5 minutes, and when I look to my iP

  • Update Hierarchy Acrobat 9.x/Update Best Practices?

    Because of the many problems with Acrobat that seem to be caused by updates, I find it is common that I have to reinstall Acrobat (we are using 9) on someones machine. Our installer disc/files are Acrobat 9, missing of course all the updates.  I typi

  • App Store badges still showing after update

    Just updated to iOS 8.1 and after syncing my iPhone and iPad there are still badges showing for the number of updates available on the AppStore icon. When I open the App Store on the device it does not show any updates available. In the past when thi

  • Can't download OS X 10.6

    I can't sync my new iPhone 5 because I don't have iTunes 10.7 and I can't get iTunes 10.7 until I download Mac OS X 10.6 and I can't find that version ANYWHERE on the support page.  Please tell me where to download 10.6.0!  Thanks!