Catch chose from list results, & use it

The following script will activate/deactivate layers based on the letter {A, E, D, F} chosen from the list, then export single page (w 3 digits for the page number section) PDF. The problem I have I don't know to trap or cacth the results of whatever is chosen from the list & use it to name the pdf. If file name is ABC01_A_100.indd & the letter chosen from the list is "E" then final pdf should be ABC01_E_100.pdf.  If  the letter chosen from the list is D then final pdf is  ABC_D_100.pdf.  Basically what is changing whatever is between the two underscores _?_
I can see the results on the events window. How can I capture the results of whatever is chosen from list? I tried return statement but no success at all.
•Then the other question is  if i use choose from list with multiple selection allowed in which I can select more letters: A", "E", "D", "F" how can I output different PDFs with whatever is chosen from the list (with the correct layers activated/deactivated) & file names; ABC01_E_100.pdf, ABC01_F_100.pdf, ABC01_F_100.pdf.  See below. Please any input is greatly appreciated.
property myPDFpreset : missing value
set myPDFpreset to "Screen"
set versionLayers to {"A", "E", "D", "F"}
set the_choice to (choose from list versionLayers with prompt "What version do you need?" with multiple selections allowed) as text
set chosenVersionLayer to item 1 of the_choice
-->Activate versions Layers based in what was chosen
if the_choice is false then error number -128
if the_choice is "A" then
   myA()
else if the_choice is "E" then
   myE()
else if the_choice is "D" then
   myD()
else if the_choice is "F" then
   myF()
   end if
on myA()
   tell application "Adobe InDesign CS4"
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Search" to {visible:true}
           set properties of layer "Z1" to {visible:true}
           --Hide Layers
           set properties of layer "Z2" to {visible:false}
           set properties of layer "Z3" to {visible:false}
           set properties of layer "NS" to {visible:false}
           set properties of layer "MD" to {visible:false}
       end tell
       display alert " A activated"
   end tell
end myA
on myE()
   tell application "Adobe InDesign CS4"
       --set myDocument to active document
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Search" to {visible:true}
           set properties of layer "Z2" to {visible:true}
           --Hide Layers
           set properties of layer "Z1" to {visible:false}
           set properties of layer "Z3" to {visible:false}
           set properties of layer "NS" to {visible:false}
           set properties of layer "MD" to {visible:false}
       end tell
       display alert " E activated"
        end tell
end myE
on myD()
   tell application "Adobe InDesign CS4"
       --set myDocument to active document
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Z3" to {visible:true}
           --Hide Layers
           set properties of layer "Z1" to {visible:false}
           set properties of layer "Z2" to {visible:false}
           set properties of layer "NS" to {visible:false}
           set properties of layer "MD" to {visible:false}
           set properties of layer "Search" to {visible:false}
       end tell
       display alert "D activated" giving up after 6
        end tell
end myD
on myF()
   tell application "Adobe InDesign CS4"
       --set myDocument to active document
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Z3" to {visible:true}
           set properties of layer "NS" to {visible:true}
           --Hide Layers
           set properties of layer "Z1" to {visible:false}
           set properties of layer "Z2" to {visible:false}
           set properties of layer "MD" to {visible:false}
           set properties of layer "Search" to {visible:false}
       end tell
       display alert "F activated" giving up after 6
    end tell
end myF
---======================
tell application "Adobe InDesign CS4"
   activate
   set source_folder to file path of active document --Put the PDFs same folder as ID file
   set theName to name of active document
   set text item delimiters of AppleScript to {"_"}
   set theShortName to text 1 thru text item -2 of theName
   --text 1 thru text item -2 is every character from the first character to the second to last text item
   set text item delimiters of AppleScript to ""
  tell application "Finder"
       if (exists folder "PDFs" of folder source_folder) is false then
           make folder at source_folder with properties {name:"PDFs"}
       end if
   end tell
   repeat with x from 1 to count pages of active document --single pages
       set thePageName to name of page x of active document
       set page range of PDF export preferences to thePageName
       --section-page number M-U-S-T have 3 digits
       set threeDigitPageName to text -3 thru -1 of ("00" & thePageName)
       (* text 1 thru 3 are the first 3 characters
                   text -3 thru -1 are the last 3 characters*)
       set theFilePath to source_folder & "PDFs:" & theShortName & "_" & threeDigitPageName & ".pdf" as string
----Export PDF as single pages
       tell active document
           export format PDF type to theFilePath using myPDFpreset without showing options
       end tell
end repeat
end tell

The following script will activate/deactivate layers based on the letter {A, E, D, F} chosen from the list, then export single page (w 3 digits for the page number section) PDF. The problem I have I don't know to trap or cacth the results of whatever is chosen from the list & use it to name the pdf. If file name is ABC01_A_100.indd & the letter chosen from the list is "E" then final pdf should be ABC01_E_100.pdf.  If  the letter chosen from the list is D then final pdf is  ABC_D_100.pdf.  Basically what is changing whatever is between the two underscores _?_
I can see the results on the events window. How can I capture the results of whatever is chosen from list? I tried return statement but no success at all.
•Then the other question is  if i use choose from list with multiple selection allowed in which I can select more letters: A", "E", "D", "F" how can I output different PDFs with whatever is chosen from the list (with the correct layers activated/deactivated) & file names; ABC01_E_100.pdf, ABC01_F_100.pdf, ABC01_F_100.pdf.  See below. Please any input is greatly appreciated.
property myPDFpreset : missing value
set myPDFpreset to "Screen"
set versionLayers to {"A", "E", "D", "F"}
set the_choice to (choose from list versionLayers with prompt "What version do you need?" with multiple selections allowed) as text
set chosenVersionLayer to item 1 of the_choice
-->Activate versions Layers based in what was chosen
if the_choice is false then error number -128
if the_choice is "A" then
   myA()
else if the_choice is "E" then
   myE()
else if the_choice is "D" then
   myD()
else if the_choice is "F" then
   myF()
   end if
on myA()
   tell application "Adobe InDesign CS4"
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Search" to {visible:true}
           set properties of layer "Z1" to {visible:true}
           --Hide Layers
           set properties of layer "Z2" to {visible:false}
           set properties of layer "Z3" to {visible:false}
           set properties of layer "NS" to {visible:false}
           set properties of layer "MD" to {visible:false}
       end tell
       display alert " A activated"
   end tell
end myA
on myE()
   tell application "Adobe InDesign CS4"
       --set myDocument to active document
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Search" to {visible:true}
           set properties of layer "Z2" to {visible:true}
           --Hide Layers
           set properties of layer "Z1" to {visible:false}
           set properties of layer "Z3" to {visible:false}
           set properties of layer "NS" to {visible:false}
           set properties of layer "MD" to {visible:false}
       end tell
       display alert " E activated"
        end tell
end myE
on myD()
   tell application "Adobe InDesign CS4"
       --set myDocument to active document
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Z3" to {visible:true}
           --Hide Layers
           set properties of layer "Z1" to {visible:false}
           set properties of layer "Z2" to {visible:false}
           set properties of layer "NS" to {visible:false}
           set properties of layer "MD" to {visible:false}
           set properties of layer "Search" to {visible:false}
       end tell
       display alert "D activated" giving up after 6
        end tell
end myD
on myF()
   tell application "Adobe InDesign CS4"
       --set myDocument to active document
       tell active document
           --Activate Layers
           set properties of layer "Tive" to {visible:true}
           set properties of layer "Logo" to {visible:true}
           set properties of layer "Z3" to {visible:true}
           set properties of layer "NS" to {visible:true}
           --Hide Layers
           set properties of layer "Z1" to {visible:false}
           set properties of layer "Z2" to {visible:false}
           set properties of layer "MD" to {visible:false}
           set properties of layer "Search" to {visible:false}
       end tell
       display alert "F activated" giving up after 6
    end tell
end myF
---======================
tell application "Adobe InDesign CS4"
   activate
   set source_folder to file path of active document --Put the PDFs same folder as ID file
   set theName to name of active document
   set text item delimiters of AppleScript to {"_"}
   set theShortName to text 1 thru text item -2 of theName
   --text 1 thru text item -2 is every character from the first character to the second to last text item
   set text item delimiters of AppleScript to ""
  tell application "Finder"
       if (exists folder "PDFs" of folder source_folder) is false then
           make folder at source_folder with properties {name:"PDFs"}
       end if
   end tell
   repeat with x from 1 to count pages of active document --single pages
       set thePageName to name of page x of active document
       set page range of PDF export preferences to thePageName
       --section-page number M-U-S-T have 3 digits
       set threeDigitPageName to text -3 thru -1 of ("00" & thePageName)
       (* text 1 thru 3 are the first 3 characters
                   text -3 thru -1 are the last 3 characters*)
       set theFilePath to source_folder & "PDFs:" & theShortName & "_" & threeDigitPageName & ".pdf" as string
----Export PDF as single pages
       tell active document
           export format PDF type to theFilePath using myPDFpreset without showing options
       end tell
end repeat
end tell

Similar Messages

  • Chose from list in internal error?

    Hi  expert
    i want to use chose from list from  udf object.
    Private Sub LoadingCFL(ByVal oForm As SAPbouiCOM.Form)
            Try
                Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                'Dim oCons As SAPbouiCOM.Conditions
                'Dim oCon As SAPbouiCOM.Condition
                oCFLs = oForm.ChooseFromLists
                Dim oCFL As SAPbouiCOM.ChooseFromList
                Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                ' Adding 2 CFL, one for the button and one for the edit text.
                oCFLCreationParams.MultiSelection = False
                oCFLCreationParams.ObjectType = "SM_TPR" ''''''17
                'oCFLCreationParams.UniqueID = "CFL1"
                'oCFL = oCFLs.Add(oCFLCreationParams)
                oCFLCreationParams.UniqueID = "CFL2"
                oCFL = oCFLs.Add(oCFLCreationParams)
            Catch
                ' MsgBox(Err.Description)
            End Try
        End Sub
    when i use object no 17..... its showing  order chosefrom list.,but when i use  user define field object"  SM_TPR"
    then its error message showing   ''''''''''''''   internal error-1033
    please solve this problem......

    Hi John
    U could have given the object type in the screen painter itself.
    -Anto

  • Condition Specific or attach query with chose from list

    Hi All,
    I have developed a form with the header containing the Customer Code and Name and the Rows containing columns like SO Number, Item Code, Item Name and Quantity.
    The SO Number field has a chose from list and I want that this will show only the Open Sales orders for the customer selected in the header CUSTOMER CODE field of the form.
    Similarly The ITEM CODE choose from List will only show the items in that particular selected Sales Order in the first column of that row.
    This is very much being possible through formatted search attached. But I wish if this can be done by adding condition or query to the choose from list. Please help me in this regards with your suggestions.
    Please provide a sample code if any has already done something like this.
    Regards,
    Raj

    Hi,
    U can use a CFL with conditions. So when u tab out u can get only the required records.
    Check out the below threads for some samples for CFL conditions. Search the forum for more samples.
    CFL with conditions
    cfl conditions
    RE: CFL Conditions
    CFL Conditions and Edit Text
    Vasu Natari.

  • Crystal report Chose from List or drop down value in parameter from UDT

    Hi Experts,
    I had face a issue while creating a report for my client in crystal report , I had create a report and in the parameter field I want to select the value from the chose from list or drop down value from the User define table.
    In parameter had written field as : Code@Select * from dbo. [@UDT] ;  but in the report filled I am not able to select the value.
    Please Help me ! Thanks in Advance. :

    HI
    Welcome to the Forum...
    You cannot put all the values in a single parameter field so you need to select each field for each parameter...
    Better you post it in this link for more reponses:
    Reporting and Printing

  • SharePoint 2013 document generation from list items using workflow

    I have been able to generate docs from list items using sharepoint designer workflow.But i have been able to do this with using one document template. But i have like 6 templates i would like to use what do i need to do to get this rolling would i need to
    have 6 different doc libs with a doc template?
    Thanks in Advance

    Thanks Sharma.
    I have create 6 content type and associated doc templates to them. I read I should be using .docx instead of dotx which I also tried
    But im still getting the error
    When I click details no error details  to help at all.
    Can anyone who is having this issue help or give me some hints.
    Cheers

  • Can we get the data from list without using any change event...

    It is possible to get the current data from list without passing events?...
    Thanks in advance,
    senthil.

    Can you get what you want by accessing the selectedItem/selectedItems and selectedIndex/selectedIndices properties?

  • Catching Events from Com side using ActiveX bridge

    Hi,
    I have packaged a java swing application into an activex control using the ActiveX bridge. I now need to be able to fire events from my java code which the com/VB code needs to be able to trap. The event handler on the com side looks like this: function(BSTR param1, BSTR param2, BSTR param3), but the java event model only allows passing the EventObject in the param for the introspector to work. How do I fire an activex event that the com client is able to trap??

    Thanks, beders. Your solutions above works, although I found the only way to install the SDK was to the use following URL rather then the one beders suggested:
    http://www.microsoft.com/msdownload/platformsdk/sdkupdate/XPSP2FULLInstall.htm
    This SDK is the full one and not just the Core SDK so may take a little longer to download.
    You also need to ensure that the location to cmd.exe (ie. C:\WINDOWS\system32) is on the path variable otherwise SetEnv.bat fails when it calls cmd.
    J

  • RH11 404 - Page Not Found when linking to PDF file from search results using IE9 and IE10

    I'm using RH11 (11.0.3.268) and I've included a number of PDF files as baggage files. The hyperlinks on the pages work fine and display the PDF files in a separate window, as expected. However, when searching for these same PDF files using the Search tab, I'm getting a 404 error with the filename. The description on the error shows the filename and says the "the requested resource is not available." This is occurring using IE9 and IE10. And, it only happens within the application, which packages the WebHelp with a war file.
    I searched the forum and found where someone was having the same problem on Firefox, but was fine on IE. But, as mentioned, I'm finding it on IE.
    Thoughts on how to fix this error?

    Is the WAR file extracted at the point when the search is done? If not, I would expect it to fail.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • ITunes list shows in slide show but won't play music I chose from list.

    Down loaded lastest version of iPhoto,when making slide show itunes list shows in chosening music but wont load to the slide show.The sample music shows and plays if picked.Had no trouble with slide show in older version of iPhoto.Itunes worked great in older version,but newer version is not working.

    in iTunes - file menu ==> library ==> reorganize library - tehn reboot your Mac
    LN

  • Associating a Custome ResultSet with a Choose From List

    Hi Experts,
    I have to Link the Chose from List with a UDO for accessing the records from the Parent Table /Child Table
    How to crack this problem?
    Also I have to associate the Results of a custom query in a choose from list so that when I press TAB over a Text Box I get a Choose From List which displays the Results and I could select one of those rows.
    Plz Hint me for this Problem

    Hello,
    When you create CFL, just set your UDO type with oCFLCreationParams.ObjectType = "My_UDO", the collumn to be displayed in CFL has been determined by Find Service in your UDO definition.
    As per custom query, actually you can set the condition to do so. Direct customed SQL is not supported in CFL. You may refer to the SDK sample for further info after you install SDK component:
    <<C:\Program Files\SAP\SAP Business One SDK\Samples\COM UI\VB.NET\17.ChooseFromList>>
    Private Sub AddChooseFromList()
            Try
                Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                Dim oCons As SAPbouiCOM.Conditions
                Dim oCon As SAPbouiCOM.Condition
                oCFLs = oForm.ChooseFromLists
                Dim oCFL As SAPbouiCOM.ChooseFromList
                Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                ' Adding 2 CFL, one for the button and one for the edit text.
                oCFLCreationParams.MultiSelection = False
                'Just Set your UDO type.
                oCFLCreationParams.ObjectType = "My_UDO"
                oCFLCreationParams.UniqueID = "CFL1"
                oCFL = oCFLs.Add(oCFLCreationParams)
                ' Adding Conditions to CFL1
                oCons = oCFL.GetConditions()
                oCon = oCons.Add()
                oCon.Alias = "CardType"
                oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                oCon.CondVal = "C"
                oCFL.SetConditions(oCons)
            Catch
                MsgBox(Err.Description)
            End Try
        End Sub
    Kind Regards
    -Yatsea

  • How to query the sharepoint list with using lookup column

    hi,
    I have requrement like below
     List A
    Title                         Postionid(Lookup)       PositionDescription
    [email protected]             1                              
    xxxx
    [email protected]             1                               
    xxx
    [email protected]           1                                
    xxx
    [email protected]                    2                               
    sss
    [email protected]             2                               
    www
    List B
    Title                         fistname  lastname age fathername
    [email protected]         x             x             10      y
    [email protected]         p            p               12      p
    [email protected]               q           q                12    
    y
     here in List A positionid is lookup column i have creating one visual web part i am querying the List A using  query string as Positionid in that web part .finally what i want is i need date from list B on basis of corresponding position id here
    List A Title and List B title are same i need each candidate info how can i do it
    Srinivas

    Hello,
    Still you have not told that whether Position id is there in listB or not. Anyway if Poistion id is not there in list B then you have to use Title column of listA to gete data from ListB. Look at sample code below. It will first get data from ListA,
    and use StringBuilder class to create dynamic CAML query because one Position id is having multiple values in listA.
    query.Query = "<Where><Eq><FieldRef Name='Postionid' /><Value Type='Lookup'>1</Value></Eq></Where>";
    SPListItemCollection items = list.GetItems(query);
    if(items.Count > 0)
    foreach(SPListItem item in items)
    string strTitle = Convert.Tostring(item["Title"]);
    //since listA is having multiple values for Postionid so you have to build a dynamic query here to get data from listB
    //Refer link to build dynamic query
    SPQuery listB = new SPQuery ();
    query.Query = stringbuilder;
    SPListItemCollection ListBitems = listB.GetItems(query);
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/2dfe5fd6-e556-4132-a35c-e9f240360307/issue-with-caml-query?forum=sharepointdevelopmentlegacy
    http://sharepoint.stackexchange.com/questions/69690/foreach-loop-inside-caml-query
    Above links will help you to create dynamic query (in your case you need to use multiple <OR> operator in listB.
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to filter Choose from list object rows?

    Hi everyone,
    I'd like to show Choose from list window using SBO 2005 PL07, Actually I want to show the Active Account of G/L Account, I set the CFL object to one column as following:
    oCFLCreationParams.ObjectType = SAPbouiCOM.BoLinkedObject.lf_GLAccounts
    oCFLCreationParams.UniqueID = "CFL"
    oCFL = oCFLs.Add(oCFLCreationParams)
    Who knows how to set Choose From list object only show Active Account and do not show Title Account.
    Thanks for your help!
    Kathy

    Hi kathy
    I have not tried it on the gl accounts. But basicaly you need to add conditions to filter it. The following is an example that you would of used for business partners but only customers.
      Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                Dim oCons As SAPbouiCOM.Conditions
                Dim oCon As SAPbouiCOM.Condition
                oCFLs = oForm.ChooseFromLists
                Dim oCFL As SAPbouiCOM.ChooseFromList
                Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                ' Adding 2 CFL, one for the button and one for the edit text.
                oCFLCreationParams.MultiSelection = False
                oCFLCreationParams.ObjectType = "2"
                oCFLCreationParams.UniqueID = "CFL1"
                oCFL = oCFLs.Add(oCFLCreationParams)
                ' Adding Conditions to CFL1
                oCons = oCFL.GetConditions()
                oCon = oCons.Add()
                oCon.Alias = "CardType"
                oCon.Operation = SAPbouiCOM.BoConditionOperation.co_EQUAL
                oCon.CondVal = "C"
                oCFL.SetConditions(oCons)
                oCFLCreationParams.UniqueID = "CFL2"
                oCFL = oCFLs.Add(oCFLCreationParams)
    The above also compensates for the tab.
    Hope it helps

  • Is there a way to filter a drop down list by using the result main data display from"GetUserProfileByName" when open the form.

    Hi 
    Is there a way to filter a drop down list by using the result main data display from"GetUserProfileByName" when open the form?
    The second source has a huge list of company names that can be narrrow by email work. 
    background:SP 2010 and Infopath 2010
    CRISTINA&amp MICROSOFT Forum

    I'm not sure if I understood your question clearly but here is a good resource on how to get attributes from "GetUserProfileByName" web services:
    http://blog.mangroveweb.com/pre-populating-an-infopath-from-with-mysql-data-using-a-net-web-service/using-sharepoints-getuserprofilebyname-web-service-to-retrieve-ad-account-information/
    Regarding filtering dropdown list then this could be done by applying form on-load rules. 
    Hope this helps

  • Reagrding the choose from list using user tables

    Hi
       I need to link <b>the choose from List to my user defined table</b> and not to system tables. 
    for eg., i have created a  table namely opp. Now i want to link choose from list to this table.
    can anyone help me??
    its very urgent...
    thanks in advance
    Lee

    hi Adele 
      thanks for your concern.i have used this code
                Dim OCFLS As SAPbouiCOM.ChooseFromListCollection
                Dim OConds As SAPbouiCOM.Conditions
                Dim OCond As SAPbouiCOM.Condition
                OCFLS = OForm.ChooseFromLists
                Dim OCFL As SAPbouiCOM.ChooseFromList
                Dim OCPack As SAPbouiCOM.ChooseFromListCreationParams
                OCPack = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                OCPack.MultiSelection = False
                OCPack.UniqueID = "CFL3"
                OCPack.ObjectType = "OPRQ"
                OCFL = OCFLS.Add(OCPack)
            Catch ex As Exception
                MsgBox(Err.Description())
            End Try
    <b>then i link the choose from list to the Button(choosefromlist) namely OLBut. the code is follws</b>
                            <b>ONewItem = OForm.Items.Item("67")
                            OLBut = ONewItem.Specific
                            OLBut.ChooseFromListUID = "CFL3"</b>
    but this is not working.i.e when i click the choose from list button nothing it is showing.what mistake i have done?please help me
    thanks in advance

  • How to redirect from list edit form to another page using jquery in sharepoint 2013

    hi friends i have been trying to find a way to redirect from list edit form to another page using javascript and jquery
    i found lot of codes online but non of them are working for me.
    what i need is i have to save the data in the form and after that it has to redirect to another page. it has to get the url from hyperlink field of the item.
    please help me in this regards

    Not sure if you have gone through below links:
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPRedirectWithID
    http://blogs.askcts.com/2013/02/18/using-spservices-and-jquery-to-perform-a-redirect-from-a-sharepoint-list-newform-to-editform/
    Please ensure that you mark a question as Answered once you receive a satisfactory response.

Maybe you are looking for

  • NF-e 10.0 - Incoming - Tratativa para Simples nacional.

    Pessoal, tudo bem? Alguém está processando entrada de notas de fornecedores optantes pelo Simples, pelo NFe10, normalmente? Estamos com cenários de compra para industrialização onde o fornecedor é optante pelo simples e emite nota com situação de ope

  • How can you connect Ipod to a linux system?

    Bought our study abroad student an Eee PC computer that will work well in his home country of Africa. My boys got Ipods for Christmas and I gave him one too. We are unable to find a way to get it to connect to his linux system. Is is possible?? It is

  • Macbook Pro 15'' options for gaming and college

    Hi there Apple Community! I'm having trouble choosing the best cost benefit for a new Mac. I'm a college student and my main priority is to have a mobile unit to cary with me for classes. I'm also a gamer, and since this will be my main computer I'd

  • Xdb6.jar in JDBC Driver 11.2.0.3

    I noticed the following in the JDBC driver download section for 11.2.0.3      xdb6.jar (262,740 bytes) - To use the standard JDBC4.0 java.sql.SQLXML interface with JDBC 11.2.0.3, you need to use xdb6.jar (instead of xdb.jar) from the 11.2.0.3 distrib

  • BUS_TRANS_MESSAGE

    Hi,      Need some details about BUS_TRANS_MESSAGE Bdoc. I am creating transactions in CRM and as per business process they are not flowing to ECC. i.e.Interaction Record. But If I check SMW01, I am getting a BUS_TRANS_MESSAGE Bdoc for every such tra